/*** Copyright (c) 2013-2015 CommonsWare, LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Covered in detail in the book _The Busy Coder's Guide to Android Development_ https://commonsware.com/Android */ package com.commonsware.android.antidoze; import android.app.Notification; import android.app.PendingIntent; import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.os.PowerManager; import android.support.v4.app.NotificationCompat; import android.util.Log; import org.greenrobot.eventbus.EventBus; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStreamWriter; import java.io.Writer; import java.util.Random; import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.TimeUnit; public class ScheduledService extends Service implements Runnable { private static int NOTIFY_ID=1337; private Random rng=new Random(); private ScheduledExecutorService sched= Executors.newSingleThreadScheduledExecutor(); private PowerManager.WakeLock wakeLock; private File log; @Override public void onCreate() { super.onCreate(); PowerManager mgr=(PowerManager)getSystemService(POWER_SERVICE); wakeLock=mgr.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, getClass().getSimpleName()); wakeLock.acquire(); if (BuildConfig.IS_FOREGROUND) { foregroundify(); } log=new File(getExternalFilesDir(null), "antidoze-log.txt"); log.getParentFile().mkdirs(); sched.scheduleAtFixedRate(this, 0, 15, TimeUnit.SECONDS); } @Override public void run() { RandomEvent event=new RandomEvent(rng.nextInt()); EventBus.getDefault().post(event); append(log, event); } @Override public void onDestroy() { sched.shutdownNow(); wakeLock.release(); stopForeground(true); super.onDestroy(); } @Override public IBinder onBind(Intent intent) { throw new IllegalStateException("Go away"); } private void foregroundify() { NotificationCompat.Builder b= new NotificationCompat.Builder(this); Intent iActivity=new Intent(this, EventDemoActivity.class); PendingIntent piActivity= PendingIntent.getActivity(this, 0, iActivity, 0); Intent iReceiver=new Intent(this, StopReceiver.class); PendingIntent piReceiver= PendingIntent.getBroadcast(this, 0, iReceiver, 0); b.setAutoCancel(true) .setDefaults(Notification.DEFAULT_ALL) .setContentTitle(getString(R.string.app_name)) .setContentIntent(piActivity) .setSmallIcon(R.drawable.ic_launcher) .setTicker(getString(R.string.app_name)) .addAction(R.drawable.ic_stop_white_24dp, getString(R.string.notif_stop), piReceiver); startForeground(NOTIFY_ID, b.build()); } private void append(File f, RandomEvent event) { try { FileOutputStream fos=new FileOutputStream(f, true); Writer osw=new OutputStreamWriter(fos); osw.write(event.when.toString()); osw.write(" : "); osw.write(Integer.toHexString(event.value)); osw.write('\n'); osw.flush(); fos.flush(); fos.getFD().sync(); fos.close(); Log.d(getClass().getSimpleName(), "logged to "+f.getAbsolutePath()); } catch (IOException e) { Log.e(getClass().getSimpleName(), "Exception writing to file", e); } } }