mirror of https://github.com/tasks/tasks
Merge remote-tracking branch 'upstream/20120214_as_task_rabbit_bugs' into 4.0
commit
39c319adb1
@ -0,0 +1,152 @@
|
|||||||
|
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), //
|
||||||
|
new GeoPoint(37739230, -122439880),
|
||||||
|
new GeoPoint(40714350, -74005970),
|
||||||
|
new GeoPoint(41878110, -8762980),
|
||||||
|
new GeoPoint(34052230, -118243680),
|
||||||
|
new GeoPoint(33717470, -117831140)
|
||||||
|
};
|
||||||
|
public boolean isLocationUpdatesEnabled() {
|
||||||
|
boolean provider_enabled=false;
|
||||||
|
try{provider_enabled=lm.isProviderEnabled(LocationManager.GPS_PROVIDER);}catch(Exception ex){}
|
||||||
|
try{provider_enabled=provider_enabled || lm.isProviderEnabled(LocationManager.NETWORK_PROVIDER);}catch(Exception ex){}
|
||||||
|
return provider_enabled;
|
||||||
|
}
|
||||||
|
public Location getLastKnownLocation()
|
||||||
|
{
|
||||||
|
boolean gps_supported=false;
|
||||||
|
boolean network_supported=false;
|
||||||
|
Location location = null;
|
||||||
|
try{gps_supported=lm.isProviderEnabled(LocationManager.GPS_PROVIDER);}catch(Exception ex){}
|
||||||
|
try{network_supported=lm.isProviderEnabled(LocationManager.NETWORK_PROVIDER);}catch(Exception ex){}
|
||||||
|
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;
|
||||||
|
try{gps_enabled=lm.isProviderEnabled(LocationManager.GPS_PROVIDER);}catch(Exception ex){}
|
||||||
|
try{network_enabled=lm.isProviderEnabled(LocationManager.NETWORK_PROVIDER);}catch(Exception ex){}
|
||||||
|
|
||||||
|
if(!gps_enabled && !network_enabled)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if(gps_enabled)
|
||||||
|
lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locationListenerGps);
|
||||||
|
if(network_enabled)
|
||||||
|
lm.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, locationListenerNetwork);
|
||||||
|
timer1=new Timer();
|
||||||
|
timer1.schedule(new GetLastLocation(), 20000);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
LocationListener locationListenerGps = new LocationListener() {
|
||||||
|
public void onLocationChanged(Location location) {
|
||||||
|
timer1.cancel();
|
||||||
|
locationResult.gotLocation(location);
|
||||||
|
lm.removeUpdates(this);
|
||||||
|
lm.removeUpdates(locationListenerNetwork);
|
||||||
|
}
|
||||||
|
public void onProviderDisabled(String provider) {}
|
||||||
|
public void onProviderEnabled(String provider) {}
|
||||||
|
public void onStatusChanged(String provider, int status, Bundle extras) {}
|
||||||
|
};
|
||||||
|
|
||||||
|
LocationListener locationListenerNetwork = new LocationListener() {
|
||||||
|
public void onLocationChanged(Location location) {
|
||||||
|
timer1.cancel();
|
||||||
|
locationResult.gotLocation(location);
|
||||||
|
lm.removeUpdates(this);
|
||||||
|
lm.removeUpdates(locationListenerGps);
|
||||||
|
}
|
||||||
|
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(locationListenerGps);
|
||||||
|
lm.removeUpdates(locationListenerNetwork);
|
||||||
|
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue