/[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 310 by torben, Thu Sep 10 19:09:09 2009 UTC android/TrainInfo/src/dk/thoerup/traininfo/LocationLookup.java revision 474 by torben, Tue Oct 27 13:40:15 2009 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    
         StationProvider provider;  
20          Location savedLocation = null;          Location savedLocation = null;
21                    
22            boolean isSearching = false;
23          boolean hasGps;          boolean hasGps;
24    
25          public StationLocator(Context c, Handler h) {          public LocationLookup(Context c, Handler h) {
26                  cntx = c;                  cntx = c;
27                  hndl = h;                  hndl = h;
                   
                 provider = ProviderFactory.getStationProvider();  
         }  
           
         public List<StationBean> getStations() {  
                 return provider.getStations();  
28          }          }
29                    
         public void abortLocationListener() {  
                 locManager.removeUpdates(this);  
         }  
30                    
31          public boolean hasLocation() {          public boolean hasLocation() {
32                  return savedLocation != null;                  return savedLocation != null;
33          }          }
34            
35            public Location getLocation()
36            {
37                    return savedLocation;
38            }
39    
40          public void locateStations() {          public void locateStations() {
41                    
42                    isSearching = true;
43                    
44                  hasGps = false;                  hasGps = false;
45                  locManager = (LocationManager) cntx.getSystemService(Context.LOCATION_SERVICE);                  locManager = (LocationManager) cntx.getSystemService(Context.LOCATION_SERVICE);
46    
# Line 58  public class StationLocator implements L Line 55  public class StationLocator implements L
55                          }                          }
56                  } else {                  } else {
57                          // message that no suitable provider was found                          // message that no suitable provider was found
58                          hndl.sendEmptyMessage(TrainInfoList.NOPROVIDER);                          hndl.sendEmptyMessage(StationList.NOPROVIDER);
59                  }                  }
60          }          }
61          @Override          @Override
62          public void onLocationChanged(Location location) {          public void onLocationChanged(Location location) {
63                    if (isSearching == false)
64                            return;
65                    
66                  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());
67                    
68    
69                  if (savedLocation == null || location.getAccuracy() < savedLocation.getAccuracy())                  if (savedLocation == null || location.getAccuracy() < savedLocation.getAccuracy())
70                          savedLocation = new Location(location); //save a copy                          savedLocation = new Location(location); //save a copy
# Line 71  public class StationLocator implements L Line 72  public class StationLocator implements L
72                  if (hasGps) {                  if (hasGps) {
73                          if (!location.getProvider().equals("gps")) {                          if (!location.getProvider().equals("gps")) {
74                                  return; // at least give the gps a chance                                  return; // at least give the gps a chance
75                          } else if (location.getAccuracy() > 100) {                          } else if (location.getAccuracy() > 256) {
76                                  return; //if we have a gps provider lets wait for a more precise fix                                  return; //if we have a gps provider lets wait for a more precise fix
77                          }                          }
78    
79                  }                  }
80                    stopSearch();
81                  locManager.removeUpdates(this);                  hndl.sendEmptyMessage(StationList.GOTLOCATION);
                 hndl.sendEmptyMessage(TrainInfoList.GOTLOCATION);  
82          }          }
83                    
84          public void findNearestStations() {          public void stopSearch()
85                  findNearestStations(savedLocation);          {
86          }                  if (isSearching) {
87                                    isSearching = false;
88          public void findNearestStations(Location location) {                          locManager.removeUpdates(this);
89                  provider.lookupStations(location);                  }
                   
                 if ( provider.getStations().size() > 0)  
                         hndl.sendEmptyMessage(TrainInfoList.GOTSTATIONLIST);  
                 else  
                         hndl.sendEmptyMessage(TrainInfoList.LOOKUPSTATIONFAILED);  
90          }          }
91    
92    
# Line 110  public class StationLocator implements L Line 105  public class StationLocator implements L
105                  // TODO Auto-generated method stub                  // TODO Auto-generated method stub
106    
107          }          }
           
   
         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);  
                   
                 Location hillerod = new Location("gps");  
                 hillerod.setLatitude(55.929177);  
                 hillerod.setLongitude(12.308095);  
                   
                 Location aarhus = new Location("gps"); //Aros  
                 aarhus.setLatitude(56.153828);  
                 aarhus.setLongitude(10.200369);  
                   
                   
                   
                 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");  
         }  
108  }  }

Legend:
Removed from v.310  
changed lines
  Added in v.474

  ViewVC Help
Powered by ViewVC 1.1.20