-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPostureService.java
331 lines (265 loc) · 11.6 KB
/
PostureService.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
package com.slouchieteam.slouchie;
import android.app.Notification;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.graphics.Color;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import android.os.CountDownTimer;
import android.os.Handler;
import android.os.IBinder;
import android.os.PowerManager;
import android.os.Vibrator;
import android.support.v7.app.NotificationCompat;
import android.hardware.Sensor;
import javax.vecmath.Vector3f;
public class PostureService extends Service {
//runnable delay to aviod notification and ui lag
int startuptime = 2000;
Vibrator vibrator;
Handler vibrationhandler;
PowerManager powerManager;
PowerManager.WakeLock slouchie_wakelock;
//static service startup distinctions
public static int intentstartid = 0;
public static int intentresetid = 8452 + 1;
public static int intentpauseid = 8452 + 2;
public static int intentexitid = 8452 + 3;
public int resettime = 10000; //time delay to allow user to put phone in his pocket
public int resetsteptime = 1000; //notification update time
int mesuresoutsiderange = 0; //used to speed up runnable when alerting user and to simulate vibration patterns
float borderangle = 12; //maximal deviation angle, user configurable
public static String PACKAGE_NAME;
Notification posturenotification;
int countdown;
NotificationCompat.Action pauseaction;
Sensor gravitysensor;
SensorManager gravitysensormanager;
boolean resettrackingtakemesurement;
boolean trackingrunning = false;
boolean pausetracking = false;
boolean strongvibration = false;
float angle; //current read angle
//vectors
Vector3f gravityreferencevalues = new Vector3f(0, 1, 0);
Vector3f gravityvalues = new Vector3f(0, 1, 0);
@Override
public void onCreate() {
//SETS UP VARIABLES
//gets package name
PACKAGE_NAME = getApplicationContext().getPackageName();
//vibration
vibrationhandler = new Handler();
vibrator = (Vibrator) getSystemService(VIBRATOR_SERVICE);
//wakelock
powerManager = (PowerManager) getSystemService(POWER_SERVICE);
slouchie_wakelock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "Slouchie_service_wakelock");
//gravity sensor
gravitysensormanager = (SensorManager) getSystemService(Context.SENSOR_SERVICE);
gravitysensor = gravitysensormanager.getDefaultSensor(Sensor.TYPE_GRAVITY);
gravitysensormanager.registerListener(gravitysensorlistener, gravitysensor, SensorManager.SENSOR_DELAY_NORMAL);
//reading app preferences
readpreferencesandapply();
super.onCreate();
}
void readpreferencesandapply() {
borderangle = (float) getSharedPreferences(getPackageName(), MODE_PRIVATE).getInt("angle", 12);
strongvibration = getSharedPreferences(getPackageName(), MODE_PRIVATE).getBoolean("strongvibration", false);
}
private void goforeground() {
//CREATES NOTIFICATION
//CREATES NOTIFICATION
Intent openappintent = new Intent(this, MainActivity.class);
PendingIntent openapppendingIntent = PendingIntent.getActivity(this, 0, openappintent, 0);
Intent resettrackingserviceintent = new Intent(this, PostureService.class);
resettrackingserviceintent.putExtra(PACKAGE_NAME + ".myaction", intentresetid);
PendingIntent resettrackingpendingIntent = PendingIntent.getService(this, 56, resettrackingserviceintent, PendingIntent.FLAG_UPDATE_CURRENT);
Intent pauseserviceintent = new Intent(this, PostureService.class);
pauseserviceintent.putExtra(PACKAGE_NAME + ".myaction", intentpauseid);
PendingIntent pausependingpendingIntent = PendingIntent.getService(this, 43, pauseserviceintent, PendingIntent.FLAG_UPDATE_CURRENT);
Intent exitserviceintent = new Intent(this, PostureService.class);
exitserviceintent.putExtra(PACKAGE_NAME + ".myaction", intentexitid);
PendingIntent exitpendingpendingIntent = PendingIntent.getService(this, 54, exitserviceintent, PendingIntent.FLAG_UPDATE_CURRENT);
NotificationCompat.Builder builder = new NotificationCompat.Builder(this.getBaseContext());
if (!pausetracking) {
builder.setContentTitle(getString(R.string.slouchierunning));
pauseaction = new NotificationCompat.Action(R.drawable.ic_pause_circle_outline_black_24dp, getString(R.string.pause), pausependingpendingIntent);
} else {
pauseaction = new NotificationCompat.Action(R.drawable.ic_pause_circle_filled_black_24dp, getString(R.string.paused), pausependingpendingIntent);
builder.setContentTitle(getString(R.string.slouchiepaused));
}
builder
.setColor(Color.rgb(43, 169, 224))
.setSmallIcon(R.drawable.notification_icon)
.setContentIntent(openapppendingIntent);
if (countdown == 0) {
builder.setPriority(Notification.PRIORITY_DEFAULT);
builder
.addAction(R.drawable.ic_refresh_black_24dp, getString(R.string.reset), resettrackingpendingIntent)
.addAction(pauseaction)
.addAction(R.drawable.ic_highlight_off_black_24dp, getString(R.string.exit), exitpendingpendingIntent);
}
if (countdown > 0 && !pausetracking) {
builder.setPriority(Notification.PRIORITY_HIGH)
.setVibrate(new long[50]);
builder.setContentText(getString(R.string.situpright) + " " + String.valueOf(countdown) + " " + getString(R.string.seconds))
.setProgress(resettime / resetsteptime, resettime / resetsteptime - countdown, false)
.setContentTitle(getString(R.string.slouchiestarting));
}
posturenotification = builder.build();
startForeground(55, posturenotification);
}
@Override
public void onDestroy() {
cleanup();
super.onDestroy();
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
//DOES ACTION DEPENDING ON CALL TYPE
int intentactionflag = 0;
//gets call type
if (!(intent == null)) {
intentactionflag = intent.getIntExtra(PACKAGE_NAME + ".myaction", 0);
}
//tracking starting or restarting
if (intentactionflag == intentstartid || intentactionflag == intentresetid) {
// if (intentactionflag == intentstartid) {
// }
begintracking();
}
if (intentactionflag == intentpauseid && countdown == 0) {
pausetracking = !pausetracking;
if (!pausetracking) {
begintracking();
} else {
endtracking();
}
}
if (intentactionflag == intentexitid) {
cleanup();
}
goforeground();
return super.onStartCommand(intent, flags, startId);
}
@Override
public IBinder onBind(Intent intent) {
// TODO: Return the communication channel to the service.
throw new UnsupportedOperationException("Not yet implemented");
}
public void cleanup() {
//CLEANS UP
//releases wakelock, runnable
endtracking();
//sends data to UI
MainActivity.trackingservicerunning = false;
MainActivity.servicestopped();
//stops
stopSelf();
}
public void endtracking() {
if (slouchie_wakelock.isHeld()) {
slouchie_wakelock.release();
}
//RELEASES WAKELOCK, ENDS VIBRATION RUNNABLE HANDLER
vibrationhandler.removeCallbacks(vibrationrunnable);
}
public void begintracking() {
pausetracking = false;
if (!slouchie_wakelock.isHeld()) {
slouchie_wakelock.acquire();
}
vibrationhandler.postDelayed(vibrationrunnable, startuptime);
trackingrunning = false;
countdown = resettime / resetsteptime;
new CountDownTimer(resettime, resetsteptime) {
@Override
public void onFinish() {
MainActivity.trackingservicerunning = true;
resettrackingtakemesurement = true;
trackingrunning = true;
countdown = 0;
goforeground();
vibrator.vibrate(100);
}
@Override
public void onTick(long millisUntilFinished) {
countdown--;
goforeground();
}
}.start();
}
SensorEventListener gravitysensorlistener = new SensorEventListener() {
@Override
public void onSensorChanged(SensorEvent event) {
if (trackingrunning && !pausetracking) {
if (resettrackingtakemesurement) {
gravityreferencevalues = new Vector3f(event.values.clone());
}
gravityvalues = new Vector3f(event.values.clone());
angle = (float) (gravityvalues.angle(gravityreferencevalues) / Math.PI * 180);
//miejsce na logikę usredniajacą
resettrackingtakemesurement = false;
}
}
@Override
public void onAccuracyChanged(Sensor sensor, int accuracy) {
}
};
Runnable vibrationrunnable = new Runnable() {
@Override
public void run() {
int multiplier = 3;
if (trackingrunning && !pausetracking) {
if (angle < borderangle && mesuresoutsiderange > 0) {
mesuresoutsiderange = -15;
}
if (angle > borderangle) {
if (mesuresoutsiderange < 0) {
mesuresoutsiderange = 0;
}
mesuresoutsiderange++;
if (mesuresoutsiderange > 0 * multiplier && mesuresoutsiderange < 12 * multiplier) {
if ((mesuresoutsiderange - 1) % 3 <= 1) {
if (strongvibration) {
vibrator.vibrate(300);
} else {
vibrator.vibrate(200);
}
}
}
if (mesuresoutsiderange > 12 * multiplier && mesuresoutsiderange < 43 * multiplier) {
if ((mesuresoutsiderange - 1) % 4 <= 1) {
if (strongvibration) {
vibrator.vibrate(400);
} else {
vibrator.vibrate(300);
}
}
}
if (mesuresoutsiderange > 43 * multiplier && mesuresoutsiderange < 45 * multiplier) {
vibrator.vibrate(700);
}
if (mesuresoutsiderange > 45 * multiplier) {
pausetracking = true;
goforeground();
endtracking();
return;
}
}
if (mesuresoutsiderange < 0) {
mesuresoutsiderange++;
}
}
if (mesuresoutsiderange == 0 || pausetracking) {
vibrationhandler.postDelayed(this, 1300);
} else {
vibrationhandler.postDelayed(this, 700);
}
readpreferencesandapply();
}
};
}