summaryrefslogtreecommitdiffstats
path: root/tests/auto/qgeopositioninfosource/geocluemock.cpp
blob: c2a7abf3810f116bae0610f09d6ec6d062aea346 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
/****************************************************************************
**
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the Qt Mobility Components.
**
** $QT_BEGIN_LICENSE:LGPL$
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this
** file. Please review the following information to ensure the GNU Lesser
** General Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU General
** Public License version 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of this
** file. Please review the following information to ensure the GNU General
** Public License version 3.0 requirements will be met:
** http://www.gnu.org/copyleft/gpl.html.
**
** Other Usage
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/

#include "geocluemock.h"
#include "qgeopositioninfosource_geocluemaster_p.h"
#include <QTimerEvent>
#include <QDebug>

// todo all calls to geocluemock should be done by calling slots to ensure
// synchronization (the mocked library functions call mockend directly even
// though its in different thread). now going a bit dangerously, but seems to work..
static GeoclueMock* lg_currentMockend = 0;
static QString lg_currentJournal;
static bool lg_geocluemock_gcmaster_get_default = true;
static bool lg_geocluemock_gcmaster_create_client = true;
static bool lg_geocluemock_gcmaster_set_requirements = true;
static bool lg_geocluemock_gcmaster_create_position = true;
static bool lg_geocluemock_geoclue_velocity_new = true;

static bool lg_geocluemock_suppress_regular_updates = false;
static bool lg_geocluemock_suppress_single_update = false;
static bool lg_geocluemock_suppress_velocity_update = false;

static int lg_position_fields = -1;
static int lg_velocity_fields = -1;
static double lg_position_latitude = -1;

// These symbols override the symbols in the actual geoclue library;
// they are used to mock the backend. ld won't resolve the actualy symbols
// in the real geoclue library because they are already defined here.
// However if this dodgy logic someday becomes untrue, make a shim library
// with the same functionality and use LD_PRELOAD or LD_LIBRARY_PATH to
// force loading of the shim library. For CI system, you will also need to reimplement the main()
// of the testcase so that it can actually set one of those variables and then restart
// the application.

gulong g_signal_connect_data      (gpointer  instance,
                                               const gchar *detailed_signal,
                                               GCallback  c_handler,
                                               gpointer  data,
                                               GClosureNotify  destroy_data = NULL,
                                               GConnectFlags  connect_flags = (GConnectFlags)0)
{
    Q_UNUSED(instance)
    Q_UNUSED(destroy_data)
    Q_UNUSED(connect_flags)
    Q_ASSERT(lg_currentMockend);
#ifdef TST_GEOCLUE_MOCK_TRACE
    qDebug("=mocked= g_signal_connect (_data)");
#endif
    lg_currentMockend->setPositionSource(static_cast<QObject*>(data));
    if (QString::fromAscii(detailed_signal).contains("position-changed")) {
        lg_currentMockend->setPositionChangedCallback(c_handler);
    } else if (QString::fromAscii(detailed_signal).contains("velocity-changed")) {
        lg_currentMockend->setVelocityChangedCallback(c_handler);
    }
    return 1; // dummy
}

guint	 g_signal_handlers_disconnect_matched (gpointer	  instance,
                                               GSignalMatchType  mask,
                                               guint  signal_id = guint(0),
                                               GQuark detail = GQuark(0),
                                               GClosure *closure = NULL,
                                               gpointer  func = NULL,
                                               gpointer  data = NULL)
{
    Q_UNUSED(instance)
    Q_UNUSED(mask)
    Q_UNUSED(signal_id)
    Q_UNUSED(detail)
    Q_UNUSED(closure)
    Q_ASSERT(lg_currentMockend);
#ifdef TST_GEOCLUE_MOCK_TRACE
    qDebug("=mocked= g_signal_handlers_disconnect_by_func (_matched)");
#endif
    lg_currentMockend->disconnectSignal(func, data);
    return 1; // dummy
}

void geoclue_accuracy_get_details (GeoclueAccuracy      *accuracy,
                                   GeoclueAccuracyLevel *level,
                                   double               *horizontal_accuracy,
                                   double               *vertical_accuracy)
{
    // Dummy, todo take from journal file
    if (accuracy) {
        *level = (GeoclueAccuracyLevel)6;
        *horizontal_accuracy = 8;
        *vertical_accuracy = 9;
    } else {
        *level = (GeoclueAccuracyLevel)0;
        *horizontal_accuracy = 0;
        *vertical_accuracy = 0;
    }
}

GeoclueMaster *geoclue_master_get_default (void)
{
    Q_ASSERT(lg_currentMockend);
#ifdef TST_GEOCLUE_MOCK_TRACE
    qDebug("=mocked= geoclue_master_get_default");
#endif
    if (lg_geocluemock_gcmaster_get_default) {
        GeoclueMaster* master = (GeoclueMaster*)g_object_new (G_TYPE_OBJECT, NULL);
        return master;
    } else {
        return NULL;
    }
}

GeoclueMasterClient *geoclue_master_create_client (GeoclueMaster *master,
                                                   char         **object_path,
                                                   GError       **error)
{
    Q_UNUSED(master)
    Q_UNUSED(object_path)
    Q_UNUSED(error)
    Q_ASSERT(lg_currentMockend);
#ifdef TST_GEOCLUE_MOCK_TRACE
    qDebug("=mocked= geoclue_master_create_client");
#endif
    if (lg_geocluemock_gcmaster_create_client) {
        GeoclueMasterClient* client = (GeoclueMasterClient*)g_object_new (G_TYPE_OBJECT, NULL);
        return client;
    } else {
        if (error) {
            *error = g_error_new ((GQuark)1, // dummy
                                  2,         // dummy
                                  "=mock= Failing gcmaster_create_client on purpose.");
        }
        return NULL;
    }
}

gboolean geoclue_master_client_set_requirements (GeoclueMasterClient   *client,
                                                 GeoclueAccuracyLevel   min_accuracy,
                                                 int                    min_time,
                                                 gboolean               require_updates,
                                                 GeoclueResourceFlags   allowed_resources,
                                                 GError               **error)
{
    Q_UNUSED(client)
    Q_UNUSED(min_accuracy)
    Q_UNUSED(min_time)
    Q_UNUSED(require_updates)
    Q_UNUSED(allowed_resources)
    Q_UNUSED(error)
    Q_ASSERT(lg_currentMockend);
#ifdef TST_GEOCLUE_MOCK_TRACE
    qDebug("=mocked= geoclue_master_client_set_requirements");
#endif
    if (lg_geocluemock_gcmaster_set_requirements) {
        return true;
    } else {
        if (error) {
            *error = g_error_new ((GQuark)1, // dummy
                                  2,         // dummy
                                  "=mock= Failing gcmaster_client set requirements on purpose.");
        }
        return false;
    }
}

GeocluePosition *geoclue_master_client_create_position (GeoclueMasterClient *client, GError **error)
{
    Q_UNUSED(client)
    Q_UNUSED(error)
    Q_ASSERT(lg_currentMockend);
#ifdef TST_GEOCLUE_MOCK_TRACE
    qDebug("=mocked= geoclue_master_client_create_position");
#endif
    if (lg_geocluemock_gcmaster_create_position) {
        GeocluePosition* position = (GeocluePosition*)g_object_new (G_TYPE_OBJECT, NULL);
        return position;
    } else {
        if (error) {
            *error = g_error_new ((GQuark)1, // dummy
                                  2,         // dummy
                                  "=mock= Failing gcmaster_client create position on purpose.");
        }
        return NULL;
    }
}

GeoclueVelocity *geoclue_velocity_new (const char *service,
                                       const char *path)
{
    Q_UNUSED(service)
    Q_UNUSED(path)
    Q_ASSERT(lg_currentMockend);
#ifdef TST_GEOCLUE_MOCK_TRACE
    qDebug("=mocked= geoclue_velocity_new");
#endif
    if (lg_geocluemock_geoclue_velocity_new) {
        GeoclueVelocity* velocity = (GeoclueVelocity*)g_object_new (G_TYPE_OBJECT, NULL);
        return velocity;
    } else {
        return NULL;
    }
}

void geoclue_position_get_position_async (GeocluePosition         *position,
                                     GeocluePositionCallback  callback,
                                     gpointer                 userdata)
{
    Q_UNUSED(position)
    Q_ASSERT(lg_currentMockend);
#ifdef TST_GEOCLUE_MOCK_TRACE
    qDebug("=mocked= geoclue_position_get_position_async");
#endif
    lg_currentMockend->setPositionSource(static_cast<QObject*>(userdata));
    lg_currentMockend->setPositionCallback(callback);
    lg_currentMockend->singleUpdate();
}

GeoclueMock::GeoclueMock() :
    m_positionSource(0),
    m_positionChangedCallback(0), m_velocityChangedCallback(0),
    m_positionCallback(0)
{
    g_type_init();
    lg_currentMockend = this;
}

GeoclueMock::~GeoclueMock()
{
    lg_currentMockend = 0;
}

void GeoclueMock::setPositionSource(QObject *positionSource)
{
    m_positionSource = positionSource;
}

void GeoclueMock::start()
{
    Q_ASSERT(QFile::exists(lg_currentJournal));
#ifdef TST_GEOCLUE_MOCK_TRACE
    qDebug("=GeoclueMock start");
#endif
    stop(); // just in case
    // If file is already open, continue reading it.
    if (!m_currentJournalFile.isOpen()) {
        m_currentJournalFile.setFileName(lg_currentJournal);
        if (!m_currentJournalFile.open(QIODevice::ReadOnly | QIODevice::Text)) {
            qCritical() << "Journal opening failed:" << m_currentJournalFile.fileName();
            Q_ASSERT(false);
        }
    }
    UPDATE_TYPE update = readNextEntry();

    while (update != INVALID_UPDATE) {
        while (update == SINGLE_UPDATE) {
            update = readNextEntry(); // skip single entries (just stores values)
        }
        if (update == REGULAR_UPDATE) {
            m_regular.timerId = startTimer(m_regular.timeout);
        } else if (update == VELOCITY_UPDATE) {
            m_velocity.timerId = startTimer(m_velocity.timeout);
        } else {
            Q_ASSERT(false);
        }
        update = readNextEntry();
    }
}

void GeoclueMock::stop()
{
#ifdef TST_GEOCLUE_MOCK_TRACE
    qDebug("=GeoclueMock= stop");
#endif
    killTimer(m_single.timerId);
    killTimer(m_regular.timerId);
    killTimer(m_velocity.timerId);
    m_single.timerId = 0;
    m_regular.timerId = 0;
    m_velocity.timerId = 0;
    if (m_currentJournalFile.isOpen())
        m_currentJournalFile.close();
    m_positionChangedCallback = 0;
    m_positionCallback = 0;
    m_velocityChangedCallback = 0;
    m_positionSource = 0;
}

void GeoclueMock::timerEvent(QTimerEvent *event)
{
    if (!m_positionSource) {
#ifdef TST_GEOCLUE_MOCK_TRACE
        qDebug("=GeoclueMock= timerEvent no interested position sources, ignoring update.");
#endif
        return;
    }

    // check which timer
    if (event->timerId() == m_regular.timerId) {
#ifdef TST_GEOCLUE_MOCK_TRACE
        qDebug("=GeoclueMock= regular update.");
#endif
        if (m_positionChangedCallback && !lg_geocluemock_suppress_regular_updates)
            (*m_positionChangedCallback)((GeocluePosition*)1,  // dummy
                                         lg_position_fields == -1? (GeocluePositionFields)m_regular.fields : (GeocluePositionFields)lg_position_fields,
                                         m_regular.timestamp,
                                         lg_position_latitude == -1? m_regular.latitude : lg_position_latitude,
                                         m_regular.longitude,
                                         m_regular.altitude,
                                         (GeoclueAccuracy*)1,  // dummy
                                         (gpointer)m_positionSource);
        if (m_regular.repeats > 0) {
            m_regular.repeats--;
            return;
        }
        qDebug("-=-=-=-=-= ran out of regular updates");
        killTimer(m_regular.timerId);
    } else if (event->timerId() == m_velocity.timerId) {
#ifdef TST_GEOCLUE_MOCK_TRACE
        qDebug("=GeoclueMock= velocity update.");
#endif
        if (m_velocityChangedCallback && !lg_geocluemock_suppress_velocity_update)
            (*m_velocityChangedCallback)((GeoclueVelocity*)1, // dummy
                                         lg_velocity_fields == -1? (GeoclueVelocityFields)m_velocity.fields : (GeoclueVelocityFields)lg_velocity_fields,
                                         1, // dummy
                                         m_velocity.speed,
                                         1, // dummy
                                         1, // dummy
                                         (gpointer)m_positionSource);


        if (m_velocity.repeats > 0) {
            m_velocity.repeats--;
            return;
        }
        qDebug("-=-=-=-=-= ran out of velocity updates");
        killTimer(m_velocity.timerId);
    } else if (event->timerId() == m_single.timerId) {
        Q_ASSERT(m_single.updateType);
#ifdef TST_GEOCLUE_MOCK_TRACE
        qDebug("=GeoclueMock= single position update.");
#endif
        if (m_positionCallback && !lg_geocluemock_suppress_single_update)
            (*m_positionCallback)((GeocluePosition*)1, // dummy
                                  lg_position_fields == -1? (GeocluePositionFields)m_single.fields : (GeocluePositionFields)lg_position_fields,
                                  m_single.timestamp,
                                  lg_position_latitude == -1? m_single.latitude : lg_position_latitude,
                                  m_single.longitude,
                                  m_single.altitude,
                                  (GeoclueAccuracy*)1, // dummy
                                  (GError*)0,
                                  (gpointer)m_positionSource);
        // Single update only, remove the callback.
        disconnectSignal(gpointer(m_positionCallback), (gpointer)m_positionSource);
        killTimer(m_single.timerId);
    } else {
#ifdef TST_GEOCLUE_MOCK_TRACE
        qDebug() << "=GeoclueMock= astray timer, killing and ignoring: " << event->timerId();
#endif
        killTimer(event->timerId()); // Something has gone astray, kill and ignore
        return;
    }
    // no more repeats
    UPDATE_TYPE update = readNextEntry();

    while (update != INVALID_UPDATE) {
        while (update == SINGLE_UPDATE) {
            update = readNextEntry(); // skip single entries (just stores values)
        }
        if (update == REGULAR_UPDATE) {
            m_regular.timerId = startTimer(m_regular.timeout);
        } else if (update == VELOCITY_UPDATE) {
            m_velocity.timerId = startTimer(m_velocity.timeout);
        } else {
            Q_ASSERT(false);
        }
        update = readNextEntry();
    }
}

GeoclueMock::UPDATE_TYPE GeoclueMock::readNextEntry()
{
    QString line;
    QTextStream stream;

    line = m_currentJournalFile.readLine();
    while (line.length() > 0) {
        if (line.at(0) == '#') {
            line = m_currentJournalFile.readLine();
            continue;
        }
        if (line == "\n") {
            line = m_currentJournalFile.readLine();
            continue;
        }
        if (line == "REGULAR_POS_UPDATE\n") {
            line = m_currentJournalFile.readLine();
            stream.setString(&line);
            m_regular.updateType = REGULAR_UPDATE;
            parseRegularUpdate(stream);
            return REGULAR_UPDATE;
        }
        else if (line == "SINGLE_POS_UPDATE\n") {
            line = m_currentJournalFile.readLine();
            stream.setString(&line);
            parseSingleUpdate(stream);
            m_single.updateType = SINGLE_UPDATE;
            return SINGLE_UPDATE;

        }
        else if (line == "VELOCITY_UPDATE\n") {
            line = m_currentJournalFile.readLine();
            stream.setString(&line);
            m_velocity.updateType = VELOCITY_UPDATE;
            parseVelocityUpdate(stream);
            return VELOCITY_UPDATE;
        }       
        qCritical("Invalid input file for geoclue mocking.");
        Q_ASSERT(false);
    }
    return INVALID_UPDATE;
}

void GeoclueMock::parseRegularUpdate(QTextStream& stream)
{
    stream >> m_regular.repeats >> m_regular.timeout >> m_regular.timestamp >> m_regular.fields >> m_regular.latitude >> m_regular.longitude >> m_regular.altitude;
}

void GeoclueMock::parseSingleUpdate(QTextStream& stream)
{
    stream >> m_single.repeats >> m_single.timeout >> m_single.timestamp >> m_single.fields >> m_single.latitude >> m_single.longitude >> m_single.altitude;
}

void GeoclueMock::parseVelocityUpdate(QTextStream& stream)
{
    stream >> m_velocity.repeats >> m_velocity.timeout >>  m_velocity.fields >> m_velocity.speed;
}

void GeoclueMock::setPositionChangedCallback(void (*callback)())
{
    m_positionChangedCallback = (PositionChangedCallback)callback;
}

void GeoclueMock::setVelocityChangedCallback(void (*callback)())
{
    m_velocityChangedCallback = (VelocityChangedCallback)callback;
}

void GeoclueMock::setPositionCallback(GeocluePositionCallback callback)
{
    m_positionCallback = (PositionCallback)callback;
}

void GeoclueMock::disconnectSignal(gpointer callback, gpointer positionSource)
{
    if (positionSource != (gpointer)m_positionSource) {
#ifdef TST_GEOCLUE_MOCK_TRACE
        qDebug("=GeoclueMock disconnectSignal requested without connecting.");
#endif
        return;
    }
    if (callback == (gpointer)m_positionChangedCallback) {
        m_positionChangedCallback = 0;
    } else if (callback == (gpointer)m_positionCallback) {
        m_positionCallback = 0;
    } else if (callback == (gpointer)m_velocityChangedCallback) {
        m_velocityChangedCallback = 0;
    }
    if (m_positionChangedCallback == 0 &&
            m_velocityChangedCallback == 0 &&
            m_positionCallback == 0 ) {
#ifdef TST_GEOCLUE_MOCK_TRACE
        qDebug("=GeoclueMock= no callbacks anymore, removing pos source reference");
#endif
        m_positionSource = 0;
    }
}

void GeoclueMock::singleUpdate()
{
#ifdef TST_GEOCLUE_MOCK_TRACE
    qDebug("=GeoclueMock= singleUpdate");
#endif
    Q_ASSERT(m_single.updateType == SINGLE_UPDATE);
    Q_ASSERT(m_positionSource);
    killTimer(m_single.timerId);
    m_single.timerId = startTimer(m_single.timeout);
}

// Misc functions to parametrize the behavior of the mockend
void geocluemock_setjournal(QString journal)
{
    lg_currentJournal = journal;
}

void geocluemock_set_gcmaster_get_default(bool value)
{
    lg_geocluemock_gcmaster_get_default = value;
}

void geocluemock_set_gcmaster_create_client(bool value)
{
    lg_geocluemock_gcmaster_create_client = value;
}

void geocluemock_set_gcmaster_set_requirements(bool value)
{
    lg_geocluemock_gcmaster_set_requirements = value;
}

void geocluemock_set_gcmaster_create_position(bool value)
{
    lg_geocluemock_gcmaster_create_position = value;
}

void geocluemock_set_geoclue_velocity_new(bool value)
{
    lg_geocluemock_geoclue_velocity_new = value;
}

void geocluemock_set_suppress_regular_updates(bool value)
{
    lg_geocluemock_suppress_regular_updates = value;
}

void geocluemock_set_suppress_single_update(bool value)
{
    lg_geocluemock_suppress_single_update = value;
}

void geocluemock_set_suppress_velocity_update(bool value)
{
    lg_geocluemock_suppress_velocity_update = value;
}

void geocluemock_set_position_fields(int fields)
{
    lg_position_fields = fields;
}

void geocluemock_unset_position_fields()
{
    lg_position_fields = -1;
}

void geocluemock_set_position_latitude(double latitude)
{
    lg_position_latitude = latitude;
}

void geocluemock_unset_position_latitude()
{
    lg_position_latitude = -1;
}

void geocluemock_set_velocity_fields(int fields)
{
    lg_velocity_fields = fields;
}

void geocluemock_unset_velocity_fields()
{
    lg_velocity_fields = -1;
}