/[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 918 by torben, Sat Jun 26 11:02:53 2010 UTC revision 1423 by torben, Mon May 2 17:14:29 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 22  import android.util.Log; Line 21  import android.util.Log;
21  import android.view.View;  import android.view.View;
22  import android.widget.ListView;  import android.widget.ListView;
23  import android.widget.TextView;  import android.widget.TextView;
24  import android.widget.Toast;  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 30  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 51  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          }          }
# Line 81  public class TimetableList extends ListA Line 105  public class TimetableList extends ListA
105          protected void onListItemClick(ListView l, View v, int position, long id) {          protected void onListItemClick(ListView l, View v, int position, long id) {
106                  super.onListItemClick(l, v, position, id);                  super.onListItemClick(l, v, position, id);
107    
108                  TimetableBean tt = timetables.get(position);                  TimetableEntry tt = timetables.entries.get(position);
109                                                                    
                 StationBean station = new StationBean();  
                 station.setName( tt.getStation() );  
                 station.setId( tt.getStationId() );  
                 station.setRegional(true);  
110                                    
111                  Intent intent = new Intent(this, DepartureList.class);                  Intent intent = new Intent(this, DepartureList.class);
112                  intent.putExtra("stationbean", station);                  intent.putExtra("stationbean", tt.getStationEntry() );
113                  startActivity(intent);                  startActivity(intent);
114                                    
115          }          }
# Line 100  public class TimetableList extends ListA Line 120  public class TimetableList extends ListA
120      public void onSaveInstanceState(Bundle outState)      public void onSaveInstanceState(Bundle outState)
121      {                {          
122          dismissDialog(DLG_PROGRESS);          dismissDialog(DLG_PROGRESS);
123          outState.putSerializable("timetables", (ArrayList<TimetableBean>) timetables);          outState.putSerializable("timetables", (TimetableBean) timetables);
124      }      }
125    
126                    
# Line 134  public class TimetableList extends ListA Line 154  public class TimetableList extends ListA
154                  fetcher.execute(departure.getType(), departure.getTrainNumber());                  fetcher.execute(departure.getType(), departure.getTrainNumber());
155          }          }
156                    
157            
158            public String getLastUpdateString(int lastUpdate) {
159                    String minutes = this.getString(R.string.departurebean_minutes);
160                    String unknown = this.getString(R.string.departurebean_unknown);
161                    switch (lastUpdate) {
162                    case 1:
163                            return "<3 " + minutes;
164                    case 2:
165                            return "3-10 " + minutes;
166                    case 3:
167                            return ">3 " + minutes;
168                    case 4:
169                            return unknown;
170                    default:
171                            return "";
172                    }
173            }
174    
175            
176          class TimetableFetcher extends AsyncTask<String,Void,Void> {          class TimetableFetcher extends AsyncTask<String,Void,Void> {
177                                    
                 boolean success;  
178                                    
179                  @Override                  @Override
180                  protected void onPostExecute(Void result) {                  protected void onPostExecute(Void result) {
181                          super.onPostExecute(result);                          super.onPostExecute(result);
182                          dismissDialog(DLG_PROGRESS);                          dismissDialog(DLG_PROGRESS);
183                    
184                            
185                          if (success) {                          if (timetables != null && timetables.errorCode == null) {
186                                    commFailCounter = 0;
187                                  TimetableList.this.getListView().invalidateViews();                                  TimetableList.this.getListView().invalidateViews();
188                                  adapter.setTimetable(timetables);                                  adapter.setTimetable(timetables);
189                                  if (timetables.size() == 0) {                                  if (timetables.entries.size() == 0) {
190                                          MessageBox.showMessage(TimetableList.this, getString(timetablelist_nodata), true);                                          MessageBox.showMessage(TimetableList.this, getString(timetablelist_nodata), true);
191                                  }                                  }
192                          } else { // communication or parse error                          } else { // communication or parse error
193                                    commFailCounter++;
194                                  AlertDialog.Builder builder = new AlertDialog.Builder(TimetableList.this);                                                                                AlertDialog.Builder builder = new AlertDialog.Builder(TimetableList.this);                                              
195                                  builder.setMessage(getString(timetablelist_fetcherror));                                  
196                                    
197                                    if (timetables != null && timetables.errorCode != null ) { //got an error xml back
198                                            commFailCounter = 10;                                  
199                                            builder.setMessage( getString(R.string.no_backend) );
200                                    } else {
201                                            builder.setMessage(getString(timetablelist_fetcherror));        
202                                    }
203                                    
204                                  builder.setCancelable(true);                                  builder.setCancelable(true);
205                                  builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {                                  if (commFailCounter < 3) {
206                                          public void onClick(DialogInterface dialog, int id) {                                          builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
207                                                  dialog.dismiss();                                                  public void onClick(DialogInterface dialog, int id) {
208                                                  startTimetableFetcher();                                                          dialog.dismiss();
209                                                                                                            startTimetableFetcher();
210                                          }                                                          
211                                  });                                                  }
212                                            });
213                                    }
214                                  builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {                                  builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {
215                                          public void onClick(DialogInterface dialog, int id) {                                          public void onClick(DialogInterface dialog, int id) {
216                                                  dialog.dismiss();                                                  dialog.dismiss();
# Line 182  public class TimetableList extends ListA Line 232  public class TimetableList extends ListA
232                  protected Void doInBackground(String... arg0) {                  protected Void doInBackground(String... arg0) {
233                          String type = arg0[0];                          String type = arg0[0];
234                          String trainID = arg0[1];                          String trainID = arg0[1];
235                          success = provider.lookupTimetable(type, trainID);                          timetables = provider.lookupTimetable(type, trainID);
                         timetables = provider.getTimetable(type, trainID);  
236                                                    
237                          return null;                          return null;
238                  }                  }

Legend:
Removed from v.918  
changed lines
  Added in v.1423

  ViewVC Help
Powered by ViewVC 1.1.20