/[projects]/android/TrainInfo/src/dk/thoerup/traininfo/LocationLookup.java
ViewVC logotype

Diff of /android/TrainInfo/src/dk/thoerup/traininfo/LocationLookup.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

android/TrainInfo/src/dk/thoerup/traininfo/StationLocator.java revision 285 by torben, Fri Aug 28 06:34:42 2009 UTC android/TrainInfo/src/dk/thoerup/traininfo/LocationLookup.java revision 1446 by torben, Wed May 4 20:25:15 2011 UTC
# Line 1  Line 1 
1  package dk.thoerup.traininfo;  package dk.thoerup.traininfo;
2    
 import java.util.List;  
3    
4  import android.content.Context;  import android.content.Context;
5  import android.location.Criteria;  import android.content.SharedPreferences;
6    import android.location.GpsSatellite;
7    import android.location.GpsStatus;
8  import android.location.Location;  import android.location.Location;
9  import android.location.LocationListener;  import android.location.LocationListener;
10  import android.location.LocationManager;  import android.location.LocationManager;
11  import android.os.Bundle;  import android.os.Bundle;
12  import android.os.Handler;  import android.preference.PreferenceManager;
13  import android.util.Log;  import android.util.Log;
 import dk.thoerup.traininfo.provider.ProviderFactory;  
 import dk.thoerup.traininfo.provider.StationProvider;  
14    
 public class StationLocator implements LocationListener{  
15    
16          LocationManager locManager;  public class LocationLookup implements LocationListener, GpsStatus.Listener {
17          Context cntx;          
18          Handler hndl;          public enum LookupStates {
19                    GOTLOCATION,
20                    NOPROVIDER,
21                    STARTED,
22                    IDLE
23            }
24    
25            private LocationManager locManager;
26            private Context cntx;
27    
28          StationProvider provider;          private Location savedLocation = null;
29          Location savedLocation = null;          private int satCount;
30            
31            private boolean hasGps;
32            
33            private LookupStates state;
34            
35            private long startTime;
36    
37          public StationLocator(Context c, Handler h) {          public LocationLookup(Context c) {
38                    state = LookupStates.IDLE;
39                  cntx = c;                  cntx = c;
                 hndl = h;  
                   
                 provider = ProviderFactory.getStationProvider();  
40          }          }
41                    
42          public List<StationBean> getStations() {          
43                  return provider.getStations();          public boolean hasLocation() {
44                    return savedLocation != null;
45          }          }
46                    
47          public void abortLocationListener() {          public Location getLocation()
48                  locManager.removeUpdates(this);          {
49                    return savedLocation;
50          }          }
51                    
52          public boolean hasLocation() {          public boolean hasGps() {
53                  return savedLocation != null;                  return hasGps;
54            }
55            
56            public int getSatCount() {
57                    return satCount;
58            }
59            
60            public LookupStates getState() {
61                    return state;
62            }
63            
64            
65            public long elapsedTime() {
66                    long now = android.os.SystemClock.elapsedRealtime();
67                    
68                    return now - startTime;
69          }          }
70    
71          public void locateStations() {          public void locateStations() {
72                  //http://www.google.com/uds/GlocalSearch?callback=google.search.LocalSearch.RawCompletion&context=1&lstkp=0&rsz=small&hl=en&source=gsc&gss=.com&sig=fadf0e8d483d0f70bea11d5905010a16&q=Train%20station&near=56.377424%2C9.656695&key=ABQIAAAA1XbMiDxx_BTCY2_FkPh06RRaGTYH6UMl8mADNa0YKuWNNa8VNxQEerTAUcfkyrr6OwBovxn7TDAH5Q&v=1.0&nocache=1249640467498                  
73                    state = LookupStates.STARTED;
74                    
75                    hasGps = false;
76                  locManager = (LocationManager) cntx.getSystemService(Context.LOCATION_SERVICE);                  locManager = (LocationManager) cntx.getSystemService(Context.LOCATION_SERVICE);
77                  /*//testcode                  satCount = 0;
78                  List<String> provs = locManager.getAllProviders();                  
79                  for (String p  : provs) {                  startTime = android.os.SystemClock.elapsedRealtime();
80                          Log.e("Provider", p);                  
81                  }                  boolean hasProvider = false;
82                  provs = locManager.getProviders(true);                  
83                  for (String p  : provs) {                  SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(cntx);
84                          Log.e("ActiveProvider", p);                  String networkPref = prefs.getString("location", "GPS"); //default value is gps
85                  }                  
86                  */                  if (networkPref.equals("GPS")) {
87                  Criteria c = new Criteria();                          if (locManager.isProviderEnabled(LocationManager.GPS_PROVIDER)) {
88                  c.setAccuracy(Criteria.ACCURACY_FINE);                                  locManager.addGpsStatusListener(this);
89                  String bestProv = locManager.getBestProvider(c, true);                                  locManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, this);
90                  Log.i("BestProvider", ""+bestProv);                                  
91                                                    hasGps = true;
92                                    hasProvider = true;
93                  if (bestProv != null) {                          }
94                          locManager.requestLocationUpdates(bestProv, 0, 0, this);                  }
95                  } else {                  
96                    if (locManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)) {
97                            locManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, this);
98                            hasProvider = true;                    
99                    }
100                    
101                            
102                    if (hasProvider == false) {
103                          // message that no suitable provider was found                          // message that no suitable provider was found
104                          hndl.sendEmptyMessage(TrainInfoList.NOPROVIDER);                          //hndl.sendEmptyMessage(StationList.NOPROVIDER);
105                            state = LookupStates.NOPROVIDER;
106                            
107                  }                  }
108          }          }
109          @Override          @Override
110          public void onLocationChanged(Location location) {          public void onLocationChanged(Location location) {              
111                  Log.i("Location", "Got location fix " + location.getLatitude() + ", " + location.getLongitude() + " accuracy=" + location.getAccuracy() + " provider=" +location.getProvider());                  Log.i("Location", "Got location fix " + location.getLatitude() + ", " + location.getLongitude() + " accuracy=" + location.getAccuracy() + " provider=" +location.getProvider());
112                    
113    
114                  savedLocation = new Location(location); //save a copy                  if (savedLocation == null || location.getAccuracy() < savedLocation.getAccuracy())
115                            savedLocation = new Location(location); //save a copy
116                                    
117                  if (location.getProvider().equals("gps") && location.getAccuracy() > 100) //if we have a gps provider lets wait for a more precise fix                  if (hasGps) {
118                          return;                          if (!location.getProvider().equals("gps")) {
119                                    return; // at least give the gps a chance
120                            } else if (location.getAccuracy() > 512) {
121                                    return; //if we have a gps provider lets wait for a more precise fix
122                            }
123    
124                    }
125                    stopSearch();
126                    state = LookupStates.GOTLOCATION;
127    
                 locManager.removeUpdates(this);  
                 hndl.sendEmptyMessage(TrainInfoList.GOTLOCATION);  
128          }          }
129                    
         public void findNearestStations() {  
                 findNearestStations(savedLocation);  
         }  
130                    
131          public void findNearestStations(Location location) {          public void stopSearch()
132                  provider.lookupStations(location);          {
133                                    if (state == LookupStates.STARTED) {
134                  if ( provider.getStations().size() > 0)                          state = LookupStates.IDLE;
135                          hndl.sendEmptyMessage(TrainInfoList.GOTSTATIONLIST);                          locManager.removeGpsStatusListener(this);
136                  else                          locManager.removeUpdates(this);
137                          hndl.sendEmptyMessage(TrainInfoList.LOOKUPSTATIONFAILED);                  }
138          }          }
139    
140    
141          @Override          @Override
142          public void onProviderDisabled(String provider) {          public void onProviderDisabled(String provider) {
                 // TODO Auto-generated method stub  
   
143          }          }
144    
145    
146          @Override          @Override
147          public void onProviderEnabled(String provider) {          public void onProviderEnabled(String provider) {
                 // TODO Auto-generated method stub  
   
148          }          }
149    
150    
# Line 114  public class StationLocator implements L Line 153  public class StationLocator implements L
153                  // TODO Auto-generated method stub                  // TODO Auto-generated method stub
154    
155          }          }
           
156    
157          public static void injectMockLocation(Context cntx) {  
158                  Location odder = new Location("gps2");          @Override //GpsStatus.Listener
159                  odder.setLatitude(55.976632);          public void onGpsStatusChanged(int event) {
160                  odder.setLongitude(10.16407);                  if (event == GpsStatus.GPS_EVENT_SATELLITE_STATUS) {
161                                            int count = 0;
162                  Location kbh = new Location("gps2"); //Christiansborg 55.675092,12.578573                          GpsStatus status =  locManager.getGpsStatus(null);
163                  kbh.setLatitude(55.675092);                          for (GpsSatellite sat : status.getSatellites()) {
164                  kbh.setLongitude(12.578573);                                  count ++;
165                                            }                      
166                  Location bjbro = new Location("gps2");                          
167                  bjbro.setLatitude(56.380745);                          satCount = count;
168                  bjbro.setLongitude(9.655609);                  }
169                                    
                 Location hillerod = new Location("gps");  
                 hillerod.setLatitude(55.929177);  
                 hillerod.setLongitude(12.308095);  
                   
                 LocationManager lm = (LocationManager) cntx.getSystemService(Context.LOCATION_SERVICE);  
                 if (lm.getProvider("gps2") == null)  
                         lm.addTestProvider("gps2", false, true, true, false, false, false, false, 0, Criteria.ACCURACY_FINE );  
                 lm.setTestProviderEnabled("gps2", true);  
                 lm.setTestProviderLocation("gps2", hillerod);  
         }  
           
         public static void removeMockLocation(Context cntx) {  
                 LocationManager lm = (LocationManager) cntx.getSystemService(Context.LOCATION_SERVICE);  
                 if (lm.getProvider("gps2") != null)  
                         lm.removeTestProvider("gps2");  
170          }          }
171  }  }

Legend:
Removed from v.285  
changed lines
  Added in v.1446

  ViewVC Help
Powered by ViewVC 1.1.20