-
Notifications
You must be signed in to change notification settings - Fork 609
/
GpsLoggingService.java
1273 lines (1044 loc) · 52.8 KB
/
GpsLoggingService.java
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
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (C) 2016 mendhak
*
* This file is part of GPSLogger for Android.
*
* GPSLogger for Android is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* GPSLogger for Android is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GPSLogger for Android. If not, see <http://www.gnu.org/licenses/>.
*/
package com.mendhak.gpslogger;
import android.annotation.SuppressLint;
import android.app.*;
import android.content.Context;
import android.content.Intent;
import android.content.pm.ServiceInfo;
import android.graphics.BitmapFactory;
import android.location.GnssStatus;
import android.location.Location;
import android.location.LocationManager;
import android.os.*;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.core.app.AlarmManagerCompat;
import androidx.core.app.NotificationCompat;
import androidx.core.app.TaskStackBuilder;
import android.text.Html;
import com.mendhak.gpslogger.common.*;
import com.mendhak.gpslogger.common.events.CommandEvents;
import com.mendhak.gpslogger.common.events.ProfileEvents;
import com.mendhak.gpslogger.common.events.ServiceEvents;
import com.mendhak.gpslogger.common.network.ConscryptProviderInstaller;
import com.mendhak.gpslogger.common.slf4j.Logs;
import com.mendhak.gpslogger.common.slf4j.SessionLogcatAppender;
import com.mendhak.gpslogger.loggers.FileLoggerFactory;
import com.mendhak.gpslogger.loggers.Files;
import com.mendhak.gpslogger.loggers.nmea.NmeaFileLogger;
import com.mendhak.gpslogger.senders.AlarmReceiver;
import com.mendhak.gpslogger.senders.FileSenderFactory;
import de.greenrobot.event.EventBus;
import org.slf4j.Logger;
import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
@SuppressLint("MissingPermission")
public class GpsLoggingService extends Service {
private static NotificationManager notificationManager;
private final IBinder binder = new GpsLoggingBinder();
AlarmManager nextPointAlarmManager;
private NotificationCompat.Builder nfc;
private static final Logger LOG = Logs.of(GpsLoggingService.class);
// ---------------------------------------------------
// Helpers and managers
// ---------------------------------------------------
private PreferenceHelper preferenceHelper = PreferenceHelper.getInstance();
private Session session = Session.getInstance();
protected LocationManager gpsLocationManager;
private LocationManager passiveLocationManager;
private LocationManager towerLocationManager;
private GeneralLocationListener gpsLocationListener;
private GnssStatus.Callback gnssStatusCallback;
private GeneralLocationListener towerLocationListener;
private GeneralLocationListener passiveLocationListener;
private NmeaLocationListener nmeaLocationListener;
private Intent alarmIntent;
private Handler handler = new Handler();
// ---------------------------------------------------
@Override
public IBinder onBind(Intent arg0) {
return binder;
}
@Override
public void onCreate() {
try {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
startForeground(NotificationChannelNames.GPSLOGGER_DEFAULT_NOTIFICATION_ID, getNotification(), ServiceInfo.FOREGROUND_SERVICE_TYPE_LOCATION);
}
else {
startForeground(NotificationChannelNames.GPSLOGGER_DEFAULT_NOTIFICATION_ID, getNotification());
}
} catch (Exception ex) {
LOG.error("Could not start GPSLoggingService in foreground. ", ex);
}
nextPointAlarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);
registerEventBus();
registerConscryptProvider();
}
private void registerConscryptProvider(){
ConscryptProviderInstaller.installIfNeeded(this);
}
private void registerEventBus() {
EventBus.getDefault().registerSticky(this);
}
private void unregisterEventBus(){
try {
EventBus.getDefault().unregister(this);
} catch (Throwable t){
//this may crash if registration did not go through. just be safe
}
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
super.onStartCommand(intent, flags, startId);
try {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
startForeground(NotificationChannelNames.GPSLOGGER_DEFAULT_NOTIFICATION_ID, getNotification(), ServiceInfo.FOREGROUND_SERVICE_TYPE_LOCATION);
}
else {
startForeground(NotificationChannelNames.GPSLOGGER_DEFAULT_NOTIFICATION_ID, getNotification());
}
} catch (Exception ex) {
LOG.error("Could not start GPSLoggingService in foreground. ", ex);
}
if(session.isStarted() && gpsLocationListener == null && towerLocationListener == null && passiveLocationListener == null) {
if(Systems.hasUserGrantedAllNecessaryPermissions(this)){
LOG.warn("App might be recovering from an unexpected stop. Starting logging again.");
startLogging();
}
}
handleIntent(intent);
return START_STICKY;
}
@Override
public void onDestroy() {
LOG.warn(SessionLogcatAppender.MARKER_INTERNAL, "GpsLoggingService is being destroyed by Android OS.");
unregisterEventBus();
removeNotification();
super.onDestroy();
if(session.isStarted()){
LOG.error("Service unexpectedly destroyed while GPSLogger was running. Will send broadcast to RestarterReceiver.");
Intent broadcastIntent = new Intent(getApplicationContext(), RestarterReceiver.class);
broadcastIntent.putExtra("was_running", true);
sendBroadcast(broadcastIntent);
}
}
@Override
public void onLowMemory() {
LOG.error("Android is low on memory!");
Intent i = new Intent(this, GpsLoggingService.class);
i.putExtra(IntentConstants.GET_NEXT_POINT, true);
PendingIntent pi = PendingIntent.getService(this, 0, i, PendingIntent.FLAG_IMMUTABLE);
nextPointAlarmManager.cancel(pi);
nextPointAlarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, SystemClock.elapsedRealtime() + 300000, pi);
super.onLowMemory();
}
private void handleIntent(Intent intent) {
if (intent != null) {
Bundle bundle = intent.getExtras();
if (bundle != null) {
if(!Systems.locationPermissionsGranted(this)){
LOG.error("User has not granted permission to access location services. Will not continue!");
Systems.showErrorNotification(this, getString(R.string.gpslogger_permissions_permanently_denied));
return;
}
boolean needToStartGpsManager = false;
if (bundle.getBoolean(IntentConstants.IMMEDIATE_START)) {
LOG.info("Intent received - Start Logging Now");
EventBus.getDefault().post(new CommandEvents.RequestStartStop(true));
}
if (bundle.getBoolean(IntentConstants.IMMEDIATE_STOP)) {
LOG.info("Intent received - Stop logging now");
EventBus.getDefault().post(new CommandEvents.RequestStartStop(false));
}
if (bundle.getBoolean(IntentConstants.GET_STATUS)) {
LOG.info("Intent received - Sending Status by broadcast");
EventBus.getDefault().post(new CommandEvents.GetStatus());
}
if (bundle.getBoolean(IntentConstants.AUTOSEND_NOW)) {
LOG.info("Intent received - Auto Send Now");
EventBus.getDefault().post(new CommandEvents.AutoSend(null));
}
if (bundle.getBoolean(IntentConstants.GET_NEXT_POINT)) {
LOG.info("Intent received - Get Next Point");
needToStartGpsManager = true;
}
if (bundle.getString(IntentConstants.SET_DESCRIPTION) != null) {
LOG.info("Intent received - Set Next Point Description: " + bundle.getString(IntentConstants.SET_DESCRIPTION));
EventBus.getDefault().post(new CommandEvents.Annotate(bundle.getString(IntentConstants.SET_DESCRIPTION)));
}
if(bundle.getString(IntentConstants.SWITCH_PROFILE) != null){
LOG.info("Intent received - switch profile: " + bundle.getString(IntentConstants.SWITCH_PROFILE));
EventBus.getDefault().post(new ProfileEvents.SwitchToProfile(bundle.getString(IntentConstants.SWITCH_PROFILE)));
needToStartGpsManager = session.isStarted();
}
if (bundle.get(IntentConstants.PREFER_CELLTOWER) != null) {
boolean preferCellTower = bundle.getBoolean(IntentConstants.PREFER_CELLTOWER);
LOG.debug("Intent received - Set Prefer Cell Tower: " + String.valueOf(preferCellTower));
if(preferCellTower){
preferenceHelper.setShouldLogNetworkLocations(true);
preferenceHelper.setShouldLogSatelliteLocations(false);
} else {
preferenceHelper.setShouldLogSatelliteLocations(true);
preferenceHelper.setShouldLogNetworkLocations(false);
}
needToStartGpsManager = true;
}
if (bundle.get(IntentConstants.TIME_BEFORE_LOGGING) != null) {
int timeBeforeLogging = bundle.getInt(IntentConstants.TIME_BEFORE_LOGGING);
LOG.debug("Intent received - logging interval: " + String.valueOf(timeBeforeLogging));
preferenceHelper.setMinimumLoggingInterval(timeBeforeLogging);
needToStartGpsManager = true;
}
if (bundle.get(IntentConstants.DISTANCE_BEFORE_LOGGING) != null) {
int distanceBeforeLogging = bundle.getInt(IntentConstants.DISTANCE_BEFORE_LOGGING);
LOG.debug("Intent received - Set Distance Before Logging: " + String.valueOf(distanceBeforeLogging));
preferenceHelper.setMinimumDistanceInMeters(distanceBeforeLogging);
needToStartGpsManager = true;
}
if (bundle.get(IntentConstants.GPS_ON_BETWEEN_FIX) != null) {
boolean keepBetweenFix = bundle.getBoolean(IntentConstants.GPS_ON_BETWEEN_FIX);
LOG.debug("Intent received - Set Keep Between Fix: " + String.valueOf(keepBetweenFix));
preferenceHelper.setShouldKeepGPSOnBetweenFixes(keepBetweenFix);
needToStartGpsManager = true;
}
if (bundle.get(IntentConstants.RETRY_TIME) != null) {
int retryTime = bundle.getInt(IntentConstants.RETRY_TIME);
LOG.debug("Intent received - Set duration to match accuracy: " + String.valueOf(retryTime));
preferenceHelper.setLoggingRetryPeriod(retryTime);
needToStartGpsManager = true;
}
if (bundle.get(IntentConstants.ABSOLUTE_TIMEOUT) != null) {
int absoluteTimeout = bundle.getInt(IntentConstants.ABSOLUTE_TIMEOUT);
LOG.debug("Intent received - Set absolute timeout: " + String.valueOf(absoluteTimeout));
preferenceHelper.setAbsoluteTimeoutForAcquiringPosition(absoluteTimeout);
needToStartGpsManager = true;
}
if(bundle.get(IntentConstants.LOG_ONCE) != null){
boolean logOnceIntent = bundle.getBoolean(IntentConstants.LOG_ONCE);
LOG.debug("Intent received - Log Once: " + String.valueOf(logOnceIntent));
needToStartGpsManager = false;
logOnce();
}
try {
if(bundle.containsKey(Intent.EXTRA_ALARM_COUNT) && bundle.get(Intent.EXTRA_ALARM_COUNT) != "0"){
needToStartGpsManager = true;
}
}
catch (Throwable t){
LOG.warn(SessionLogcatAppender.MARKER_INTERNAL, "Received a weird EXTRA_ALARM_COUNT value. Cannot continue.");
needToStartGpsManager = false;
}
if (needToStartGpsManager && session.isStarted()) {
startGpsManager();
}
}
} else {
// A null intent is passed in if the service has been killed and restarted.
LOG.debug("Service restarted with null intent. Were we logging previously - " + session.isStarted());
if(session.isStarted()){
startLogging();
}
}
}
/**
* Sets up the auto email timers based on user preferences.
*/
public void setupAutoSendTimers() {
LOG.debug("Setting up autosend timers. Auto Send Enabled - " + String.valueOf(preferenceHelper.isAutoSendEnabled())
+ ", Auto Send Delay - " + String.valueOf(session.getAutoSendDelay()));
if (preferenceHelper.isAutoSendEnabled() && session.getAutoSendDelay() > 0) {
long triggerTime = SystemClock.elapsedRealtime() + (long) (session.getAutoSendDelay() * 60 * 1000);
alarmIntent = new Intent(this, AlarmReceiver.class);
cancelAlarm();
int flags = PendingIntent.FLAG_UPDATE_CURRENT;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
flags |= PendingIntent.FLAG_MUTABLE;
}
PendingIntent sender = PendingIntent.getBroadcast(this, 0, alarmIntent, flags);
AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
am.setExactAndAllowWhileIdle(AlarmManager.ELAPSED_REALTIME_WAKEUP, triggerTime, sender);
}
else {
am.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, triggerTime, sender);
}
LOG.debug("Autosend alarm has been set");
} else {
if (alarmIntent != null) {
LOG.debug("alarmIntent was null, canceling alarm");
cancelAlarm();
}
}
}
public void logOnce() {
session.setSinglePointMode(true);
if (session.isStarted()) {
startGpsManager();
} else {
startLogging();
}
}
private void cancelAlarm() {
if (alarmIntent != null) {
AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
PendingIntent sender = PendingIntent.getBroadcast(this, 0, alarmIntent,
PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_MUTABLE);
am.cancel(sender);
}
}
/**
* Method to be called if user has chosen to auto email log files when he
* stops logging
*/
private void autoSendLogFileOnStop() {
if (preferenceHelper.isAutoSendEnabled() && preferenceHelper.shouldAutoSendOnStopLogging()) {
autoSendLogFile(null);
}
}
/**
* Calls the Auto Senders which process the files and send it.
*/
private void autoSendLogFile(@Nullable String formattedFileName) {
LOG.debug("Filename: " + formattedFileName);
if ( !Strings.isNullOrEmpty(formattedFileName) || !Strings.isNullOrEmpty(Strings.getFormattedFileName()) ) {
String fileToSend = Strings.isNullOrEmpty(formattedFileName) ? Strings.getFormattedFileName() : formattedFileName;
FileSenderFactory.autoSendFiles(fileToSend);
setupAutoSendTimers();
}
}
private void resetAutoSendTimersIfNecessary() {
if (session.getAutoSendDelay() != preferenceHelper.getAutoSendInterval()) {
session.setAutoSendDelay(preferenceHelper.getAutoSendInterval());
setupAutoSendTimers();
}
}
/**
* Resets the form, resets file name if required, reobtains preferences
*/
protected void startLogging() {
LOG.debug(".");
session.setAddNewTrackSegment(true);
try {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
startForeground(NotificationChannelNames.GPSLOGGER_DEFAULT_NOTIFICATION_ID, getNotification(), ServiceInfo.FOREGROUND_SERVICE_TYPE_LOCATION);
}
else {
startForeground(NotificationChannelNames.GPSLOGGER_DEFAULT_NOTIFICATION_ID, getNotification());
}
} catch (Exception ex) {
LOG.error("Could not start GPSLoggingService in foreground. ", ex);
}
session.setStarted(true);
resetAutoSendTimersIfNecessary();
showNotification();
setupAutoSendTimers();
resetCurrentFileName(true);
notifyClientsStarted(true);
startPassiveManager();
startGpsManager();
}
private void notifyByBroadcast(boolean loggingStarted) {
LOG.debug("Sending a started/stopped broadcast");
String event = (loggingStarted) ? "started" : "stopped";
Intent sendIntent = new Intent();
sendIntent.setAction("com.mendhak.gpslogger.EVENT");
sendIntent.putExtra("gpsloggerevent", event); // started, stopped
sendIntent.putExtra("filename", session.getCurrentFormattedFileName());
sendIntent.putExtra("startedtimestamp", session.getStartTimeStamp());
sendIntent.putExtra("duration", (int) (System.currentTimeMillis() - session.getStartTimeStamp()) / 1000);
sendIntent.putExtra("distance", session.getTotalTravelled());
sendBroadcast(sendIntent);
}
/**
* Informs main activity and broadcast listeners whether logging has started/stopped
*/
private void notifyClientsStarted(boolean started) {
LOG.info((started)? getString(R.string.started) : getString(R.string.stopped));
notifyByBroadcast(started);
EventBus.getDefault().post(new ServiceEvents.LoggingStatus(started));
}
/**
* Notify status of logger
*/
private void notifyStatus(boolean started) {
LOG.info((started)? getString(R.string.started) : getString(R.string.stopped));
notifyByBroadcast(started);
}
/**
* Stops logging, removes notification, stops GPS manager, stops email timer
*/
public void stopLogging() {
LOG.debug(".");
session.setAddNewTrackSegment(true);
session.setTotalTravelled(0);
session.setPreviousLocationInfo(null);
session.setStarted(false);
session.setUserStillSinceTimeStamp(0);
session.setLatestTimeStamp(0);
stopAbsoluteTimer();
// Email log file before setting location info to null
autoSendLogFileOnStop();
cancelAlarm();
session.setCurrentLocationInfo(null);
session.setSinglePointMode(false);
stopForeground(true);
stopSelf();
removeNotification();
stopAlarm();
stopGpsManager();
stopPassiveManager();
notifyClientsStarted(false);
session.setCurrentFileName("");
session.setCurrentFormattedFileName("");
}
/**
* Hides the notification icon in the status bar if it's visible.
*/
private void removeNotification() {
notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
notificationManager.cancelAll();
}
/**
* Shows a notification icon in the status bar for GPS Logger
*/
private Notification getNotification() {
Intent stopLoggingIntent = new Intent(this, GpsLoggingService.class);
stopLoggingIntent.setAction("NotificationButton_STOP");
stopLoggingIntent.putExtra(IntentConstants.IMMEDIATE_STOP, true);
PendingIntent piStop = PendingIntent.getService(this, 0, stopLoggingIntent, PendingIntent.FLAG_IMMUTABLE);
Intent annotateIntent = new Intent(this, NotificationAnnotationActivity.class);
annotateIntent.setAction("com.mendhak.gpslogger.NOTIFICATION_BUTTON");
PendingIntent piAnnotate = PendingIntent.getActivity(this,0, annotateIntent, PendingIntent.FLAG_IMMUTABLE);
// What happens when the notification item is clicked
Intent contentIntent = new Intent(this, GpsMainActivity.class);
TaskStackBuilder stackBuilder = TaskStackBuilder.create(this);
stackBuilder.addNextIntent(contentIntent);
int flags = PendingIntent.FLAG_UPDATE_CURRENT;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
flags |= PendingIntent.FLAG_IMMUTABLE;
}
PendingIntent pending = stackBuilder.getPendingIntent(0, flags);
CharSequence contentTitle = getString(R.string.gpslogger_still_running);
CharSequence contentText = getString(R.string.app_name);
long notificationTime = System.currentTimeMillis();
if (session.hasValidLocation()) {
contentTitle = Strings.getFormattedLatitude(session.getCurrentLatitude()) + ", "
+ Strings.getFormattedLongitude(session.getCurrentLongitude());
contentText = Html.fromHtml("<b>" + getString(R.string.txt_altitude) + "</b> " + Strings.getDistanceDisplay(this,session.getCurrentLocationInfo().getAltitude(), preferenceHelper.shouldDisplayImperialUnits(), false)
+ " "
+ "<b>" + getString(R.string.txt_travel_duration) + "</b> " + Strings.getDescriptiveDurationString((int) (System.currentTimeMillis() - session.getStartTimeStamp()) / 1000, this)
+ " "
+ "<b>" + getString(R.string.txt_accuracy) + "</b> " + Strings.getDistanceDisplay(this, session.getCurrentLocationInfo().getAccuracy(), preferenceHelper.shouldDisplayImperialUnits(), true));
notificationTime = session.getCurrentLocationInfo().getTime();
}
if (nfc == null) {
nfc = new NotificationCompat.Builder(getApplicationContext(), NotificationChannelNames.GPSLOGGER_DEFAULT)
.setSmallIcon(R.drawable.notification)
.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.gpsloggericon3))
.setPriority( preferenceHelper.shouldHideNotificationFromStatusBar() ? NotificationCompat.PRIORITY_MIN : NotificationCompat.PRIORITY_LOW)
.setCategory(NotificationCompat.CATEGORY_SERVICE)
.setVisibility(preferenceHelper.shouldHideNotificationFromLockScreen() ? NotificationCompat.VISIBILITY_SECRET : NotificationCompat.VISIBILITY_PUBLIC) //This hides the notification from lock screen
.setContentTitle(contentTitle)
.setContentText(contentText)
.setStyle(new NotificationCompat.BigTextStyle().bigText(contentText).setBigContentTitle(contentTitle))
.setOngoing(true)
.setOnlyAlertOnce(true)
.setContentIntent(pending);
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){
nfc.setPriority(NotificationCompat.PRIORITY_LOW);
}
if(!preferenceHelper.shouldHideNotificationButtons()){
nfc.addAction(R.drawable.annotate2, getString(R.string.menu_annotate), piAnnotate)
.addAction(android.R.drawable.ic_menu_close_clear_cancel, getString(R.string.shortcut_stop), piStop);
}
}
nfc.setContentTitle(contentTitle);
nfc.setContentText(contentText);
nfc.setStyle(new NotificationCompat.BigTextStyle().bigText(contentText).setBigContentTitle(contentTitle));
nfc.setWhen(notificationTime);
//notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
//notificationManager.notify(NotificationChannelNames.GPSLOGGER_DEFAULT_ID, nfc.build());
return nfc.build();
}
private void showNotification(){
Notification notif = getNotification();
notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
notificationManager.notify(NotificationChannelNames.GPSLOGGER_DEFAULT_NOTIFICATION_ID, notif);
}
@SuppressWarnings("ResourceType")
private void startPassiveManager() {
if(preferenceHelper.shouldLogPassiveLocations()){
LOG.debug("Starting passive location listener");
if(passiveLocationListener== null){
passiveLocationListener = new GeneralLocationListener(this, BundleConstants.PASSIVE);
}
passiveLocationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
passiveLocationManager.requestLocationUpdates(LocationManager.PASSIVE_PROVIDER, 1000, 0, passiveLocationListener);
}
}
/**
* Starts the location manager. There are two location managers - GPS and
* Cell Tower. This code determines which manager to request updates from
* based on user preference and whichever is enabled. If GPS is enabled on
* the phone, that is used. But if the user has also specified that they
* prefer cell towers, then cell towers are used. If neither is enabled,
* then nothing is requested.
*/
@SuppressWarnings("ResourceType")
private void startGpsManager() {
//If the user has been still for more than the minimum seconds
if(userHasBeenStillForTooLong()) {
LOG.info("No movement detected in the past interval, will not log");
setAlarmForNextPoint();
return;
}
if (gpsLocationListener == null) {
gpsLocationListener = new GeneralLocationListener(this, "GPS");
}
if (towerLocationListener == null) {
towerLocationListener = new GeneralLocationListener(this, "CELL");
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
gnssStatusCallback = new GnssStatus.Callback() {
@Override
public void onStarted() {
super.onStarted();
}
@Override
public void onStopped() {
super.onStopped();
}
@Override
public void onFirstFix(int ttffMillis) {
super.onFirstFix(ttffMillis);
LOG.info("Time to first fix: {}ms", ttffMillis);
}
@Override
public void onSatelliteStatusChanged(@NonNull GnssStatus status) {
super.onSatelliteStatusChanged(status);
setSatelliteInfo(status.getSatelliteCount());
gpsLocationListener.satellitesUsedInFix = status.getSatelliteCount();
}
};
}
gpsLocationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
towerLocationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
checkTowerAndGpsStatus();
if (session.isGpsEnabled() && preferenceHelper.shouldLogSatelliteLocations()) {
LOG.info("Requesting GPS location updates");
// gps satellite based
gpsLocationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000, 0, gpsLocationListener);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
gpsLocationManager.registerGnssStatusCallback(gnssStatusCallback);
}
else {
gpsLocationManager.addGpsStatusListener(gpsLocationListener);
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
if (nmeaLocationListener == null){
//This Nmea listener just wraps the gps listener.
nmeaLocationListener = new NmeaLocationListener(gpsLocationListener);
}
gpsLocationManager.addNmeaListener(nmeaLocationListener, null);
}
else {
gpsLocationManager.addNmeaListener(gpsLocationListener);
}
session.setUsingGps(true);
startAbsoluteTimer();
}
if (session.isTowerEnabled() && ( preferenceHelper.shouldLogNetworkLocations() || !session.isGpsEnabled() ) ) {
LOG.info("Requesting cell and wifi location updates");
session.setUsingGps(false);
// Cell tower and wifi based
towerLocationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 1000, 0, towerLocationListener);
startAbsoluteTimer();
}
if(!session.isTowerEnabled() && !session.isGpsEnabled()) {
LOG.error("No provider available!");
session.setUsingGps(false);
LOG.error(getString(R.string.gpsprovider_unavailable));
// Let the app check again, whether location services have returned, after the absolute-timer time has passed.
startAbsoluteTimer();
setLocationServiceUnavailable(true);
return;
} else {
setLocationServiceUnavailable(false);
}
if(!preferenceHelper.shouldLogNetworkLocations() && !preferenceHelper.shouldLogSatelliteLocations() && !preferenceHelper.shouldLogPassiveLocations()){
LOG.error("No location provider selected!");
session.setUsingGps(false);
stopLogging();
return;
}
EventBus.getDefault().post(new ServiceEvents.WaitingForLocation(true));
session.setWaitingForLocation(true);
}
private boolean userHasBeenStillForTooLong() {
return !session.hasDescription() && !session.isSinglePointMode() &&
(session.getUserStillSinceTimeStamp() > 0 && (System.currentTimeMillis() - session.getUserStillSinceTimeStamp()) > (preferenceHelper.getMinimumLoggingInterval() * 1000));
}
private void startAbsoluteTimer() {
if (preferenceHelper.getAbsoluteTimeoutForAcquiringPosition() >= 1) {
handler.postDelayed(stopManagerRunnable, preferenceHelper.getAbsoluteTimeoutForAcquiringPosition() * 1000);
}
}
private Runnable stopManagerRunnable = new Runnable() {
@Override
public void run() {
LOG.warn("Absolute timeout reached, giving up on this point");
stopManagerAndResetAlarm();
}
};
private void stopAbsoluteTimer() {
handler.removeCallbacks(stopManagerRunnable);
}
/**
* This method is called periodically to determine whether the cell tower /
* gps providers have been enabled, and sets class level variables to those
* values.
*/
private void checkTowerAndGpsStatus() {
session.setTowerEnabled(towerLocationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER));
session.setGpsEnabled(gpsLocationManager.isProviderEnabled(LocationManager.GPS_PROVIDER));
}
/**
* Stops the location managers
*/
@SuppressWarnings("ResourceType")
private void stopGpsManager() {
if (towerLocationListener != null) {
LOG.debug("Removing towerLocationManager updates");
towerLocationManager.removeUpdates(towerLocationListener);
}
if (gpsLocationListener != null) {
LOG.debug("Removing gpsLocationManager updates");
gpsLocationManager.removeUpdates(gpsLocationListener);
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N && gnssStatusCallback != null) {
gpsLocationManager.unregisterGnssStatusCallback(gnssStatusCallback);
}
else {
gpsLocationManager.removeGpsStatusListener(gpsLocationListener);
}
session.setWaitingForLocation(false);
EventBus.getDefault().post(new ServiceEvents.WaitingForLocation(false));
}
@SuppressWarnings("ResourceType")
private void stopPassiveManager(){
if(passiveLocationManager!=null){
LOG.debug("Removing passiveLocationManager updates");
passiveLocationManager.removeUpdates(passiveLocationListener);
}
}
/**
* Sets the current file name based on user preference.
*/
private void resetCurrentFileName(boolean newLogEachStart) {
String oldFileName = session.getCurrentFormattedFileName();
/* Update the file name, if required. (New day, Re-start service) */
if (preferenceHelper.shouldCreateCustomFile()) {
if(Strings.isNullOrEmpty(Strings.getFormattedFileName())){
session.setCurrentFileName(preferenceHelper.getCustomFileName());
}
LOG.debug("Should change file name dynamically: " + preferenceHelper.shouldChangeFileNameDynamically());
if(!preferenceHelper.shouldChangeFileNameDynamically()){
session.setCurrentFileName(Strings.getFormattedFileName());
}
} else if (preferenceHelper.shouldCreateNewFileOnceAMonth()) {
// 201001.gpx
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMM");
session.setCurrentFileName(sdf.format(new Date()));
} else if (preferenceHelper.shouldCreateNewFileOnceADay()) {
// 20100114.gpx
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
session.setCurrentFileName(sdf.format(new Date()));
} else if (newLogEachStart) {
// 20100114183329.gpx
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
session.setCurrentFileName(sdf.format(new Date()));
}
if(!Strings.isNullOrEmpty(oldFileName)
&& !oldFileName.equalsIgnoreCase(Strings.getFormattedFileName())
&& session.isStarted()){
LOG.debug("New file name, should auto upload the old one");
EventBus.getDefault().post(new CommandEvents.AutoSend(oldFileName));
}
session.setCurrentFormattedFileName(Strings.getFormattedFileName());
LOG.info("Filename: " + Strings.getFormattedFileName());
EventBus.getDefault().post(new ServiceEvents.FileNamed(Strings.getFormattedFileName()));
}
void setLocationServiceUnavailable(boolean unavailable){
session.setLocationServiceUnavailable(unavailable);
EventBus.getDefault().post(new ServiceEvents.LocationServicesUnavailable());
}
/**
* Stops location manager, then starts it.
*/
void restartGpsManagers() {
LOG.debug("Restarting location managers");
stopGpsManager();
startGpsManager();
}
/**
* This event is raised when the GeneralLocationListener has a new location.
* This method in turn updates notification, writes to file, reobtains
* preferences, notifies main service client and resets location managers.
*
* @param loc Location object
*/
void onLocationChanged(Location loc) {
if (!session.isStarted()) {
LOG.debug("onLocationChanged called, but session.isStarted is false");
stopLogging();
return;
}
boolean isPassiveLocation = loc.getExtras().getBoolean(BundleConstants.PASSIVE);
long currentTimeStamp = System.currentTimeMillis();
LOG.debug("Has description? " + session.hasDescription() + ", Single point? " + session.isSinglePointMode() + ", Last timestamp: " + session.getLatestTimeStamp() + ", Current timestamp: " + currentTimeStamp);
// Don't log a point until the user-defined time has elapsed
// However, if user has set an annotation, just log the point, disregard time and distance filters
// However, if it's a passive location, disregard the time filter
if (!isPassiveLocation && !session.hasDescription() && !session.isSinglePointMode() && (currentTimeStamp - session.getLatestTimeStamp()) < (preferenceHelper.getMinimumLoggingInterval() * 1000)) {
LOG.debug("Received location, but minimum logging interval has not passed. Ignoring.");
return;
}
// Even if it's a passive location, the time should be greater than the previous location's time.
if(isPassiveLocation && session.getPreviousLocationInfo() != null && loc.getTime() <= session.getPreviousLocationInfo().getTime()){
LOG.debug("Passive location time: " + loc.getTime() + ", previous location's time: " + session.getPreviousLocationInfo().getTime());
LOG.debug("Passive location received, but its time was less than the previous point's time.");
return;
}
//Don't log a point if user has been still
// However, if user has set an annotation, just log the point, disregard time and distance filters
if(userHasBeenStillForTooLong()) {
LOG.info("Received location, but the user hasn't moved. Ignoring.");
return;
}
// Check that it's a user selected valid listener, even if it's a passive location.
// In other words, if user wants satellite only, then don't log passive network locations.
if(!isFromSelectedListener(loc)){
LOG.debug("Received location, but it's not from a selected listener. Ignoring.");
return;
}
//Check if a ridiculous distance has been travelled since previous point - could be a bad GPS jump
if(session.getCurrentLocationInfo() != null){
double distanceTravelled = Maths.calculateDistance(loc.getLatitude(), loc.getLongitude(), session.getCurrentLocationInfo().getLatitude(), session.getCurrentLocationInfo().getLongitude());
long timeDifference = (int)Math.abs(loc.getTime() - session.getCurrentLocationInfo().getTime())/1000;
if( timeDifference > 0 && (distanceTravelled/timeDifference) > 357){ //357 m/s ~= 1285 km/h
LOG.warn(String.format("Very large jump detected - %d meters in %d sec - discarding point", (long)distanceTravelled, timeDifference));
return;
}
}
// Don't do anything until the user-defined accuracy is reached
// even for annotations
if (preferenceHelper.getMinimumAccuracy() > 0) {
if(!loc.hasAccuracy() || loc.getAccuracy() == 0){
LOG.debug("Received location, but it has no accuracy value. Ignoring.");
return;
}
if (preferenceHelper.getMinimumAccuracy() < Math.abs(loc.getAccuracy())) {
if(session.getFirstRetryTimeStamp() == 0){
session.setFirstRetryTimeStamp(System.currentTimeMillis());
}
if (currentTimeStamp - session.getFirstRetryTimeStamp() <= preferenceHelper.getLoggingRetryPeriod() * 1000) {
LOG.warn("Only accuracy of " + String.valueOf(loc.getAccuracy()) + " m. Point discarded." + getString(R.string.inaccurate_point_discarded));
//return and keep trying
return;
}
if (currentTimeStamp - session.getFirstRetryTimeStamp() > preferenceHelper.getLoggingRetryPeriod() * 1000) {
LOG.warn("Only accuracy of " + String.valueOf(loc.getAccuracy()) + " m and timeout reached." + getString(R.string.inaccurate_point_discarded));
//Give up for now
stopManagerAndResetAlarm();
//reset timestamp for next time.
session.setFirstRetryTimeStamp(0);
return;
}
//Success, reset timestamp for next time.
session.setFirstRetryTimeStamp(0);
}
//If the user wants the best possible accuracy, store the point, only if it's the best so far.
// Then retry until the time limit is reached.
// Exception - if it's a passive location, or it's an annotation, or single point mode.
// I don't think we need to pick the best point in the case of passive locations (not sure).
else if(preferenceHelper.shouldGetBestPossibleAccuracy() && !isPassiveLocation && !session.hasDescription() && !session.isSinglePointMode()) {
if(session.getFirstRetryTimeStamp() == 0){
//It's the first loop so reset timestamp and temporary location
session.setTemporaryLocationForBestAccuracy(null);
session.setFirstRetryTimeStamp(System.currentTimeMillis());
}
if(session.getTemporaryLocationForBestAccuracy() == null || loc.getAccuracy() < session.getTemporaryLocationForBestAccuracy().getAccuracy()){
LOG.debug("New point with accuracy of " + String.valueOf(loc.getAccuracy()) + " m." );
session.setTemporaryLocationForBestAccuracy(loc);
}
if (currentTimeStamp - session.getFirstRetryTimeStamp() <= preferenceHelper.getLoggingRetryPeriod() * 1000) {
// return and keep trying
return;
}
if (currentTimeStamp - session.getFirstRetryTimeStamp() > preferenceHelper.getLoggingRetryPeriod() * 1000) {
// We've reached the end of the retry period, use the best point we've got so far.
LOG.debug("Retry timeout reached, using best point so far with accuracy of " + String.valueOf(session.getTemporaryLocationForBestAccuracy().getAccuracy()) + " m.");
loc = session.getTemporaryLocationForBestAccuracy();
//reset for next time
session.setTemporaryLocationForBestAccuracy(null);
session.setFirstRetryTimeStamp(0);
}
}
}
//Don't do anything until the user-defined distance has been traversed
// However, if user has set an annotation, just log the point, disregard time and distance filters
// However, if it's a passive location, ignore distance filter.
if (!isPassiveLocation && !session.hasDescription() && !session.isSinglePointMode() && preferenceHelper.getMinimumDistanceInterval() > 0 && session.hasValidLocation()) {
double distanceTraveled = Maths.calculateDistance(loc.getLatitude(), loc.getLongitude(),
session.getCurrentLatitude(), session.getCurrentLongitude());
if (preferenceHelper.getMinimumDistanceInterval() > distanceTraveled) {
LOG.warn(String.format(getString(R.string.not_enough_distance_traveled), String.valueOf(Math.floor(distanceTraveled))) + ", point discarded");
stopManagerAndResetAlarm();
return;
}
}
LOG.debug(String.valueOf(loc.getLatitude()) + "," + String.valueOf(loc.getLongitude()));
LOG.info(SessionLogcatAppender.MARKER_LOCATION, getLocationDisplayForLogs(loc));
loc = Locations.getLocationWithAdjustedAltitude(loc, preferenceHelper);
loc = Locations.getLocationAdjustedForGPSWeekRollover(loc);
resetCurrentFileName(false);