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

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

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

revision 839 by torben, Fri Jun 11 17:39:11 2010 UTC revision 1408 by torben, Mon May 2 11:54:17 2011 UTC
# Line 7  import static dk.thoerup.traininfo.R.str Line 7  import static dk.thoerup.traininfo.R.str
7  import static dk.thoerup.traininfo.R.string.timetablelist_fetcherror;  import static dk.thoerup.traininfo.R.string.timetablelist_fetcherror;
8  import static dk.thoerup.traininfo.R.string.timetablelist_nodata;  import static dk.thoerup.traininfo.R.string.timetablelist_nodata;
9    
10  import java.util.ArrayList;  import java.util.regex.Pattern;
 import java.util.List;  
11    
12  import android.app.AlertDialog;  import android.app.AlertDialog;
13  import android.app.Dialog;  import android.app.Dialog;
# Line 19  import android.content.Intent; Line 18  import android.content.Intent;
18  import android.os.AsyncTask;  import android.os.AsyncTask;
19  import android.os.Bundle;  import android.os.Bundle;
20  import android.util.Log;  import android.util.Log;
21    import android.view.View;
22    import android.widget.ListView;
23  import android.widget.TextView;  import android.widget.TextView;
24    import dk.thoerup.android.traininfo.common.DepartureEntry;
25    import dk.thoerup.android.traininfo.common.StationEntry;
26    import dk.thoerup.android.traininfo.common.TimetableBean;
27    import dk.thoerup.android.traininfo.common.TimetableEntry;
28  import dk.thoerup.traininfo.provider.ProviderFactory;  import dk.thoerup.traininfo.provider.ProviderFactory;
29  import dk.thoerup.traininfo.provider.TimetableProvider;  import dk.thoerup.traininfo.provider.TimetableProvider;
30  import dk.thoerup.traininfo.util.MessageBox;  import dk.thoerup.traininfo.util.MessageBox;
# Line 27  import dk.thoerup.traininfo.util.Message Line 32  import dk.thoerup.traininfo.util.Message
32  public class TimetableList extends ListActivity {  public class TimetableList extends ListActivity {
33                    
34          private static final int DLG_PROGRESS = 8000;          private static final int DLG_PROGRESS = 8000;
35          DepartureBean departure;          DepartureEntry departure;
36          TimetableListAdapter adapter;          TimetableListAdapter adapter;
37          TimetableFetcher fetcher;          TimetableFetcher fetcher;
38          List<TimetableBean> timetables;          TimetableBean timetables;
39            int commFailCounter = 0;
40                    
41          TimetableProvider provider;          TimetableProvider provider;
42    
43          @SuppressWarnings("unchecked")  
44          @Override          @Override
45          protected void onCreate(Bundle savedInstanceState) {          protected void onCreate(Bundle savedInstanceState) {
46                  super.onCreate(savedInstanceState);                  super.onCreate(savedInstanceState);
# Line 48  public class TimetableList extends ListA Line 54  public class TimetableList extends ListA
54    
55                                    
56                  Intent launchedBy = getIntent();                  Intent launchedBy = getIntent();
57                  departure = (DepartureBean) launchedBy.getSerializableExtra("departure");                  departure = (DepartureEntry) launchedBy.getSerializableExtra("departure");
58                                    
59                  ((TextView)findViewById(R.id.Train)).setText(departure.getTrainNumber());                  ((TextView)findViewById(R.id.Train)).setText(departure.getTrainNumber());
60                  ((TextView)findViewById(R.id.Status)).setText(departure.getStatus());                                  
61                  ((TextView)findViewById(R.id.Location)).setText(departure.getLocation());                  ((TextView)findViewById(R.id.Location)).setText(departure.getLocation());              
62                  ((TextView)findViewById(R.id.Note)).setText(departure.getNote());                  ((TextView)findViewById(R.id.Updated)).setText( getLastUpdateString( departure.getUpdated() ));
63                  ((TextView)findViewById(R.id.Updated)).setText(departure.getLastUpdateString(this));                  
64                                                                    String status = departure.getStatus() != null ? departure.getStatus() : "";            
65                    if ( Pattern.matches("[0-9]+.+min", status) ) {
66                            status += " " + this.getString(R.string.departurebean_delayed);
67                    }
68                    String note = departure.getNote() != null ? departure.getNote() : "";
69                    note = note.replace("Aflyst", this.getString(R.string.timetablelist_cancelled) );
70                    note = note.replace("Kører kun til", this.getString(R.string.timetablelist_goesonlyto) );
71                    note = note.replace("Afgår fra", this.getString(R.string.timetablelist_startsat) );
72                    note = note.replace("Erstattet af", this.getString(R.string.timetablelist_replacedby) );
73                    note = note.replace("Eksterne forhold", this.getString(R.string.timetablelist_externalconditions) );
74                    note = note.replace("Teknisk fejl på et signal", this.getString(R.string.timetablelist_technicalerroronsignal) );
75                    note = note.replace("Materielforhold", this.getString(R.string.timetablelist_equipmentrelated) );
76                    note = note.replace("Passagerforhold", this.getString(R.string.timetablelist_passengerrelated) );
77                    note = note.replace("Forventet rettidig afgang", this.getString(R.string.timetablelist_expectedtimelydeparture) );
78                    
79    
80                    
81                    ((TextView)findViewById(R.id.Status)).setText(status);
82                    ((TextView)findViewById(R.id.Note)).setText(note);
83                                                            
84                    
85                    ProviderFactory.purgeOldEntries(); //cleanup before fetching more data
86                                    
87                  if (savedInstanceState == null) {                  if (savedInstanceState == null) {
88                          startTimetableFetcher();                          startTimetableFetcher();
89                  } else {                  } else {
90                          timetables = (List<TimetableBean>) savedInstanceState.getSerializable("timetables");                          timetables = (TimetableBean) savedInstanceState.getSerializable("timetables");
91                          adapter.setTimetable(timetables);                          adapter.setTimetable(timetables);
92                  }                  }
93          }          }
94    
95            @Override
96            protected void onDestroy() {
97                    super.onDestroy();
98                    
99                    if (fetcher != null) {
100                            fetcher.cancel(true);
101                    }
102            }
103                    
104                @Override
105      @Override          protected void onListItemClick(ListView l, View v, int position, long id) {
106                    super.onListItemClick(l, v, position, id);
107    
108                    TimetableEntry tt = timetables.entries.get(position);
109                    
110                    StationEntry station = new StationEntry();
111                    station.setName( tt.getStation() );
112                    station.setId( tt.getStationId() );
113                    station.setIsRegional(true);
114                    
115                    
116                    Intent intent = new Intent(this, DepartureList.class);
117                    intent.putExtra("stationbean", station);
118                    startActivity(intent);
119                    
120            }
121        
122    
123    
124            @Override
125      public void onSaveInstanceState(Bundle outState)      public void onSaveInstanceState(Bundle outState)
126      {                {          
127          dismissDialog(DLG_PROGRESS);          dismissDialog(DLG_PROGRESS);
128          outState.putSerializable("timetables", (ArrayList<TimetableBean>) timetables);          outState.putSerializable("timetables", (TimetableBean) timetables);
129      }      }
130    
131                    
# Line 104  public class TimetableList extends ListA Line 159  public class TimetableList extends ListA
159                  fetcher.execute(departure.getType(), departure.getTrainNumber());                  fetcher.execute(departure.getType(), departure.getTrainNumber());
160          }          }
161                    
162            
163            public String getLastUpdateString(int lastUpdate) {
164                    String minutes = this.getString(R.string.departurebean_minutes);
165                    String unknown = this.getString(R.string.departurebean_unknown);
166                    switch (lastUpdate) {
167                    case 1:
168                            return "<3 " + minutes;
169                    case 2:
170                            return "3-10 " + minutes;
171                    case 3:
172                            return ">3 " + minutes;
173                    case 4:
174                            return unknown;
175                    default:
176                            return "";
177                    }
178            }
179    
180            
181          class TimetableFetcher extends AsyncTask<String,Void,Void> {          class TimetableFetcher extends AsyncTask<String,Void,Void> {
182                                    
                 boolean success;  
183                                    
184                  @Override                  @Override
185                  protected void onPostExecute(Void result) {                  protected void onPostExecute(Void result) {
186                          super.onPostExecute(result);                          super.onPostExecute(result);
187                          dismissDialog(DLG_PROGRESS);                          dismissDialog(DLG_PROGRESS);
188                    
189                                                    //TODO: differentiate between a communication error and a downed bane.dk site  
190                          if (success) {                          if (timetables != null && timetables.errorCode == null) {
191                                    commFailCounter = 0;
192                                    TimetableList.this.getListView().invalidateViews();
193                                  adapter.setTimetable(timetables);                                  adapter.setTimetable(timetables);
194                                  if (timetables.size() == 0) {                                  if (timetables.entries.size() == 0) {
195                                          MessageBox.showMessage(TimetableList.this, getString(timetablelist_nodata));                                          MessageBox.showMessage(TimetableList.this, getString(timetablelist_nodata), true);
196                                  }                                  }
197                          } else { // communication or parse error                          } else { // communication or parse error
198                                    commFailCounter++;
199                                  AlertDialog.Builder builder = new AlertDialog.Builder(TimetableList.this);                                                                                AlertDialog.Builder builder = new AlertDialog.Builder(TimetableList.this);                                              
200                                  builder.setMessage(getString(timetablelist_fetcherror));                                  
201                                    
202                                    if (timetables != null && timetables.errorCode != null ) { //got an error xml back
203                                            commFailCounter = 10;                                  
204                                            builder.setMessage( getString(R.string.no_backend) );
205                                    } else {
206                                            builder.setMessage(getString(timetablelist_fetcherror));        
207                                    }
208                                    
209                                  builder.setCancelable(true);                                  builder.setCancelable(true);
210                                  builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {                                  if (commFailCounter < 3) {
211                                          public void onClick(DialogInterface dialog, int id) {                                          builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
212                                                  dialog.dismiss();                                                  public void onClick(DialogInterface dialog, int id) {
213                                                  startTimetableFetcher();                                                          dialog.dismiss();
214                                                                                                            startTimetableFetcher();
215                                          }                                                          
216                                  });                                                  }
217                                            });
218                                    }
219                                  builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {                                  builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {
220                                          public void onClick(DialogInterface dialog, int id) {                                          public void onClick(DialogInterface dialog, int id) {
221                                                  dialog.dismiss();                                                  dialog.dismiss();
222                                                    TimetableList.this.finish();
223                                          }                                                                                                }                                                      
224                                  });                                  });
225                                                                    
# Line 150  public class TimetableList extends ListA Line 237  public class TimetableList extends ListA
237                  protected Void doInBackground(String... arg0) {                  protected Void doInBackground(String... arg0) {
238                          String type = arg0[0];                          String type = arg0[0];
239                          String trainID = arg0[1];                          String trainID = arg0[1];
240                          success = provider.lookupTimetable(type, trainID);                          timetables = provider.lookupTimetable(type, trainID);
                         timetables = provider.getTimetable(type, trainID);  
241                                                    
242                          return null;                          return null;
243                  }                  }

Legend:
Removed from v.839  
changed lines
  Added in v.1408

  ViewVC Help
Powered by ViewVC 1.1.20