ca.tbcn.greenp.GreenParkingApp.java Source code

Java tutorial

Introduction

Here is the source code for ca.tbcn.greenp.GreenParkingApp.java

Source

/*
Copyright (c) 2011 Adam Wisniewski (http://adamw523.com)
    
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
    
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
    
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
 */

package ca.tbcn.greenp;

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;

import org.apache.http.client.ClientProtocolException;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import android.content.Context;
import android.content.SharedPreferences;
import android.util.Log;

public class GreenParkingApp {
    public static final String TAG = "GreenParkingApp";
    private static ArrayList<Carpark> carparks = null;
    private static String JSON_FILE_NAME = "carparks.json";
    public static final String PREFS_NAME = "GreenParkingPrefs";
    public static final String LAST_SYNC_PREF = "lastSyncStamp";
    public static final String JSON_URL = "http://api.scraperwiki.com/api/1.0/datastore/sqlite?format=jsondict&name=greenp_carparks&query=select%20*%20from%20swdata%20limit%20500";

    public static ArrayList<Carpark> getCarparks(Context context) {
        if (carparks == null) {
            loadCarparks(context);
        }

        return carparks;
    }

    /**
     * Load carparks by reading JSON, then populating carparks
     * 
     * @param context
     * @return
     */
    private static void loadCarparks(Context context) {
        Log.i(TAG, "Loading JSON");
        // Get the JSON
        JSONObject json = GreenParkingApp.getCarparksJson(context);

        Log.i(TAG, "Populating carparksArray");

        // Parse the JSON
        carparks = new ArrayList<Carpark>();
        if (json != null) {
            try {
                JSONArray carparksJson = json.getJSONArray("carparks");
                for (int i = 0; i < carparksJson.length(); i++) {
                    JSONObject carpark = carparksJson.getJSONObject(i);
                    carparks.add(Carpark.fromJSON(carpark));
                }
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
        Log.i(TAG, "Done populating carparks");
    }

    /**
     * Load JSONObject from json file
     * 
     * @param context
     * @return
     */
    public static JSONObject getCarparksJson(Context context) {
        InputStream is = null;
        String jsonString = null;
        JSONObject json = null;

        try {

            jsonString = "{\"carparks\": " + getJsonFileContents(context) + "}";
            json = new JSONObject(jsonString);

        } catch (IOException e) {
            Log.e(TAG, e.getMessage());
            e.printStackTrace();
        } catch (JSONException e) {
            Log.e(TAG, e.getMessage());
            e.printStackTrace();
        } finally {
            if (is != null) {
                try {
                    is.close();
                } catch (Exception e) {
                    Log.e(TAG, e.getMessage());
                }
            }
        }

        return json;
    }

    /**
     * Load json from stored file, create file if it's not there
     * 
     * @param context
     * @return
     * @throws IOException
     */
    public static String getJsonFileContents(Context context) throws IOException {
        if (!Util.fileExists(context, JSON_FILE_NAME)) {
            seedJsonFile(context);
        }

        FileInputStream fis = context.openFileInput(JSON_FILE_NAME);

        String contents = Util.inputStreamToString(fis);
        fis.close();

        return contents;
    }

    public static void seedJsonFile(Context context) throws IOException {
        // read contents of seed file
        Log.d(TAG, "Seeding carparks");
        InputStream is = context.getResources().openRawResource(R.raw.carparks);
        String seedContents = Util.inputStreamToString(is);

        updateJsonFile(context, seedContents);
    }

    public static void updateJsonFile(Context context, String contents) throws IOException {
        // write out to local file
        FileOutputStream fos = context.openFileOutput(JSON_FILE_NAME, Context.MODE_PRIVATE);
        fos.write(contents.getBytes());
        fos.close();
    }

    public static Long getLastSyncStamp(Context context) {
        SharedPreferences settings = context.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE);
        return settings.getLong(LAST_SYNC_PREF, 0);
    }

    public static void updateLastSyncStamp(Context context) {
        SharedPreferences settings = context.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE);
        SharedPreferences.Editor editor = settings.edit();
        editor.putLong(LAST_SYNC_PREF, System.currentTimeMillis());
    }

    /**
     * Refresh carparks from JSON on the web
     * 
     * @param context
     */
    public static String fetchCarparksFromHWeb(Context context) throws ClientProtocolException, IOException {
        String s = Util.httpGet(GreenParkingApp.JSON_URL);
        return s;
    }
}