Android Open Source - Weather-app Weather Contract






From Project

Back to project page Weather-app.

License

The source code is released under:

Apache License

If you think the Android project Weather-app 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

package app.sunshine.juanjo.util;
/*from w  w w .jav  a  2 s. c om*/
/*
 * Copyright (C) 2014 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.
 */

import android.content.ContentUris;
import android.net.Uri;
import android.provider.BaseColumns;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

/**
 * Defines table and column names for the weather database.
 */
public class WeatherContract {

  // The "Content authority" is a name for the entire content provider,
  // similar to the
  // relationship between a domain name and its website. A convenient string
  // to use for the
  // content authority is the package name for the app, which is guaranteed to
  // be unique on the
  // device.
  public static final String CONTENT_AUTHORITY = "app.sunshine.juanjo";

  // Use CONTENT_AUTHORITY to create the base of all URI's which apps will use
  // to contact
  // the content provider.
  public static final Uri BASE_CONTENT_URI = Uri.parse("content://" + CONTENT_AUTHORITY);

  // Possible paths (appended to base content URI for possible URI's)
  // For instance, content://com.example.android.sunshine.app/weather/ is a
  // valid path for
  // looking at weather data.
  // content://com.example.android.sunshine.app/givemeroot/ will fail,
  // as the ContentProvider hasn't been given any information on what to do
  // with "givemeroot".
  // At least, let's hope not. Don't be that dev, reader. Don't be that dev.
  public static final String PATH_WEATHER = "weather";
  public static final String PATH_LOCATION = "location";

  // Format used for storing dates in the database. ALso used for converting
  // those strings
  // back into date objects for comparison/processing.
  public static final String DATE_FORMAT = "yyyyMMdd";

  /**
   * Converts Date class to a string representation, used for easy comparison
   * and database lookup.
   *
   * @param date
   *            The input date
   * @return a DB-friendly representation of the date, using the format
   *         defined in DATE_FORMAT.
   */
  public static String getDbDateString(Date date) {
    // Because the API returns a unix timestamp (measured in seconds),
    // it must be converted to milliseconds in order to be converted to
    // valid date.
    SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT);
    return sdf.format(date);
  }

  /* Inner class that defines the table contents of the weather table */
  public static final class WeatherEntry implements BaseColumns {

    public static final Uri CONTENT_URI = BASE_CONTENT_URI.buildUpon().appendPath(PATH_WEATHER)
        .build();

    public static final String CONTENT_TYPE = "vnd.android.cursor.dir/" + CONTENT_AUTHORITY
        + "/" + PATH_WEATHER;
    public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/"
        + CONTENT_AUTHORITY + "/" + PATH_WEATHER;

    public static final String TABLE_NAME = "weather";

    // Column with the foreign key into the location table.
    public static final String COLUMN_LOC_KEY = "location_id";
    // Date, stored as Text with format yyyy-MM-dd
    public static final String COLUMN_DATETEXT = "date";
    // Weather id as returned by API, to identify the icon to be used
    public static final String COLUMN_WEATHER_ID = "weather_id";

    // Short description and long description of the weather, as provided by
    // API.
    // e.g "clear" vs "sky is clear".
    public static final String COLUMN_SHORT_DESC = "short_desc";

    // Min and max temperatures for the day (stored as floats)
    public static final String COLUMN_MIN_TEMP = "min";
    public static final String COLUMN_MAX_TEMP = "max";

    // Humidity is stored as a float representing percentage
    public static final String COLUMN_HUMIDITY = "humidity";

    // Humidity is stored as a float representing percentage
    public static final String COLUMN_PRESSURE = "pressure";

    // Windspeed is stored as a float representing windspeed mph
    public static final String COLUMN_WIND_SPEED = "wind";

    // Degrees are meteorological degrees (e.g, 0 is north, 180 is south).
    // Stored as floats.
    public static final String COLUMN_DEGREES = "degrees";

    public static Uri buildWeatherUri(long id) {
      return ContentUris.withAppendedId(CONTENT_URI, id);
    }

    public static Uri buildWeatherLocation(String locationSetting) {
      return CONTENT_URI.buildUpon().appendPath(locationSetting).build();
    }

    public static Uri buildWeatherLocationWithStartDate(String locationSetting, String startDate) {
      return CONTENT_URI.buildUpon().appendPath(locationSetting)
          .appendQueryParameter(COLUMN_DATETEXT, startDate).build();
    }

    public static Uri buildWeatherLocationWithDate(String locationSetting, String date) {
      return CONTENT_URI.buildUpon().appendPath(locationSetting).appendPath(date).build();
    }

    public static String getLocationSettingFromUri(Uri uri) {
      return uri.getPathSegments().get(1);
    }

    public static String getDateFromUri(Uri uri) {
      return uri.getPathSegments().get(2);
    }

    public static String getStartDateFromUri(Uri uri) {
      return uri.getQueryParameter(COLUMN_DATETEXT);
    }
  }

  public static final class LocationEntry implements BaseColumns {

    public static final Uri CONTENT_URI = BASE_CONTENT_URI.buildUpon()
        .appendPath(PATH_LOCATION).build();

    public static final String CONTENT_TYPE = "vnd.android.cursor.dir/" + CONTENT_AUTHORITY
        + "/" + PATH_LOCATION;

    public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/"
        + CONTENT_AUTHORITY + "/" + PATH_LOCATION;

    public static final String TABLE_NAME = "location";

    public static final String COLUMN_LOCATION_SETTING = "location_setting";

    public static final String COLUMN_CITY = "city_name";

    public static final String COLUMN_LATITUDE = "latitude";
    public static final String COLUMN_LONGITUDE = "longitude";

    public static Uri buildLocationUri(long id) {
      return ContentUris.withAppendedId(CONTENT_URI, id);
    }
  }

  /**
   * Converts a dateText to a long Unix time representation
   *
   * @param dateText
   *            the input date string
   * @return the Date object
   */
  public static Date getDateFromDb(String dateText) {
    SimpleDateFormat dbDateFormat = new SimpleDateFormat(DATE_FORMAT);
    try {
      return dbDateFormat.parse(dateText);
    } catch (ParseException e) {
      e.printStackTrace();
      return null;
    }
  }
}




Java Source Code List

app.sunshine.juanjo.gcm.GcmBroadcastReceiver.java
app.sunshine.juanjo.gcm.GcmIntentService.java
app.sunshine.juanjo.network.APIHTTP.java
app.sunshine.juanjo.network.HttpRequest.java
app.sunshine.juanjo.network.SendIdGCM.java
app.sunshine.juanjo.sync.SunshineAuthenticatorService.java
app.sunshine.juanjo.sync.SunshineAuthenticator.java
app.sunshine.juanjo.sync.SunshineSyncAdapter.java
app.sunshine.juanjo.sync.SunshineSyncService.java
app.sunshine.juanjo.util.Utility.java
app.sunshine.juanjo.util.WeatherContract.java
app.sunshine.juanjo.util.WeatherDbHelper.java
app.sunshine.juanjo.util.WeatherJsonParser.java
app.sunshine.juanjo.util.WeatherProvider.java
app.sunshine.juanjo.views.MyView.java
app.sunshine.juanjo.views.activities.DetailActivity.java
app.sunshine.juanjo.views.activities.MainActivity.java
app.sunshine.juanjo.views.activities.SettingsActivity.java
app.sunshine.juanjo.views.adapter.ForecastAdapter.java
app.sunshine.juanjo.views.fragments.DetailFragment.java
app.sunshine.juanjo.views.fragments.ForeCastFragment.java