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

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

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

revision 984 by torben, Sun Jul 11 15:29:13 2010 UTC revision 1028 by torben, Wed Sep 8 06:25:13 2010 UTC
# Line 52  public class StationList extends ListAct Line 52  public class StationList extends ListAct
52          public static final int DLG_STATIONNAME = 3002;          public static final int DLG_STATIONNAME = 3002;
53                    
54                    
55          public static final int GPS_TIMEOUT_MS = 17500; //how long are we willing to wait for gps fix -in milliseconds          public static final int GPS_TIMEOUT_MS = 15000; //how long are we willing to wait for gps fix -in milliseconds
56                    
57                    
58          static enum LookupMethod {          static enum LookupMethod {
# Line 115  public class StationList extends ListAct Line 115  public class StationList extends ListAct
115                                    
116                  isLaunchedforShortcut = getIntent().getBooleanExtra("shortcut", false);                  isLaunchedforShortcut = getIntent().getBooleanExtra("shortcut", false);
117                                    
118                    ProviderFactory.purgeOldEntries(); //cleanup before fetching more data
119                    
120                  if (savedInstanceState == null) {                  if (savedInstanceState == null) {
121    
122                                                    
# Line 123  public class StationList extends ListAct Line 125  public class StationList extends ListAct
125                                  startLookup();                                  startLookup();
126                                  break;                                  break;
127                          case ListSearch:                                                          case ListSearch:                                
128                                  showDialog(DLG_STATIONNAME); //TODO: this.showDialogSafe(DLG_STATIONNAME);                                  showDialog(DLG_STATIONNAME);
129                                  break;                                  break;
130                          case ListFavorites:                          case ListFavorites:
131                                  startFavoriteLookup();                                  startFavoriteLookup();
# Line 140  public class StationList extends ListAct Line 142  public class StationList extends ListAct
142                                    
143          }          }
144                    
145            
146    
147    
148    
149    
150          @Override          @Override
151          protected void onDestroy() {          protected void onDestroy() {
152                  super.onDestroy();                  super.onDestroy();
153                                    
154                  if (findStationsTask != null) {                  isRunning = false;
155                          findStationsTask.cancel(true);                  
                 }  
156                  if (locationLookup != null) {                  if (locationLookup != null) {
157                          locationLookup.stopSearch();                          locationLookup.stopSearch();
158                  }                  }
159                  isRunning = false;                  if (findStationsTask != null) {
160                            findStationsTask.cancel(true);
161                    }              
162          }          }
163    
164                    
# Line 175  public class StationList extends ListAct Line 182  public class StationList extends ListAct
182                                    
183          }          }
184                    
           
         /* these 3 dialogs helper functions are very rude and ugly hack  
          * to remove these auto-reported exceptions  
          * - android.view.WindowManager$BadTokenException: Unable to add window -- token android.os.BinderProxy@436aaef8 is not valid; is your activity running?  
          * - java.lang.IllegalArgumentException: View not attached to window manager  
          */  
   
         /*  
         public void showDialogSafe(int id) {  
                 try {  
                         showDialog(id);  
                 } catch (Exception e) {  
                         Log.e("StationList", "showDialog failed", e);  
                 }  
         }  
           
         public void dismissDialogSafe(int id) {  
                 try {  
                         dismissDialog(id);  
                 } catch (Exception e) {  
                         Log.e("StationList", "dismissDialog failed", e);  
                 }  
         }  
         public void dismissDialogSafe(Dialog dlg) {  
                 try {  
                         dlg.dismiss();  
                 } catch (Exception e) {  
                         Log.e("StationList", "dismissDialog failed", e);  
                 }  
         }  
           
         public void builderShowSafe(AlertDialog.Builder builder) {  
                 try {  
                         builder.show();  
                 } catch (Exception e) {  
                         Log.e("StationList", "builder.show() failed", e);  
                 }  
185                                    
         }*/  
           
         /* EOF rude and ugly dialog hack */  
           
   
186    
187      @Override      @Override
188      public void onSaveInstanceState(Bundle outState)      public void onSaveInstanceState(Bundle outState)
# Line 394  public class StationList extends ListAct Line 359  public class StationList extends ListAct
359          public void startLookup() {          public void startLookup() {
360                  isRunning = true;                                isRunning = true;              
361                  dialogMessage = getString( stationlist_waitforlocation );                  dialogMessage = getString( stationlist_waitforlocation );
362                  showDialog(DLG_PROGRESS);//TODO:showDialogSafe(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
363                                    
364                  locationLookup.locateStations();                  locationLookup.locateStations();
365                  stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, GPS_TIMEOUT_MS);                  stationsFetched.sendEmptyMessageDelayed(LOCATIONFIXTIMEOUT, GPS_TIMEOUT_MS);
# Line 402  public class StationList extends ListAct Line 367  public class StationList extends ListAct
367                    
368          void startNameSearch(String name) {          void startNameSearch(String name) {
369                  dialogMessage = getString( stationlist_findbyname );                  dialogMessage = getString( stationlist_findbyname );
370                  showDialog(DLG_PROGRESS);//TODO:showDialogSafe(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
371    
372                  findStationsTask = new FindStationsTask();                  findStationsTask = new FindStationsTask();
373                  findStationsTask.searchByName(name);                  findStationsTask.searchByName(name);
# Line 414  public class StationList extends ListAct Line 379  public class StationList extends ListAct
379                                    
380                  if (favorites.size() > 0) {                  if (favorites.size() > 0) {
381                          dialogMessage = getString( stationlist_loadfavorites );                          dialogMessage = getString( stationlist_loadfavorites );
382                          showDialog(DLG_PROGRESS);//TODO:showDialogSafe(DLG_PROGRESS);                          showDialog(DLG_PROGRESS);
383    
384                          findStationsTask = new FindStationsTask();                          findStationsTask = new FindStationsTask();
385                          findStationsTask.searchByIds( favorites.toString() );                          findStationsTask.searchByIds( favorites.toString() );
# Line 429  public class StationList extends ListAct Line 394  public class StationList extends ListAct
394          void startLocatorTask()          void startLocatorTask()
395          {          {
396                  dialogMessage = getString( stationlist_findingnearby );                  dialogMessage = getString( stationlist_findingnearby );
397                  showDialog(DLG_PROGRESS);//TODO:showDialogSafe(DLG_PROGRESS);                  showDialog(DLG_PROGRESS);
398                                    
399                  findStationsTask = new FindStationsTask();                  findStationsTask = new FindStationsTask();
400                  findStationsTask.searchByLocation( locationLookup.getLocation() );                  findStationsTask.searchByLocation( locationLookup.getLocation() );
# Line 446  public class StationList extends ListAct Line 411  public class StationList extends ListAct
411    
412                          switch (msg.what) {                          switch (msg.what) {
413                          case GOTLOCATION:                          case GOTLOCATION:
414                                  dismissDialog(DLG_PROGRESS);//TODO:dismissDialogSafe(DLG_PROGRESS);                                  dismissDialog(DLG_PROGRESS);
415                                                                    
416                                  startLocatorTask();                                  startLocatorTask();
417                                  location = GeoPair.fromLocation( locationLookup.getLocation() );                                  location = GeoPair.fromLocation( locationLookup.getLocation() );
# Line 454  public class StationList extends ListAct Line 419  public class StationList extends ListAct
419                                  break;                                  break;
420    
421                          case NOPROVIDER:                          case NOPROVIDER:
422                                  dismissDialog(DLG_PROGRESS);//TODO:dismissDialogSafe(DLG_PROGRESS);                                  dismissDialog(DLG_PROGRESS);
423                                  MessageBox.showMessage(StationList.this, getString(stationlist_nolocationprovider), true );                                  MessageBox.showMessage(StationList.this, getString(stationlist_nolocationprovider), true );
424                                  //StationList.this.finish();                                  //StationList.this.finish();
425                                  break;                                  break;
# Line 464  public class StationList extends ListAct Line 429  public class StationList extends ListAct
429                                          if (locationLookup.hasLocation()) {                                          if (locationLookup.hasLocation()) {
430                                                  stationsFetched.sendEmptyMessage( GOTLOCATION );                                                  stationsFetched.sendEmptyMessage( GOTLOCATION );
431                                          } else {                                                                                          } else {                                                
432                                                  dismissDialog(DLG_PROGRESS);//TODO:dismissDialogSafe(DLG_PROGRESS);                                                  dismissDialog(DLG_PROGRESS);
433                                                                                                    
434                                                  AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                                                                  AlertDialog.Builder builder = new AlertDialog.Builder(StationList.this);                                                
435                                                  builder.setMessage(  getString( stationlist_gpstimeout) );                                                  builder.setMessage(  getString( stationlist_gpstimeout) );
# Line 481  public class StationList extends ListAct Line 446  public class StationList extends ListAct
446                                                                  dialog.dismiss();                                                                  dialog.dismiss();
447                                                          }                                                                                                                }                                                      
448                                                  });                                                  });
449                                                  builder.show();//TODO:builderShowSafe(builder);                                                  builder.show();
450    
451                                          }                                          }
452                                  }                                  }
# Line 495  public class StationList extends ListAct Line 460  public class StationList extends ListAct
460          class FindStationsTask extends AsyncTask<Void,Void,Void> {          class FindStationsTask extends AsyncTask<Void,Void,Void> {
461                                    
462                  LookupMethod method = LookupMethod.MethodNone;                  LookupMethod method = LookupMethod.MethodNone;
                 boolean success;  
463                  String name;                  String name;
464                  Location loc;                  Location loc;
465                  String ids;                  String ids;
# Line 530  public class StationList extends ListAct Line 494  public class StationList extends ListAct
494    
495                          switch (method) {                          switch (method) {
496                          case ByLocation:                          case ByLocation:
497                                  success = stationProvider.lookupStations(loc);                                  stations = stationProvider.lookupStations(loc);
498                                  break;                                  break;
499                          case ByName:                          case ByName:
500                                  success = stationProvider.lookupStationsByName(name);                                  stations = stationProvider.lookupStationsByName(name);
501                                  break;                                  break;
502                          case ByList:                          case ByList:
503                                  success = stationProvider.lookupStationsByIds(ids);                                  stations = stationProvider.lookupStationsByIds(ids);
504                                  break;                                  break;
505                          default:                          default:
506                                  success = false; // not possible                                          stations = null; // not possible        
507                          }                          }
508                                                    
509                                                    
# Line 549  public class StationList extends ListAct Line 513  public class StationList extends ListAct
513                  @Override                  @Override
514                  protected void onPostExecute(Void result) {                  protected void onPostExecute(Void result) {
515                          super.onPostExecute(result);                          super.onPostExecute(result);
516                          dialog.dismiss();//TODO:dismissDialogSafe(dialog);                          dialog.dismiss();
517                                                    
518                                                    
519                          if (success) {                                                    if (stations != null) {                        
520                                  if (stationProvider.getStations().size() == 0) {                                  if (stations.size() == 0) {
521                                          showMessageAndClose(getString(stationlist_nostations));                                          showMessageAndClose(getString(stationlist_nostations));
522                                  }                                  }
                                 stations = stationProvider.getStations();  
523    
524                                  StationList.this.getListView().invalidateViews();                                  StationList.this.getListView().invalidateViews();
525                                  adapter.setStations( stations );                                                                  adapter.setStations( stations );                                
# Line 608  public class StationList extends ListAct Line 571  public class StationList extends ListAct
571                                          }                                                                                                }                                                      
572                                  });                                  });
573                                                                    
574                                  builder.show();//TODO:builderShowSafe(builder);                                  builder.show();
575                          }                          }
576                  }                  }
577          }          }

Legend:
Removed from v.984  
changed lines
  Added in v.1028

  ViewVC Help
Powered by ViewVC 1.1.20