mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
174 lines
5.6 KiB
Java
174 lines
5.6 KiB
Java
package com.todoroo.astrid.taskrabbit;
|
|
|
|
import java.util.Timer;
|
|
import java.util.TimerTask;
|
|
|
|
import android.content.Context;
|
|
import android.location.Location;
|
|
import android.location.LocationListener;
|
|
import android.location.LocationManager;
|
|
import android.os.Bundle;
|
|
|
|
import com.timsu.astrid.data.location.GeoPoint;
|
|
|
|
public class TaskRabbitLocationManager {
|
|
Timer timer1;
|
|
LocationManager lm;
|
|
LocationResult locationResult;
|
|
boolean gps_enabled=false;
|
|
boolean network_enabled=false;
|
|
Context context;
|
|
|
|
private static final int RADIUS_250_MILES = 400000;
|
|
|
|
public TaskRabbitLocationManager(Context context) {
|
|
this.context = context;
|
|
lm = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
|
|
|
|
}
|
|
private static final GeoPoint[] supportedLocations = {
|
|
new GeoPoint(42358430, -71059770), //BOS
|
|
new GeoPoint(37739230, -122439880), //SF
|
|
new GeoPoint(40714350, -74005970), //NYC
|
|
new GeoPoint(41878110, -87629800), //CHI
|
|
new GeoPoint(34052230, -118243680), //LA
|
|
new GeoPoint(33717470, -117831140), //OC
|
|
new GeoPoint(30267150, -97743060), //AUSTIN
|
|
new GeoPoint(45523450, -122676210), //PORTLAND
|
|
new GeoPoint(47606210, -122332070), //SEA
|
|
new GeoPoint(29424120, -98493630) //SAN ANTONIO
|
|
};
|
|
|
|
public boolean isLocationUpdatesEnabled() {
|
|
boolean provider_enabled = false;
|
|
try {
|
|
provider_enabled = lm.isProviderEnabled(LocationManager.GPS_PROVIDER);
|
|
} catch (Exception ex) {
|
|
// suppress
|
|
}
|
|
try {
|
|
provider_enabled = provider_enabled
|
|
|| lm.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
|
|
} catch (Exception ex) {
|
|
// suppress
|
|
}
|
|
return provider_enabled;
|
|
}
|
|
public Location getLastKnownLocation()
|
|
{
|
|
boolean gps_supported=false;
|
|
boolean network_supported=false;
|
|
Location location = null;
|
|
|
|
gps_supported = isGpsEnabled();;
|
|
network_supported = isNetworkProviderEnabled();
|
|
if(!gps_supported && !network_supported)
|
|
return null;
|
|
|
|
if(gps_supported) {location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
|
|
}
|
|
if(location == null && network_supported) {location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
|
|
}
|
|
return location;
|
|
}
|
|
|
|
public static boolean supportsCurrentLocation(Location location) {
|
|
if (location == null) return false;
|
|
for (GeoPoint point : supportedLocations){
|
|
Location city = new Location(""); //$NON-NLS-1$
|
|
city.setLatitude(point.getLatitudeE6()/1E6);
|
|
city.setLongitude(point.getLongitudeE6()/1E6);
|
|
float distance = location.distanceTo(city);
|
|
if (distance < RADIUS_250_MILES) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|
|
|
|
public boolean getLocation(LocationResult result)
|
|
{
|
|
locationResult = result;
|
|
gps_enabled = isGpsEnabled();
|
|
network_enabled = isNetworkProviderEnabled();
|
|
|
|
if(!gps_enabled && !network_enabled)
|
|
return false;
|
|
|
|
if(gps_enabled)
|
|
lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locationListener);
|
|
if(network_enabled)
|
|
lm.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, locationListener);
|
|
timer1=new Timer();
|
|
timer1.schedule(new GetLastLocation(), 20000);
|
|
return true;
|
|
}
|
|
|
|
private boolean isNetworkProviderEnabled() {
|
|
try {
|
|
return lm.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
|
|
} catch (Exception ex) {
|
|
// suppress
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private boolean isGpsEnabled() {
|
|
try {
|
|
return lm.isProviderEnabled(LocationManager.GPS_PROVIDER);
|
|
} catch (Exception ex) {
|
|
// suppress
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private final LocationListener locationListener = new LocationListener() {
|
|
public void onLocationChanged(Location location) {
|
|
timer1.cancel();
|
|
locationResult.gotLocation(location);
|
|
lm.removeUpdates(locationListener);
|
|
}
|
|
public void onProviderDisabled(String provider) { /**/ }
|
|
public void onProviderEnabled(String provider) { /**/ }
|
|
public void onStatusChanged(String provider, int status, Bundle extras) { /**/ }
|
|
};
|
|
|
|
class GetLastLocation extends TimerTask {
|
|
@Override
|
|
public void run() {
|
|
lm.removeUpdates(locationListener);
|
|
|
|
Location net_loc=null, gps_loc=null;
|
|
if(gps_enabled)
|
|
gps_loc=lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
|
|
if(network_enabled)
|
|
net_loc=lm.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
|
|
|
|
//if there are both values use the latest one
|
|
if(gps_loc!=null && net_loc!=null){
|
|
if(gps_loc.getTime()>net_loc.getTime())
|
|
locationResult.gotLocation(gps_loc);
|
|
else
|
|
locationResult.gotLocation(net_loc);
|
|
return;
|
|
}
|
|
|
|
if(gps_loc!=null){
|
|
locationResult.gotLocation(gps_loc);
|
|
return;
|
|
}
|
|
if(net_loc!=null){
|
|
locationResult.gotLocation(net_loc);
|
|
return;
|
|
}
|
|
locationResult.gotLocation(null);
|
|
}
|
|
}
|
|
|
|
public static abstract class LocationResult{
|
|
public abstract void gotLocation(Location location);
|
|
}
|
|
}
|