com.c4fcm.actionpath.MainActivity.java Source code

Java tutorial

Introduction

Here is the source code for com.c4fcm.actionpath.MainActivity.java

Source

/*
 * Copyright (C) 2013 The Android Open Source Project
 *
 * 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.
 */

package com.c4fcm.actionpath;

import android.app.Activity;
import android.app.Dialog;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Bundle;
import android.support.v4.app.DialogFragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.content.LocalBroadcastManager;
import android.text.TextUtils;
import android.text.format.DateUtils;
import android.util.Log;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
import android.widget.Toast;

import com.c4fcm.actionpath.GeofenceUtils.REMOVE_TYPE;
import com.c4fcm.actionpath.GeofenceUtils.REQUEST_TYPE;

import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.GooglePlayServicesUtil;
import com.google.android.gms.location.Geofence;

import java.text.DecimalFormat;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

/**
 * UI handler for the Location Services Geofence sample app.
 * Allow input of latitude, longitude, and radius for two geofences.
 * When registering geofences, check input and then send the geofences to Location Services.
 * Also allow removing either one of or both of the geofences.
 * The menu allows you to clear the screen or delete the geofences stored in persistent memory.
 */
public class MainActivity extends FragmentActivity {
    /*
     * Use to set an expiration time for a geofence. After this amount
     * of time Location Services will stop tracking the geofence.
     * Remember to unregister a geofence when you're finished with it.
     * Otherwise, your app will use up battery. To continue monitoring
     * a geofence indefinitely, set the expiration time to
     * Geofence#NEVER_EXPIRE.
     */
    private static final long GEOFENCE_EXPIRATION_IN_HOURS = 168;
    private static final long GEOFENCE_EXPIRATION_IN_MILLISECONDS = GEOFENCE_EXPIRATION_IN_HOURS
            * DateUtils.HOUR_IN_MILLIS;

    // Store the current request
    private REQUEST_TYPE mRequestType;

    // Store the current type of removal
    private REMOVE_TYPE mRemoveType;

    // Persistent storage for geofences
    private SurveyGeofenceStore mPrefs;

    // Store a list of geofences to add
    List<Geofence> mCurrentGeofences;

    // Add geofences handler
    private GeofenceRequester mGeofenceRequester;
    // Remove geofences handler
    private GeofenceRemover mGeofenceRemover;

    // list of geofences currently active
    private ArrayList<SurveyGeofence> mUIGeofences;

    // decimal formats for latitude, longitude, and radius
    private DecimalFormat mLatLngFormat;
    private DecimalFormat mRadiusFormat;

    /*
     * An instance of an inner class that receives broadcasts from listeners and from the
     * IntentService that receives geofence transition events
     */
    private GeofenceSampleReceiver mBroadcastReceiver;
    // An intent filter for the broadcast receiver
    private IntentFilter mIntentFilter;

    // broadcast intent action to receive calls from SynchronizeDataService
    private SynchronizeDataReceiver mSyncDataReceiver;
    private IntentFilter mSyncIntentFilter;

    // Store the list of geofences to remove
    private List<String> mGeofenceIdsToRemove;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        // Set the pattern for the latitude and longitude format
        String latLngPattern = getString(R.string.lat_lng_pattern);

        // Set the format for latitude and longitude
        mLatLngFormat = new DecimalFormat(latLngPattern);

        // Localize the format
        mLatLngFormat.applyLocalizedPattern(mLatLngFormat.toLocalizedPattern());

        // Set the pattern for the radius format
        String radiusPattern = getString(R.string.radius_pattern);

        // Set the format for the radius
        mRadiusFormat = new DecimalFormat(radiusPattern);

        // Localize the pattern
        mRadiusFormat.applyLocalizedPattern(mRadiusFormat.toLocalizedPattern());

        // Create a new broadcast receiver to receive updates from the listeners and service
        mBroadcastReceiver = new GeofenceSampleReceiver();

        // Create a new broadcast receiver to receive updates from SynchronizeDataService
        mSyncDataReceiver = new SynchronizeDataReceiver();

        // Create an intent filter for the broadcast receiver
        mIntentFilter = new IntentFilter();

        // Action for broadcast Intents that report successful addition of geofences
        mIntentFilter.addAction(GeofenceUtils.ACTION_GEOFENCES_ADDED);

        // Action for broadcast Intents that report successful removal of geofences
        mIntentFilter.addAction(GeofenceUtils.ACTION_GEOFENCES_REMOVED);

        // Action for broadcast Intents containing various types of geofencing errors
        mIntentFilter.addAction(GeofenceUtils.ACTION_GEOFENCE_ERROR);

        // All Location Services sample apps use this category
        mIntentFilter.addCategory(GeofenceUtils.CATEGORY_LOCATION_SERVICES);

        mSyncIntentFilter = new IntentFilter();
        mSyncIntentFilter.addAction(GeofenceUtils.UPDATE_GEOFENCES);

        // Instantiate a new geofence storage area
        Context ctx = this.getApplicationContext();
        Log.i("MainActivityContext", ctx.toString());
        mPrefs = new SurveyGeofenceStore(ctx);

        // Instantiate the current List of geofences
        mCurrentGeofences = new ArrayList<Geofence>();

        // Instantiate a Geofence requester
        mGeofenceRequester = new GeofenceRequester(this);

        // Instantiate a Geofence remover
        mGeofenceRemover = new GeofenceRemover(this);

        //instantiate list of geofences
        mUIGeofences = new ArrayList<SurveyGeofence>();

        //  addGeoFences();

        //disallow the title bar from appearing
        this.requestWindowFeature(Window.FEATURE_NO_TITLE);

        //Remove notification bar
        //this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

        // Attach to the main UI
        setContentView(R.layout.activity_main);

        Log.i("MainActivity.OnCreate", "synchronizeDataService");
        synchronizeDataService();

    }

    public void activateDownloadedGeofences(View view) {
        Log.i("MainActivity", "launching data download intent");
        Log.i("MAINmPrefs", Integer.toString(mPrefs.getGeofenceStoreKeys().size()));
        //remove geofences from geofence system

        addGeoFences();

        // CREATE A LOCATION LOG
        Intent loggerServiceIntent = new Intent(this, LoggerService.class);
        loggerServiceIntent.putExtra("logType", "actionLocation");
        loggerServiceIntent.putExtra("action", "LoadedLatestActions");
        loggerServiceIntent.putExtra("data", "");
        startService(loggerServiceIntent);
    }

    public void synchronizeDataService() {
        Intent synchronizeDataIntent = new Intent(this, SynchronizeDataService.class);
        startService(synchronizeDataIntent);
    }

    public void recordLogAction(View view) {
        /*// CREATE A NON LOCATION ACTION LOG
        //Log.i("MainActivityLoggingTask", "Created");
         Intent loggerServiceIntent = new Intent(this,LoggerService.class);
         loggerServiceIntent.putExtra("logType", "action");
         loggerServiceIntent.putExtra("action", "MainActivity Clicked");
         loggerServiceIntent.putExtra("data", "");
        startService(loggerServiceIntent);
            
        // CREATE A LOCATION LOG
        String[] geofenceIds = {"5","6"};
        loggerServiceIntent = new Intent(this,LoggerService.class);
        loggerServiceIntent.putExtra("logType", "location");
        loggerServiceIntent.putExtra("transitionType", "entered");
         loggerServiceIntent.putExtra("ids", geofenceIds);
        startService(loggerServiceIntent);*/
    }

    /*
     * Handle results returned to this Activity by other Activities started with
     * startActivityForResult(). In particular, the method onConnectionFailed() in
     * GeofenceRemover and GeofenceRequester may call startResolutionForResult() to
     * start an Activity that handles Google Play services problems. The result of this
     * call returns here, to onActivityResult.
     * calls
     */
    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
        // Choose what to do based on the request code
        switch (requestCode) {

        // If the request code matches the code sent in onConnectionFailed
        case GeofenceUtils.CONNECTION_FAILURE_RESOLUTION_REQUEST:

            switch (resultCode) {
            // If Google Play services resolved the problem
            case Activity.RESULT_OK:

                // If the request was to add geofences
                if (GeofenceUtils.REQUEST_TYPE.ADD == mRequestType) {

                    // Toggle the request flag and send a new request
                    mGeofenceRequester.setInProgressFlag(false);

                    // Restart the process of adding the current geofences
                    mGeofenceRequester.addGeofences(mCurrentGeofences);

                    // If the request was to remove geofences
                } else if (GeofenceUtils.REQUEST_TYPE.REMOVE == mRequestType) {

                    // Toggle the removal flag and send a new removal request
                    mGeofenceRemover.setInProgressFlag(false);

                    // If the removal was by Intent
                    if (GeofenceUtils.REMOVE_TYPE.INTENT == mRemoveType) {

                        // Restart the removal of all geofences for the PendingIntent
                        mGeofenceRemover.removeGeofencesByIntent(mGeofenceRequester.getRequestPendingIntent());

                        // If the removal was by a List of geofence IDs
                    } else {

                        // Restart the removal of the geofence list
                        mGeofenceRemover.removeGeofencesById(mGeofenceIdsToRemove);
                    }
                }
                break;

            // If any other result was returned by Google Play services
            default:

                // Report that Google Play services was unable to resolve the problem.
                Log.d(GeofenceUtils.APPTAG, getString(R.string.no_resolution));
            }

            // If any other request code was received
        default:
            // Report that this Activity received an unknown requestCode
            Log.d(GeofenceUtils.APPTAG, getString(R.string.unknown_activity_request_code, requestCode));

            break;
        }
    }

    /*
     * Whenever the Activity resumes, reconnect the client to Location
     * Services and reload the last geofences that were set
     */
    @Override
    protected void onResume() {
        super.onResume();
        // Register the broadcast receiver to receive status updates
        LocalBroadcastManager.getInstance(this).registerReceiver(mBroadcastReceiver, mIntentFilter);
        LocalBroadcastManager.getInstance(this).registerReceiver(mSyncDataReceiver, mSyncIntentFilter);

        /*
         * Get existing geofences from the latitude, longitude, and
         * radius values stored in SharedPreferences. If no values
         * exist, null is returned.
         */

        mUIGeofences.clear();
        for (String s : mPrefs.getGeofenceStoreKeys()) {
            mUIGeofences.add(mPrefs.getGeofence(s));
        }

    }

    /*
     * Inflate the app menu
     */
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        MenuInflater inflater = getMenuInflater();
        inflater.inflate(R.menu.menu, menu);
        return true;

    }

    /*
     * Save the current geofence settings in SharedPreferences.
     */
    @Override
    protected void onPause() {
        super.onPause();

        for (SurveyGeofence g : mUIGeofences) {
            mPrefs.setGeofence(g.getId(), g);
        }

    }

    /**
     * Verify that Google Play services is available before making a request.
     *
     * @return true if Google Play services is available, otherwise false
     */
    private boolean servicesConnected() {

        // Check that Google Play services is available
        int resultCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);

        // If Google Play services is available
        if (ConnectionResult.SUCCESS == resultCode) {

            // In debug mode, log the status
            Log.d(GeofenceUtils.APPTAG, getString(R.string.play_services_available));

            // Continue
            return true;

            // Google Play services was not available for some reason
        } else {

            // Display an error dialog
            Dialog dialog = GooglePlayServicesUtil.getErrorDialog(resultCode, this, 0);
            if (dialog != null) {
                ErrorDialogFragment errorFragment = new ErrorDialogFragment();
                errorFragment.setDialog(dialog);
                errorFragment.show(getSupportFragmentManager(), GeofenceUtils.APPTAG);
            }
            return false;
        }
    }

    /**
     * Called when the user clicks the "Remove geofences" button
     *
     * @param view The view that triggered this callback
     */
    public void onUnregisterByPendingIntentClicked(View view) {
        /*
         * Remove all geofences set by this app. To do this, get the
         * PendingIntent that was added when the geofences were added
         * and use it as an argument to removeGeofences(). The removal
         * happens asynchronously; Location Services calls
         * onRemoveGeofencesByPendingIntentResult() (implemented in
         * the current Activity) when the removal is done
         */

        /*
         * Record the removal as remove by Intent. If a connection error occurs,
         * the app can automatically restart the removal if Google Play services
         * can fix the error
         */
        // Record the type of removal
        mRemoveType = GeofenceUtils.REMOVE_TYPE.INTENT;

        /*
         * Check for Google Play services. Do this after
         * setting the request type. If connecting to Google Play services
         * fails, onActivityResult is eventually called, and it needs to
         * know what type of request was in progress.
         */
        if (!servicesConnected()) {

            return;
        }

        // Try to make a removal request
        try {
            /*
             * Remove the geofences represented by the currently-active PendingIntent. If the
             * PendingIntent was removed for some reason, re-create it; since it's always
             * created with FLAG_UPDATE_CURRENT, an identical PendingIntent is always created.
             */
            mGeofenceRemover.removeGeofencesByIntent(mGeofenceRequester.getRequestPendingIntent());

        } catch (UnsupportedOperationException e) {
            // Notify user that previous request hasn't finished.
            Toast.makeText(this, R.string.remove_geofences_already_requested_error, Toast.LENGTH_LONG).show();
        }

    }

    /**
     * Called when the user clicks the "Remove geofence 1" button
     * @param view The view that triggered this callback
     */
    public void onUnregisterGeofence1Clicked(View view) {
        /*
         * Remove the geofence by creating a List of geofences to
         * remove and sending it to Location Services. The List
         * contains the id of geofence 1 ("1").
         * The removal happens asynchronously; Location Services calls
         * onRemoveGeofencesByPendingIntentResult() (implemented in
         * the current Activity) when the removal is done.
         */

        // Create a List of 1 Geofence with the ID "1" and store it in the global list
        mGeofenceIdsToRemove = Collections.singletonList("1");

        /*
         * Record the removal as remove by list. If a connection error occurs,
         * the app can automatically restart the removal if Google Play services
         * can fix the error
         */
        mRemoveType = GeofenceUtils.REMOVE_TYPE.LIST;

        /*
         * Check for Google Play services. Do this after
         * setting the request type. If connecting to Google Play services
         * fails, onActivityResult is eventually called, and it needs to
         * know what type of request was in progress.
         */
        if (!servicesConnected()) {

            return;
        }

        // Try to remove the geofence
        try {
            mGeofenceRemover.removeGeofencesById(mGeofenceIdsToRemove);

            // Catch errors with the provided geofence IDs
        } catch (IllegalArgumentException e) {
            e.printStackTrace();
        } catch (UnsupportedOperationException e) {
            // Notify user that previous request hasn't finished.
            Toast.makeText(this, R.string.remove_geofences_already_requested_error, Toast.LENGTH_LONG).show();
        }
    }

    public void removeGeofences() {

        mRequestType = GeofenceUtils.REQUEST_TYPE.REMOVE;
        if (!servicesConnected()) {
            return;
        }

        ArrayList<String> currentGeofences = new ArrayList<String>();

        for (String gKey : mPrefs.getGeofenceStoreKeys()) {
            SurveyGeofence g = mPrefs.getGeofence(gKey);
            currentGeofences.add(g.getId());
        }

        try {
            // Try to remove geofences
            mGeofenceRemover.removeGeofencesById(currentGeofences);

            // Notify user that geofence loading was successful
            Log.i("MainActivity", "Successfully removed geofences");
        } catch (UnsupportedOperationException e) {
            // Notify user that previous request hasn't finished.
            Log.i("MainActivity", "Error removing geofences");
        }

    }

    public void addGeoFences() {

        /*
         * Record the request as an ADD. If a connection error occurs,
         * the app can automatically restart the add request if Google Play services
         * can fix the error
         */
        mRequestType = GeofenceUtils.REQUEST_TYPE.ADD;

        /*
         * Check for Google Play services. Do this after
         * setting the request type. If connecting to Google Play services
         * fails, onActivityResult is eventually called, and it needs to
         * know what type of request was in progress.
         */
        if (!servicesConnected()) {

            return;
        }

        /*
         * Create a version of geofence 1 that is "flattened" into individual fields. This
         * allows it to be stored in SharedPreferences.
         * 
         * #1 --> Last lamppost before you get to medical building pass through
         */
        /*SurveyGeofence mUIGeofence1 = new SimpleGeofence(
        "surveyKey",
        Double.valueOf(42.361420),
        Double.valueOf(-71.086884),
        Float.valueOf("30.0"),
        GEOFENCE_EXPIRATION_IN_MILLISECONDS,
        // Only detect entry transitions
        Geofence.GEOFENCE_TRANSITION_ENTER | Geofence.GEOFENCE_TRANSITION_EXIT);
            
        // Store this flat version in SharedPreferences
        mPrefs.pushGeofence(mUIGeofence1);*/

        for (String gKey : mPrefs.getGeofenceStoreKeys()) {
            //Log.i("GKey",gKey);
            SurveyGeofence g = mPrefs.getGeofence(gKey);
            mCurrentGeofences.add(g.toGeofence());
        }

        if (mCurrentGeofences.size() <= 0) {
            return;
        }

        // Start the request. Fail if there's already a request in progress
        try {
            // Try to add geofences
            mGeofenceRequester.addGeofences(mCurrentGeofences);

            // Notify user that geofence loading was successful
            Toast.makeText(this, "Actions successfully loaded!", Toast.LENGTH_SHORT).show();
        } catch (UnsupportedOperationException e) {
            // Notify user that previous request hasn't finished.
            Toast.makeText(this, R.string.add_geofences_already_requested_error, Toast.LENGTH_LONG).show();
        }
    }

    /*
     * Define a broadcast receiver that receives updates from 
     * SynchronizeDataService and adds or removes geofences as needed
     */
    public class SynchronizeDataReceiver extends BroadcastReceiver {

        @Override
        public void onReceive(Context context, Intent intent) {
            if (intent.getAction().equals(GeofenceUtils.UPDATE_GEOFENCES)) {

                //TODO: delete old geofences, or only create new ones

                String serviceJsonString = intent.getStringExtra("json");
                //Log.i("SynchronizeDataReceiver",serviceJsonString);
                try {

                    // Load the JSON
                    JSONArray geofenceData = new JSONArray(serviceJsonString);

                    // if the JSON loads,  first remove current geofences from
                    // the geofence system
                    //removeGeofences(); 
                    // then clear the geofences from storage
                    //mPrefs.clearAllGeofences();

                    //once all geofences have been cleared, add new ones
                    for (int i = 0; i < geofenceData.length(); i++) {
                        JSONObject row = geofenceData.getJSONObject(i);
                        //Log.i("SurveyKeyMain",row.getString("surveyKey"));

                        //Add only unique geofences to storage
                        if (!mPrefs.surveyExists(row.getString("uniqueID"))) {
                            SurveyGeofence sg = new SurveyGeofence(row.getString("uniqueID"),
                                    row.getString("surveyKey"), row.getDouble("lat"), row.getDouble("long"),
                                    Float.valueOf(row.getString("radius")),
                                    GeofenceUtils.GEOFENCE_EXPIRATION_IN_MILLISECONDS,
                                    Geofence.GEOFENCE_TRANSITION_ENTER);//| Geofence.GEOFENCE_TRANSITION_EXIT);
                            mPrefs.pushGeofence(sg);

                            String logData = sg.getId() + ":" + sg.getUniqueID() + ":" + sg.getSurveyKey();
                            Log.i("MainActivity", "pushed geofence. logging geofence..." + logData);

                            // CREATE A LOG CONTAINING surveykey, geofence id within the app, and geofence unique ID
                            Intent loggerServiceIntent = new Intent(getApplicationContext(), LoggerService.class);
                            loggerServiceIntent.putExtra("logType", "action");
                            loggerServiceIntent.putExtra("action", "addedGeofence");
                            loggerServiceIntent.putExtra("data", logData);
                            startService(loggerServiceIntent);

                        } else {
                            Log.i("MainActivity", "declining to store a duplicate geofence");
                        }
                    }

                } catch (JSONException e) {
                    Log.i("SynchronizeDataReceiver", e.getStackTrace().toString());
                }
            }
        }
    };

    /**
     * Define a Broadcast receiver that receives updates from connection listeners and
     * the geofence transition service.
     */
    public class GeofenceSampleReceiver extends BroadcastReceiver {
        /*
         * Define the required method for broadcast receivers
         * This method is invoked when a broadcast Intent triggers the receiver
         */
        @Override
        public void onReceive(Context context, Intent intent) {

            // Check the action code and determine what to do
            String action = intent.getAction();

            // Intent contains information about errors in adding or removing geofences
            if (TextUtils.equals(action, GeofenceUtils.ACTION_GEOFENCE_ERROR)) {

                handleGeofenceError(context, intent);

                // Intent contains information about successful addition or removal of geofences
            } else if (TextUtils.equals(action, GeofenceUtils.ACTION_GEOFENCES_ADDED)
                    || TextUtils.equals(action, GeofenceUtils.ACTION_GEOFENCES_REMOVED)) {

                handleGeofenceStatus(context, intent);

                // Intent contains information about a geofence transition
            } else if (TextUtils.equals(action, GeofenceUtils.ACTION_GEOFENCE_TRANSITION)) {

                handleGeofenceTransition(context, intent);

                // The Intent contained an invalid action
            } else {
                Log.e(GeofenceUtils.APPTAG, getString(R.string.invalid_action_detail, action));
                Toast.makeText(context, R.string.invalid_action, Toast.LENGTH_LONG).show();
            }
        }

        /**
         * If you want to display a UI message about adding or removing geofences, put it here.
         *
         * @param context A Context for this component
         * @param intent The received broadcast Intent
         */
        private void handleGeofenceStatus(Context context, Intent intent) {

        }

        /**
         * Report geofence transitions to the UI
         *
         * @param context A Context for this component
         * @param intent The Intent containing the transition
         */
        private void handleGeofenceTransition(Context context, Intent intent) {
            /*
             * If you want to change the UI when a transition occurs, put the code
             * here. The current design of the app uses a notification to inform the
             * user that a transition has occurred.
             */
        }

        /**
         * Report addition or removal errors to the UI, using a Toast
         *
         * @param intent A broadcast Intent sent by ReceiveTransitionsIntentService
         */
        private void handleGeofenceError(Context context, Intent intent) {
            String msg = intent.getStringExtra(GeofenceUtils.EXTRA_GEOFENCE_STATUS);
            Log.e(GeofenceUtils.APPTAG, msg);
            Toast.makeText(context, msg, Toast.LENGTH_LONG).show();
        }
    }

    /**
     * Define a DialogFragment to display the error dialog generated in
     * showErrorDialog.
     */
    public static class ErrorDialogFragment extends DialogFragment {

        // Global field to contain the error dialog
        private Dialog mDialog;

        /**
         * Default constructor. Sets the dialog field to null
         */
        public ErrorDialogFragment() {
            super();
            mDialog = null;
        }

        /**
         * Set the dialog to display
         *
         * @param dialog An error dialog
         */
        public void setDialog(Dialog dialog) {
            mDialog = dialog;
        }

        /*
         * This method must return a Dialog to the DialogFragment.
         */
        @Override
        public Dialog onCreateDialog(Bundle savedInstanceState) {
            return mDialog;
        }
    }
}