Alphabetize functions in trackerservice.
This commit is contained in:
parent
8a72bb2b2e
commit
bc640051cf
1 changed files with 256 additions and 253 deletions
|
@ -78,174 +78,75 @@ class TrackerService: Service(), SensorEventListener
|
||||||
private lateinit var gpsLocationListener: LocationListener
|
private lateinit var gpsLocationListener: LocationListener
|
||||||
private lateinit var networkLocationListener: LocationListener
|
private lateinit var networkLocationListener: LocationListener
|
||||||
|
|
||||||
/* Overrides onCreate from Service */
|
/* Adds a GPS location listener to location manager */
|
||||||
override fun onCreate()
|
private fun addGpsLocationListener()
|
||||||
{
|
{
|
||||||
super.onCreate()
|
if (gpsLocationListenerRegistered)
|
||||||
gpsOnly = PreferencesHelper.loadGpsOnly()
|
{
|
||||||
useImperial = PreferencesHelper.loadUseImperialUnits()
|
LogHelper.v(TAG, "GPS location listener has already been added.")
|
||||||
omitRests = PreferencesHelper.loadOmitRests()
|
return
|
||||||
|
}
|
||||||
|
|
||||||
locationManager = getSystemService(Context.LOCATION_SERVICE) as LocationManager
|
|
||||||
sensorManager = this.getSystemService(Context.SENSOR_SERVICE) as SensorManager
|
|
||||||
notificationManager = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
|
|
||||||
notificationHelper = NotificationHelper(this)
|
|
||||||
gpsProviderActive = LocationHelper.isGpsEnabled(locationManager)
|
gpsProviderActive = LocationHelper.isGpsEnabled(locationManager)
|
||||||
networkProviderActive = LocationHelper.isNetworkEnabled(locationManager)
|
if (! gpsProviderActive)
|
||||||
gpsLocationListener = createLocationListener()
|
{
|
||||||
networkLocationListener = createLocationListener()
|
LogHelper.w(TAG, "Device GPS is not enabled.")
|
||||||
trackingState = PreferencesHelper.loadTrackingState()
|
return
|
||||||
currentBestLocation = LocationHelper.getLastKnownLocation(this)
|
|
||||||
track = load_temp_track(this)
|
|
||||||
// altitudeValues.capacity = PreferencesHelper.loadAltitudeSmoothingValue()
|
|
||||||
PreferencesHelper.registerPreferenceChangeListener(sharedPreferenceChangeListener)
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Overrides onStartCommand from Service */
|
|
||||||
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
|
|
||||||
|
|
||||||
// SERVICE RESTART (via START_STICKY)
|
|
||||||
if (intent == null) {
|
|
||||||
if (trackingState == Keys.STATE_TRACKING_ACTIVE) {
|
|
||||||
LogHelper.w(
|
|
||||||
TAG,
|
|
||||||
"Trackbook has been killed by the operating system. Trying to resume recording."
|
|
||||||
)
|
|
||||||
resumeTracking()
|
|
||||||
}
|
|
||||||
// ACTION STOP
|
|
||||||
} else if (Keys.ACTION_STOP == intent.action) {
|
|
||||||
stopTracking()
|
|
||||||
// ACTION START
|
|
||||||
} else if (Keys.ACTION_START == intent.action) {
|
|
||||||
startTracking()
|
|
||||||
// ACTION RESUME
|
|
||||||
} else if (Keys.ACTION_RESUME == intent.action) {
|
|
||||||
resumeTracking()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// START_STICKY is used for services that are explicitly started and stopped as needed
|
val has_permission: Boolean = ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) == PackageManager.PERMISSION_GRANTED
|
||||||
return START_STICKY
|
if (! has_permission)
|
||||||
}
|
{
|
||||||
|
LogHelper.w(TAG, "Location permission is not granted.")
|
||||||
/* Overrides onBind from Service */
|
return
|
||||||
override fun onBind(p0: Intent?): IBinder? {
|
|
||||||
bound = true
|
|
||||||
// start receiving location updates
|
|
||||||
addGpsLocationListener()
|
|
||||||
addNetworkLocationListener()
|
|
||||||
// return reference to this service
|
|
||||||
return binder
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Overrides onRebind from Service */
|
|
||||||
override fun onRebind(intent: Intent?) {
|
|
||||||
bound = true
|
|
||||||
// start receiving location updates
|
|
||||||
addGpsLocationListener()
|
|
||||||
addNetworkLocationListener()
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Overrides onUnbind from Service */
|
|
||||||
override fun onUnbind(intent: Intent?): Boolean {
|
|
||||||
bound = false
|
|
||||||
// stop receiving location updates - if not tracking
|
|
||||||
if (trackingState != Keys.STATE_TRACKING_ACTIVE) {
|
|
||||||
removeGpsLocationListener()
|
|
||||||
removeNetworkLocationListener()
|
|
||||||
}
|
}
|
||||||
// ensures onRebind is called
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Overrides onDestroy from Service */
|
locationManager.requestLocationUpdates(
|
||||||
override fun onDestroy() {
|
LocationManager.GPS_PROVIDER,
|
||||||
super.onDestroy()
|
0,
|
||||||
LogHelper.i(TAG, "onDestroy called.")
|
0f,
|
||||||
// stop tracking
|
gpsLocationListener,
|
||||||
if (trackingState == Keys.STATE_TRACKING_ACTIVE) stopTracking()
|
|
||||||
// remove notification
|
|
||||||
stopForeground(true)
|
|
||||||
notificationManager.cancel(Keys.TRACKER_SERVICE_NOTIFICATION_ID) // this call was not necessary prior to Android 12
|
|
||||||
// stop listening for changes in shared preferences
|
|
||||||
PreferencesHelper.unregisterPreferenceChangeListener(
|
|
||||||
sharedPreferenceChangeListener
|
|
||||||
)
|
)
|
||||||
// stop receiving location updates
|
gpsLocationListenerRegistered = true
|
||||||
removeGpsLocationListener()
|
LogHelper.v(TAG, "Added GPS location listener.")
|
||||||
removeNetworkLocationListener()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Overrides onAccuracyChanged from SensorEventListener */
|
/* Adds a Network location listener to location manager */
|
||||||
override fun onAccuracyChanged(sensor: Sensor?, accuracy: Int) {
|
private fun addNetworkLocationListener() {
|
||||||
LogHelper.v(TAG, "Accuracy changed: $accuracy")
|
if (gpsOnly)
|
||||||
}
|
{
|
||||||
|
LogHelper.v(TAG, "Skipping Network listener. User prefers GPS-only.")
|
||||||
/* Overrides onSensorChanged from SensorEventListener */
|
return
|
||||||
override fun onSensorChanged(sensorEvent: SensorEvent?) {
|
|
||||||
var steps: Float = 0f
|
|
||||||
if (sensorEvent != null) {
|
|
||||||
if (stepCountOffset == 0f) {
|
|
||||||
// store steps previously recorded by the system
|
|
||||||
stepCountOffset = (sensorEvent.values[0] - 1) - track.stepCount // subtract any steps recorded during this session in case the app was killed
|
|
||||||
}
|
|
||||||
// calculate step count - subtract steps previously recorded
|
|
||||||
steps = sensorEvent.values[0] - stepCountOffset
|
|
||||||
}
|
}
|
||||||
// update step count in track
|
|
||||||
track.stepCount = steps
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Resume tracking after stop/pause */
|
if (networkLocationListenerRegistered)
|
||||||
fun resumeTracking()
|
{
|
||||||
{
|
LogHelper.v(TAG, "Network location listener has already been added.")
|
||||||
// load temp track - returns an empty track if there is no temp file.
|
return
|
||||||
track = load_temp_track(this)
|
|
||||||
// try to mark last waypoint as stopover
|
|
||||||
if (track.wayPoints.size > 0) {
|
|
||||||
val lastWayPointIndex = track.wayPoints.size - 1
|
|
||||||
track.wayPoints[lastWayPointIndex].isStopOver = true
|
|
||||||
}
|
}
|
||||||
resumed = true
|
|
||||||
// calculate length of recording break
|
|
||||||
track.recordingPaused += TrackHelper.calculateDurationOfPause(track.recordingStop)
|
|
||||||
startTracking(newTrack = false)
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Start tracking location */
|
networkProviderActive = LocationHelper.isNetworkEnabled(locationManager)
|
||||||
fun startTracking(newTrack: Boolean = true) {
|
if (!networkProviderActive)
|
||||||
addGpsLocationListener()
|
{
|
||||||
addNetworkLocationListener()
|
LogHelper.w(TAG, "Unable to add Network location listener.")
|
||||||
// set up new track
|
return
|
||||||
if (newTrack) {
|
|
||||||
track = Track()
|
|
||||||
resumed = false
|
|
||||||
stepCountOffset = 0f
|
|
||||||
}
|
}
|
||||||
trackingState = Keys.STATE_TRACKING_ACTIVE
|
|
||||||
PreferencesHelper.saveTrackingState(trackingState)
|
|
||||||
startStepCounter()
|
|
||||||
handler.postDelayed(periodicTrackUpdate, 0)
|
|
||||||
startForeground(Keys.TRACKER_SERVICE_NOTIFICATION_ID, displayNotification())
|
|
||||||
}
|
|
||||||
|
|
||||||
fun stopTracking()
|
val has_permission = ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) == PackageManager.PERMISSION_GRANTED
|
||||||
{
|
if (! has_permission)
|
||||||
track.recordingStop = GregorianCalendar.getInstance().time
|
{
|
||||||
val context: Context = this
|
LogHelper.w(TAG, "Unable to add Network location listener. Location permission is not granted.")
|
||||||
CoroutineScope(IO).launch { track.save_temp_suspended(context) }
|
return
|
||||||
|
}
|
||||||
|
|
||||||
trackingState = Keys.STATE_TRACKING_STOPPED
|
locationManager.requestLocationUpdates(
|
||||||
trackingState = Keys.STATE_TRACKING_PAUSED
|
LocationManager.NETWORK_PROVIDER,
|
||||||
PreferencesHelper.saveTrackingState(trackingState)
|
0,
|
||||||
|
0f,
|
||||||
altitudeValues.reset()
|
networkLocationListener,
|
||||||
|
)
|
||||||
sensorManager.unregisterListener(this)
|
networkLocationListenerRegistered = true
|
||||||
handler.removeCallbacks(periodicTrackUpdate)
|
LogHelper.v(TAG, "Added Network location listener.")
|
||||||
|
|
||||||
displayNotification()
|
|
||||||
stopForeground(false)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fun clearTrack()
|
fun clearTrack()
|
||||||
|
@ -301,108 +202,6 @@ class TrackerService: Service(), SensorEventListener
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Adds a GPS location listener to location manager */
|
|
||||||
private fun addGpsLocationListener()
|
|
||||||
{
|
|
||||||
if (gpsLocationListenerRegistered)
|
|
||||||
{
|
|
||||||
LogHelper.v(TAG, "GPS location listener has already been added.")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
gpsProviderActive = LocationHelper.isGpsEnabled(locationManager)
|
|
||||||
if (! gpsProviderActive)
|
|
||||||
{
|
|
||||||
LogHelper.w(TAG, "Device GPS is not enabled.")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
val has_permission: Boolean = ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) == PackageManager.PERMISSION_GRANTED
|
|
||||||
if (! has_permission)
|
|
||||||
{
|
|
||||||
LogHelper.w(TAG, "Location permission is not granted.")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
locationManager.requestLocationUpdates(
|
|
||||||
LocationManager.GPS_PROVIDER,
|
|
||||||
0,
|
|
||||||
0f,
|
|
||||||
gpsLocationListener
|
|
||||||
)
|
|
||||||
gpsLocationListenerRegistered = true
|
|
||||||
LogHelper.v(TAG, "Added GPS location listener.")
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Adds a Network location listener to location manager */
|
|
||||||
private fun addNetworkLocationListener() {
|
|
||||||
if (gpsOnly)
|
|
||||||
{
|
|
||||||
LogHelper.v(TAG, "Skipping Network listener. User prefers GPS-only.")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if (networkLocationListenerRegistered)
|
|
||||||
{
|
|
||||||
LogHelper.v(TAG, "Network location listener has already been added.")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
networkProviderActive = LocationHelper.isNetworkEnabled(locationManager)
|
|
||||||
if (!networkProviderActive)
|
|
||||||
{
|
|
||||||
LogHelper.w(TAG, "Unable to add Network location listener.")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
val has_permission = ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) == PackageManager.PERMISSION_GRANTED
|
|
||||||
if (! has_permission)
|
|
||||||
{
|
|
||||||
LogHelper.w(TAG, "Unable to add Network location listener. Location permission is not granted.")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
locationManager.requestLocationUpdates(
|
|
||||||
LocationManager.NETWORK_PROVIDER,
|
|
||||||
0,
|
|
||||||
0f,
|
|
||||||
networkLocationListener
|
|
||||||
)
|
|
||||||
networkLocationListenerRegistered = true
|
|
||||||
LogHelper.v(TAG, "Added Network location listener.")
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Adds location listeners to location manager */
|
|
||||||
fun removeGpsLocationListener() {
|
|
||||||
if (ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) == PackageManager.PERMISSION_GRANTED) {
|
|
||||||
locationManager.removeUpdates(gpsLocationListener)
|
|
||||||
gpsLocationListenerRegistered = false
|
|
||||||
LogHelper.v(TAG, "Removed GPS location listener.")
|
|
||||||
} else {
|
|
||||||
LogHelper.w(TAG, "Unable to remove GPS location listener. Location permission is needed.")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Adds location listeners to location manager */
|
|
||||||
fun removeNetworkLocationListener() {
|
|
||||||
if (ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) == PackageManager.PERMISSION_GRANTED) {
|
|
||||||
locationManager.removeUpdates(networkLocationListener)
|
|
||||||
networkLocationListenerRegistered = false
|
|
||||||
LogHelper.v(TAG, "Removed Network location listener.")
|
|
||||||
} else {
|
|
||||||
LogHelper.w(TAG, "Unable to remove Network location listener. Location permission is needed.")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Registers a step counter listener */
|
|
||||||
private fun startStepCounter() {
|
|
||||||
val stepCounterAvailable = sensorManager.registerListener(this, sensorManager.getDefaultSensor(Sensor.TYPE_STEP_COUNTER), SensorManager.SENSOR_DELAY_UI)
|
|
||||||
if (!stepCounterAvailable) {
|
|
||||||
LogHelper.w(TAG, "Pedometer sensor not available.")
|
|
||||||
track.stepCount = -1f
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Displays or updates notification */
|
/* Displays or updates notification */
|
||||||
private fun displayNotification(): Notification {
|
private fun displayNotification(): Notification {
|
||||||
val notification: Notification = notificationHelper.createNotification(
|
val notification: Notification = notificationHelper.createNotification(
|
||||||
|
@ -415,6 +214,210 @@ class TrackerService: Service(), SensorEventListener
|
||||||
return notification
|
return notification
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Overrides onAccuracyChanged from SensorEventListener */
|
||||||
|
override fun onAccuracyChanged(sensor: Sensor?, accuracy: Int) {
|
||||||
|
LogHelper.v(TAG, "Accuracy changed: $accuracy")
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Overrides onBind from Service */
|
||||||
|
override fun onBind(p0: Intent?): IBinder
|
||||||
|
{
|
||||||
|
bound = true
|
||||||
|
// start receiving location updates
|
||||||
|
addGpsLocationListener()
|
||||||
|
addNetworkLocationListener()
|
||||||
|
// return reference to this service
|
||||||
|
return binder
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Overrides onCreate from Service */
|
||||||
|
override fun onCreate()
|
||||||
|
{
|
||||||
|
super.onCreate()
|
||||||
|
gpsOnly = PreferencesHelper.loadGpsOnly()
|
||||||
|
useImperial = PreferencesHelper.loadUseImperialUnits()
|
||||||
|
omitRests = PreferencesHelper.loadOmitRests()
|
||||||
|
|
||||||
|
locationManager = getSystemService(Context.LOCATION_SERVICE) as LocationManager
|
||||||
|
sensorManager = this.getSystemService(Context.SENSOR_SERVICE) as SensorManager
|
||||||
|
notificationManager = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
|
||||||
|
notificationHelper = NotificationHelper(this)
|
||||||
|
gpsProviderActive = LocationHelper.isGpsEnabled(locationManager)
|
||||||
|
networkProviderActive = LocationHelper.isNetworkEnabled(locationManager)
|
||||||
|
gpsLocationListener = createLocationListener()
|
||||||
|
networkLocationListener = createLocationListener()
|
||||||
|
trackingState = PreferencesHelper.loadTrackingState()
|
||||||
|
currentBestLocation = LocationHelper.getLastKnownLocation(this)
|
||||||
|
track = load_temp_track(this)
|
||||||
|
// altitudeValues.capacity = PreferencesHelper.loadAltitudeSmoothingValue()
|
||||||
|
PreferencesHelper.registerPreferenceChangeListener(sharedPreferenceChangeListener)
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Overrides onDestroy from Service */
|
||||||
|
override fun onDestroy() {
|
||||||
|
super.onDestroy()
|
||||||
|
LogHelper.i(TAG, "onDestroy called.")
|
||||||
|
if (trackingState == Keys.STATE_TRACKING_ACTIVE)
|
||||||
|
{
|
||||||
|
stopTracking()
|
||||||
|
}
|
||||||
|
stopForeground(true)
|
||||||
|
notificationManager.cancel(Keys.TRACKER_SERVICE_NOTIFICATION_ID) // this call was not necessary prior to Android 12
|
||||||
|
PreferencesHelper.unregisterPreferenceChangeListener(sharedPreferenceChangeListener)
|
||||||
|
removeGpsLocationListener()
|
||||||
|
removeNetworkLocationListener()
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Overrides onRebind from Service */
|
||||||
|
override fun onRebind(intent: Intent?)
|
||||||
|
{
|
||||||
|
bound = true
|
||||||
|
addGpsLocationListener()
|
||||||
|
addNetworkLocationListener()
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Overrides onSensorChanged from SensorEventListener */
|
||||||
|
override fun onSensorChanged(sensorEvent: SensorEvent?) {
|
||||||
|
var steps: Float = 0f
|
||||||
|
if (sensorEvent != null) {
|
||||||
|
if (stepCountOffset == 0f) {
|
||||||
|
// store steps previously recorded by the system
|
||||||
|
stepCountOffset = (sensorEvent.values[0] - 1) - track.stepCount // subtract any steps recorded during this session in case the app was killed
|
||||||
|
}
|
||||||
|
// calculate step count - subtract steps previously recorded
|
||||||
|
steps = sensorEvent.values[0] - stepCountOffset
|
||||||
|
}
|
||||||
|
// update step count in track
|
||||||
|
track.stepCount = steps
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Overrides onStartCommand from Service */
|
||||||
|
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int
|
||||||
|
{
|
||||||
|
// SERVICE RESTART (via START_STICKY)
|
||||||
|
if (intent == null)
|
||||||
|
{
|
||||||
|
if (trackingState == Keys.STATE_TRACKING_ACTIVE)
|
||||||
|
{
|
||||||
|
LogHelper.w(TAG, "Trackbook has been killed by the operating system. Trying to resume recording.")
|
||||||
|
resumeTracking()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (intent.action == Keys.ACTION_STOP)
|
||||||
|
{
|
||||||
|
stopTracking()
|
||||||
|
}
|
||||||
|
else if (intent.action == Keys.ACTION_START)
|
||||||
|
{
|
||||||
|
startTracking()
|
||||||
|
}
|
||||||
|
else if (intent.action == Keys.ACTION_RESUME)
|
||||||
|
{
|
||||||
|
resumeTracking()
|
||||||
|
}
|
||||||
|
|
||||||
|
// START_STICKY is used for services that are explicitly started and stopped as needed
|
||||||
|
return START_STICKY
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Overrides onUnbind from Service */
|
||||||
|
override fun onUnbind(intent: Intent?): Boolean
|
||||||
|
{
|
||||||
|
bound = false
|
||||||
|
// stop receiving location updates - if not tracking
|
||||||
|
if (trackingState != Keys.STATE_TRACKING_ACTIVE)
|
||||||
|
{
|
||||||
|
removeGpsLocationListener()
|
||||||
|
removeNetworkLocationListener()
|
||||||
|
}
|
||||||
|
// ensures onRebind is called
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Adds location listeners to location manager */
|
||||||
|
fun removeGpsLocationListener()
|
||||||
|
{
|
||||||
|
if (ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) == PackageManager.PERMISSION_GRANTED) {
|
||||||
|
locationManager.removeUpdates(gpsLocationListener)
|
||||||
|
gpsLocationListenerRegistered = false
|
||||||
|
LogHelper.v(TAG, "Removed GPS location listener.")
|
||||||
|
} else {
|
||||||
|
LogHelper.w(TAG, "Unable to remove GPS location listener. Location permission is needed.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Adds location listeners to location manager */
|
||||||
|
fun removeNetworkLocationListener()
|
||||||
|
{
|
||||||
|
if (ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) == PackageManager.PERMISSION_GRANTED) {
|
||||||
|
locationManager.removeUpdates(networkLocationListener)
|
||||||
|
networkLocationListenerRegistered = false
|
||||||
|
LogHelper.v(TAG, "Removed Network location listener.")
|
||||||
|
} else {
|
||||||
|
LogHelper.w(TAG, "Unable to remove Network location listener. Location permission is needed.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Resume tracking after stop/pause */
|
||||||
|
fun resumeTracking()
|
||||||
|
{
|
||||||
|
// load temp track - returns an empty track if there is no temp file.
|
||||||
|
track = load_temp_track(this)
|
||||||
|
// try to mark last waypoint as stopover
|
||||||
|
if (track.wayPoints.size > 0) {
|
||||||
|
val lastWayPointIndex = track.wayPoints.size - 1
|
||||||
|
track.wayPoints[lastWayPointIndex].isStopOver = true
|
||||||
|
}
|
||||||
|
resumed = true
|
||||||
|
// calculate length of recording break
|
||||||
|
track.recordingPaused += TrackHelper.calculateDurationOfPause(track.recordingStop)
|
||||||
|
startTracking(newTrack = false)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun startStepCounter()
|
||||||
|
{
|
||||||
|
val stepCounterAvailable = sensorManager.registerListener(this, sensorManager.getDefaultSensor(Sensor.TYPE_STEP_COUNTER), SensorManager.SENSOR_DELAY_UI)
|
||||||
|
if (!stepCounterAvailable) {
|
||||||
|
LogHelper.w(TAG, "Pedometer sensor not available.")
|
||||||
|
track.stepCount = -1f
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun startTracking(newTrack: Boolean = true)
|
||||||
|
{
|
||||||
|
addGpsLocationListener()
|
||||||
|
addNetworkLocationListener()
|
||||||
|
// set up new track
|
||||||
|
if (newTrack) {
|
||||||
|
track = Track()
|
||||||
|
resumed = false
|
||||||
|
stepCountOffset = 0f
|
||||||
|
}
|
||||||
|
trackingState = Keys.STATE_TRACKING_ACTIVE
|
||||||
|
PreferencesHelper.saveTrackingState(trackingState)
|
||||||
|
startStepCounter()
|
||||||
|
handler.postDelayed(periodicTrackUpdate, 0)
|
||||||
|
startForeground(Keys.TRACKER_SERVICE_NOTIFICATION_ID, displayNotification())
|
||||||
|
}
|
||||||
|
|
||||||
|
fun stopTracking()
|
||||||
|
{
|
||||||
|
track.recordingStop = GregorianCalendar.getInstance().time
|
||||||
|
val context: Context = this
|
||||||
|
CoroutineScope(IO).launch { track.save_temp_suspended(context) }
|
||||||
|
|
||||||
|
trackingState = Keys.STATE_TRACKING_PAUSED
|
||||||
|
PreferencesHelper.saveTrackingState(trackingState)
|
||||||
|
|
||||||
|
altitudeValues.reset()
|
||||||
|
|
||||||
|
sensorManager.unregisterListener(this)
|
||||||
|
handler.removeCallbacks(periodicTrackUpdate)
|
||||||
|
|
||||||
|
displayNotification()
|
||||||
|
stopForeground(false)
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Defines the listener for changes in shared preferences
|
* Defines the listener for changes in shared preferences
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue