/[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

revision 336 by torben, Wed Sep 23 12:51:49 2009 UTC 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;
14    
15    
16  public class LocationLookup implements LocationListener{  public class LocationLookup implements LocationListener, GpsStatus.Listener {
17            
18            public enum LookupStates {
19                    GOTLOCATION,
20                    NOPROVIDER,
21                    STARTED,
22                    IDLE
23            }
24    
25          LocationManager locManager;          private LocationManager locManager;
26          Context cntx;          private Context cntx;
         Handler hndl;  
27    
28          Location savedLocation = null;          private Location savedLocation = null;
29            private int satCount;
30            
31            private boolean hasGps;
32                    
33          boolean isSearching = false;          private LookupStates state;
34          boolean hasGps;          
35            private long startTime;
36    
37          public LocationLookup(Context c, Handler h) {          public LocationLookup(Context c) {
38                    state = LookupStates.IDLE;
39                  cntx = c;                  cntx = c;
                 hndl = h;  
40          }          }
41                    
42                    
# Line 37  public class LocationLookup implements L Line 48  public class LocationLookup implements L
48          {          {
49                  return savedLocation;                  return savedLocation;
50          }          }
51            
52            public boolean hasGps() {
53                    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                                    
73                  isSearching = true;                  state = LookupStates.STARTED;
74                                    
75                  hasGps = false;                  hasGps = false;
76                  locManager = (LocationManager) cntx.getSystemService(Context.LOCATION_SERVICE);                  locManager = (LocationManager) cntx.getSystemService(Context.LOCATION_SERVICE);
77                    satCount = 0;
78                  List<String> providers = locManager.getProviders(true);                          
79                    startTime = android.os.SystemClock.elapsedRealtime();
80                    
81                    boolean hasProvider = false;
82                    
83                    SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(cntx);
84                    String networkPref = prefs.getString("location", "GPS"); //default value is gps
85                                    
86                  if (providers.size() > 0) {                  if (networkPref.equals("GPS")) {
87                          for(String provider : providers) {                          if (locManager.isProviderEnabled(LocationManager.GPS_PROVIDER)) {
88                                  Log.i("Provider", ""+provider);                                  locManager.addGpsStatusListener(this);
89                                  if (provider.equalsIgnoreCase("gps"))                                  locManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, this);
90                                          hasGps = true;                                  
91                                  locManager.requestLocationUpdates(provider, 0, 0, this);                                  hasGps = true;
92                                    hasProvider = true;
93                          }                          }
94                  } else {                  }
95                    
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(StationList.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) {              
                 if (isSearching == false)  
                         return;  
                   
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    
# Line 73  public class LocationLookup implements L Line 117  public class LocationLookup implements L
117                  if (hasGps) {                  if (hasGps) {
118                          if (!location.getProvider().equals("gps")) {                          if (!location.getProvider().equals("gps")) {
119                                  return; // at least give the gps a chance                                  return; // at least give the gps a chance
120                          } else if (location.getAccuracy() > 128) {                          } else if (location.getAccuracy() > 512) {
121                                  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
122                          }                          }
123    
124                  }                  }
125                  stopSearch();                  stopSearch();
126                  hndl.sendEmptyMessage(StationList.GOTLOCATION);                  state = LookupStates.GOTLOCATION;
127    
128          }          }
129                    
130            
131          public void stopSearch()          public void stopSearch()
132          {          {
133                  if (isSearching) {                  if (state == LookupStates.STARTED) {
134                          isSearching = false;                          state = LookupStates.IDLE;
135                            locManager.removeGpsStatusListener(this);
136                          locManager.removeUpdates(this);                          locManager.removeUpdates(this);
137                  }                  }
138          }          }
# Line 106  public class LocationLookup implements L Line 153  public class LocationLookup 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);                  }
                   
                 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);  
                   
                   
169                                    
                 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");  
170          }          }
171  }  }

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

  ViewVC Help
Powered by ViewVC 1.1.20