Android Open Source - worldclockwidget Woeid Cache






From Project

Back to project page worldclockwidget.

License

The source code is released under:

GNU General Public License

If you think the Android project worldclockwidget listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2012 - 2014  Armin Hberling
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version./*from   w  ww.j av  a2 s.  c  o  m*/
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
 */

package ch.corten.aha.worldclock.weather.yahoo;

import java.io.File;

import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;

class WoeidCache {

    private static final String TABLE = "woeid_cache";
    private static final int VERSION = 3;
    private final Storage mStorage;

    public WoeidCache(Context context) {
        mStorage = new Storage(context);
    }

    public String get(double latitude, double longitude) {
        SQLiteDatabase db = mStorage.getDatabase();
        String[] selectionArgs = new String[] {Double.toString(latitude), Double.toString(longitude)};
        Cursor c = db.query(TABLE, new String[] {"woeid"}, "latitude = ? and longitude = ?", selectionArgs, null, null, null);
        try {
            if (c.moveToFirst()) {
                final String woeid = c.getString(c.getColumnIndex("woeid"));
                return PlaceFinderService.fixInvalidWoeids(latitude, longitude, woeid);
            } else {
                return null;
            }
        } finally {
            if (c != null) {
                c.close();
            }
        }
    }

    public void put(double latitude, double longitude, String woeid) {
        SQLiteDatabase db = mStorage.getDatabase();
        ContentValues values = new ContentValues();
        values.put("woeid", woeid);
        if (get(latitude, longitude) != null) {
            String[] whereArgs = new String[] {Double.toString(latitude), Double.toString(longitude)};
            db.update(TABLE, values, "latitude = ? and longitude = ?", whereArgs);
        } else {
            values.put("latitude", latitude);
            values.put("longitude", longitude);
            db.insert(TABLE, null, values);
        }
    }

    public void close() {
        mStorage.close();
    }

    private static class Storage {
        private static final String FILENAME = "woeid";

        private static final String DATABASE_CREATE =
                "create table woeid_cache (latitude real not null, "
                        + "longitude real not null, "
                        + "woeid text not null);";
        private static final String CLEAR_DATABASE = "delete from woeid_cache;";

        private SQLiteDatabase mDatabase;
        private final Context mContext;

        public Storage(Context context) {
            mContext = context;
        }

        public synchronized SQLiteDatabase getDatabase() {
            if (mDatabase != null && !mDatabase.isOpen()) {
                mDatabase = null;
            }

            if (mDatabase == null) {
                String path = mContext.getCacheDir().getPath() + File.separator + FILENAME;
                SQLiteDatabase db = SQLiteDatabase.openOrCreateDatabase(path, null);
                if (db.getVersion() == 0) {
                    onCreate(db);
                    db.setVersion(VERSION);
                } else if (db.getVersion() < VERSION) {
                    onUpdate(db, db.getVersion(), VERSION);
                    db.setVersion(VERSION);
                }
                mDatabase = db;
            }
            return mDatabase;
        }

        public synchronized void close() {
            if (mDatabase != null && mDatabase.isOpen()) {
                mDatabase.close();
                mDatabase = null;
            }
        }

        protected void onCreate(SQLiteDatabase db) {
            db.execSQL(DATABASE_CREATE);
        }

        public void onUpdate(SQLiteDatabase db, int version2, int version3) {
            db.execSQL(CLEAR_DATABASE);
        }
    }
}




Java Source Code List

ch.corten.aha.preference.AboutPreference.java
ch.corten.aha.preference.MailPreference.java
ch.corten.aha.widget.CapitalizingTextView.java
ch.corten.aha.widget.CheckableFrameLayout.java
ch.corten.aha.widget.DigitalClock.java
ch.corten.aha.widget.PauseListener.java
ch.corten.aha.widget.PauseSource.java
ch.corten.aha.widget.RemoteViewUtil.java
ch.corten.aha.worldclock.AbstractWeatherWidgetProvider.java
ch.corten.aha.worldclock.AddClockActivity.java
ch.corten.aha.worldclock.BindHelper.java
ch.corten.aha.worldclock.ClockWidgetProvider.java
ch.corten.aha.worldclock.ClockWidgetSystemReceiver.java
ch.corten.aha.worldclock.EditClockActivity.java
ch.corten.aha.worldclock.MyApp.java
ch.corten.aha.worldclock.SpeedFormat.java
ch.corten.aha.worldclock.TimeZoneInfo.java
ch.corten.aha.worldclock.UpdateWeatherService.java
ch.corten.aha.worldclock.WeatherIcons.java
ch.corten.aha.worldclock.WeatherWidgetProvider.java
ch.corten.aha.worldclock.WeatherWidgetService.java
ch.corten.aha.worldclock.WeatherWidget.java
ch.corten.aha.worldclock.WorldClockActivity.java
ch.corten.aha.worldclock.WorldClockPreferenceActivity.java
ch.corten.aha.worldclock.WorldClockWidgetProvider.java
ch.corten.aha.worldclock.WorldClockWidgetService.java
ch.corten.aha.worldclock.compatibility.CompatWeatherWidgetProvider.java
ch.corten.aha.worldclock.compatibility.CompatWeatherWidgetService.java
ch.corten.aha.worldclock.compatibility.WeatherWidgetProvider2x1.java
ch.corten.aha.worldclock.compatibility.WeatherWidgetProvider2x2.java
ch.corten.aha.worldclock.compatibility.WeatherWidgetProvider2x3.java
ch.corten.aha.worldclock.compatibility.WeatherWidgetProvider2x4.java
ch.corten.aha.worldclock.compatibility.WeatherWidgetProvider4x1.java
ch.corten.aha.worldclock.compatibility.WeatherWidgetProvider4x2.java
ch.corten.aha.worldclock.compatibility.WeatherWidgetProvider4x3.java
ch.corten.aha.worldclock.compatibility.WeatherWidgetProvider4x4.java
ch.corten.aha.worldclock.provider.CityDatabase.java
ch.corten.aha.worldclock.provider.WorldClockContentProvider.java
ch.corten.aha.worldclock.provider.WorldClockDatabase.java
ch.corten.aha.worldclock.provider.WorldClock.java
ch.corten.aha.worldclock.weather.AbstractObservation.java
ch.corten.aha.worldclock.weather.AndroidWeatherServiceFactory.java
ch.corten.aha.worldclock.weather.WeatherObservation.java
ch.corten.aha.worldclock.weather.WeatherServiceFactory.java
ch.corten.aha.worldclock.weather.WeatherService.java
ch.corten.aha.worldclock.weather.msn.MsnWeatherService.java
ch.corten.aha.worldclock.weather.owm.OwmWeatherService.java
ch.corten.aha.worldclock.weather.owm.WeatherConditionPriority.java
ch.corten.aha.worldclock.weather.owm.WeatherConditionType.java
ch.corten.aha.worldclock.weather.yahoo.PlaceFinderService.java
ch.corten.aha.worldclock.weather.yahoo.WoeidCache.java
ch.corten.aha.worldclock.weather.yahoo.YahooWeatherService.java
net.margaritov.preference.colorpicker.AlphaPatternDrawable.java
net.margaritov.preference.colorpicker.ColorPickerDialog.java
net.margaritov.preference.colorpicker.ColorPickerPanelView.java
net.margaritov.preference.colorpicker.ColorPickerPreference.java
net.margaritov.preference.colorpicker.ColorPickerView.java