/[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 254 by torben, Mon Aug 10 17:01:02 2009 UTC android/TrainInfo/src/dk/thoerup/traininfo/LocationLookup.java revision 570 by torben, Fri Jan 29 12:34:17 2010 UTC
# Line 3  package dk.thoerup.traininfo; Line 3  package dk.thoerup.traininfo;
3  import java.util.List;  import java.util.List;
4    
5  import android.content.Context;  import android.content.Context;
 import android.location.Criteria;  
6  import android.location.Location;  import android.location.Location;
7  import android.location.LocationListener;  import android.location.LocationListener;
8  import android.location.LocationManager;  import android.location.LocationManager;
9  import android.os.Bundle;  import android.os.Bundle;
10  import android.os.Handler;  import android.os.Handler;
11  import android.util.Log;  import android.util.Log;
 import dk.thoerup.traininfo.provider.ProviderFactory;  
 import dk.thoerup.traininfo.provider.StationProvider;  
12    
13  public class StationLocator implements LocationListener{  
14    public class LocationLookup implements LocationListener{
15    
16          LocationManager locManager;          LocationManager locManager;
17          Context cntx;          Context cntx;
18          Handler hndl;          Handler hndl;
19    
20          StationProvider provider;          Location lastKnownLocation = null;
21          Location savedLocation = null;          Location savedLocation = null;
22            
23            boolean isSearching = false;
24            boolean hasGps;
25    
26          public StationLocator(Context c, Handler h) {          public LocationLookup(Context c, Handler h) {
27                  cntx = c;                  cntx = c;
28                  hndl = h;                  hndl = h;
                   
                 provider = ProviderFactory.getStationProvider();  
29          }          }
30                    
31          public List<StationBean> getStations() {          
32                  return provider.getStations();          public boolean hasLocation() {
33                    return savedLocation != null;
34            }
35            
36            public Location getLocation()
37            {
38                    return savedLocation;
39          }          }
40                    
41          public void abortLocationListener() {          public Location getLastKnownLocation() {
42                  locManager.removeUpdates(this);                  return lastKnownLocation;
43          }          }
44    
45          public void locateStations() {          public void locateStations() {
                 //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  
   
                 locManager = (LocationManager) cntx.getSystemService(Context.LOCATION_SERVICE);  
                 /*//testcode  
                 List<String> provs = locManager.getAllProviders();  
                 for (String p  : provs) {  
                         Log.e("Provider", p);  
                 }  
                 provs = locManager.getProviders(true);  
                 for (String p  : provs) {  
                         Log.e("ActiveProvider", p);  
                 }  
                 */  
                 Criteria c = new Criteria();  
                 c.setAccuracy(Criteria.ACCURACY_FINE);  
                 String bestProv = locManager.getBestProvider(c, true);  
                 Log.i("BestProvider", ""+bestProv);  
46                                    
47                    isSearching = true;
48                    
49                    hasGps = false;
50                    locManager = (LocationManager) cntx.getSystemService(Context.LOCATION_SERVICE);
51    
52                  if (bestProv != null) {                  List<String> providers = locManager.getProviders(true);        
53                          savedLocation = locManager.getLastKnownLocation(bestProv);                  
54                          locManager.requestLocationUpdates(bestProv, 0, 0, this);                  if (providers.size() > 0) {
55                            for(String provider : providers) {
56                                    Log.i("Provider", ""+provider);
57                                    if (provider.equalsIgnoreCase("gps"))
58                                            hasGps = true;
59                                    locManager.requestLocationUpdates(provider, 0, 0, this);
60                                    Location tmpLastKnown = locManager.getLastKnownLocation(provider);
61                                    if (tmpLastKnown != null) {
62                                            saveLastKnownLocation(tmpLastKnown);
63                                    }
64                            }
65                  } else {                  } else {
66                          // message that no suitable provider was found                          // message that no suitable provider was found
67                          hndl.sendEmptyMessage(TrainInfoList.NOPROVIDER);                          hndl.sendEmptyMessage(StationList.NOPROVIDER);
68                  }                  }
69          }          }
70          @Override          @Override
71          public void onLocationChanged(Location location) {          public void onLocationChanged(Location location) {
72                    if (isSearching == false)
73                            return;
74                    
75                  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());
76                    
77    
78                  savedLocation = new Location(location); //save a copy                  if (savedLocation == null || location.getAccuracy() < savedLocation.getAccuracy())
79                            savedLocation = new Location(location); //save a copy
80                                    
81                  if (location.getProvider().equals("gps") && location.getAccuracy() > 100) //if we have a gps provider lets wait for a more precise fix                  if (hasGps) {
82                          return;                          if (!location.getProvider().equals("gps")) {
83                                    return; // at least give the gps a chance
84                            } else if (location.getAccuracy() > 256) {
85                                    return; //if we have a gps provider lets wait for a more precise fix
86                            }
87    
88                  locManager.removeUpdates(this);                  }
89                  hndl.sendEmptyMessage(TrainInfoList.GOTLOCATION);                  stopSearch();
90                    hndl.sendEmptyMessage(StationList.GOTLOCATION);
91          }          }
92                    
93          public void findNearestStations() {          private void saveLastKnownLocation(Location loc) {
94                  findNearestStations(savedLocation);                  if (lastKnownLocation == null) {
95                            lastKnownLocation = loc;
96                    } else {
97                            if (loc.getTime() > lastKnownLocation.getTime()) {//if loc is more recent than saved
98                                    lastKnownLocation = loc;
99                            }
100                    }
101          }          }
102                    
103          public void findNearestStations(Location location) {          public void stopSearch()
104                  provider.lookupStations(location);          {
105                                    if (isSearching) {
106                  if ( provider.getStations().size() > 0)                          isSearching = false;
107                          hndl.sendEmptyMessage(TrainInfoList.GOTSTATIONLIST);                          locManager.removeUpdates(this);
108                  else                  }
                         hndl.sendEmptyMessage(TrainInfoList.LOOKUPSTATIONFAILED);  
109          }          }
110    
111    
112          @Override          @Override
113          public void onProviderDisabled(String provider) {          public void onProviderDisabled(String provider) {
                 // TODO Auto-generated method stub  
   
114          }          }
115    
116    
117          @Override          @Override
118          public void onProviderEnabled(String provider) {          public void onProviderEnabled(String provider) {
                 // TODO Auto-generated method stub  
   
119          }          }
120    
121    
# Line 111  public class StationLocator implements L Line 124  public class StationLocator implements L
124                  // TODO Auto-generated method stub                  // TODO Auto-generated method stub
125    
126          }          }
           
   
         public static void injectMockLocation(Context cntx) {  
                 Location odder = new Location("gps2");  
                 odder.setLatitude(55.976632);  
                 odder.setLongitude(10.16407);  
                   
                 Location kbh = new Location("gps2"); //Christiansborg 55.675092,12.578573  
                 kbh.setLatitude(55.675092);  
                 kbh.setLongitude(12.578573);  
                   
                 Location bjbro = new Location("gps2");  
                 bjbro.setLatitude(56.380745);  
                 bjbro.setLongitude(9.655609);  
                   
                   
                 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", kbh);  
         }  
           
         public static void removeMockLocation(Context cntx) {  
                 LocationManager lm = (LocationManager) cntx.getSystemService(Context.LOCATION_SERVICE);  
                 if (lm.getProvider("gps2") != null)  
                         lm.removeTestProvider("gps2");  
         }  
127  }  }

Legend:
Removed from v.254  
changed lines
  Added in v.570

  ViewVC Help
Powered by ViewVC 1.1.20