/[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 362 by torben, Tue Sep 29 21:30:16 2009 UTC revision 1416 by torben, Mon May 2 16:08:01 2011 UTC
# Line 1  Line 1 
1  package dk.thoerup.traininfo;  package dk.thoerup.traininfo;
2    
3    
4    import static dk.thoerup.traininfo.R.string.generic_cancel;
5    import static dk.thoerup.traininfo.R.string.generic_retry;
6    import static dk.thoerup.traininfo.R.string.timetablelist_fetchdata;
7    import static dk.thoerup.traininfo.R.string.timetablelist_fetcherror;
8    import static dk.thoerup.traininfo.R.string.timetablelist_nodata;
9    
10    import java.util.regex.Pattern;
11    
12    import android.app.AlertDialog;
13    import android.app.Dialog;
14  import android.app.ListActivity;  import android.app.ListActivity;
15    import android.app.ProgressDialog;
16    import android.content.DialogInterface;
17    import android.content.Intent;
18    import android.os.AsyncTask;
19  import android.os.Bundle;  import android.os.Bundle;
20    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;
29    import dk.thoerup.traininfo.provider.TimetableProvider;
30    import dk.thoerup.traininfo.util.MessageBox;
31    
32  public class TimetableList extends ListActivity {  public class TimetableList extends ListActivity {
33            
34            private static final int DLG_PROGRESS = 8000;
35            DepartureEntry departure;
36            TimetableListAdapter adapter;
37            TimetableFetcher fetcher;
38            TimetableBean timetables;
39            int commFailCounter = 0;
40            
41            TimetableProvider provider;
42    
43    
44          @Override          @Override
45          protected void onCreate(Bundle savedInstanceState) {          protected void onCreate(Bundle savedInstanceState) {
46                  super.onCreate(savedInstanceState);                  super.onCreate(savedInstanceState);
47                  setContentView(R.layout.timetablelist);                  setContentView(R.layout.timetablelist);
48                    
49                    provider = ProviderFactory.getTimetableProvider();
50                    
51                    adapter = new TimetableListAdapter(this);              
52                    setListAdapter(adapter);
53    
54    
55                    
56                    Intent launchedBy = getIntent();
57                    departure = (DepartureEntry) launchedBy.getSerializableExtra("departure");
58                    
59                    ((TextView)findViewById(R.id.Train)).setText(departure.getTrainNumber());
60                                    
61                    ((TextView)findViewById(R.id.Location)).setText(departure.getLocation());              
62                    ((TextView)findViewById(R.id.Updated)).setText( getLastUpdateString( departure.getUpdated() ));
63                    
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) {
88                            startTimetableFetcher();
89                    } else {
90                            timetables = (TimetableBean) savedInstanceState.getSerializable("timetables");
91                            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            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                    
111                    Intent intent = new Intent(this, DepartureList.class);
112                    intent.putExtra("stationbean", tt.getStationEntry() );
113                    startActivity(intent);
114                    
115          }          }
116  /*      
117   *              case DLG_DETAILS:  
118                          DepartureBean currentDeparture = departures.get(selectedItemId);  
119                          ((TextView)dialog.findViewById(R.id.Time)).setText(currentDeparture.getTime());          @Override
120                          ((TextView)dialog.findViewById(R.id.Train)).setText(currentDeparture.getTrainNumber());      public void onSaveInstanceState(Bundle outState)
121                          ((TextView)dialog.findViewById(R.id.Destination)).setText( currentDeparture.getDestination());      {          
122                          ((TextView)dialog.findViewById(R.id.Origin)).setText(currentDeparture.getOrigin());          dismissDialog(DLG_PROGRESS);
123                          ((TextView)dialog.findViewById(R.id.Location)).setText(currentDeparture.getLocation());          outState.putSerializable("timetables", (TimetableBean) timetables);
124                          ((TextView)dialog.findViewById(R.id.Updated)).setText(currentDeparture.getLastUpdateString());      }
125                          ((TextView)dialog.findViewById(R.id.Status)).setText(currentDeparture.getStatus());  
126                          ((TextView)dialog.findViewById(R.id.Note)).setText(currentDeparture.getNote());          
127                          detailsDialog = dialog;          @Override
128            protected void onPrepareDialog(int id, Dialog dialog) {
129                    super.onPrepareDialog(id, dialog);
130                    
131                    switch (id) {
132                    case DLG_PROGRESS:
133                            //pgDialog = (ProgressDialog) dialog;
134                          break;                          break;
135                    }
136            }
137            
138            @Override
139            protected Dialog onCreateDialog(int id) {
140                    switch (id) {
141                    case DLG_PROGRESS:
142                            ProgressDialog dlg = new ProgressDialog(this);                  
143                            dlg.setMessage( getString(timetablelist_fetchdata) );
144                            dlg.setCancelable(true);
145                            return dlg;                    
146                    default:
147                            return super.onCreateDialog(id);                
148                    }
149            }
150    
151            void startTimetableFetcher() {
152                    showDialog(DLG_PROGRESS);
153                    fetcher = new TimetableFetcher();
154                    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> {
177                    
178                    
179                    @Override
180                    protected void onPostExecute(Void result) {
181                            super.onPostExecute(result);
182                            dismissDialog(DLG_PROGRESS);
183            
184                            //TODO: differentiate between a communication error and a downed bane.dk site  
185                            if (timetables != null && timetables.errorCode == null) {
186                                    commFailCounter = 0;
187                                    TimetableList.this.getListView().invalidateViews();
188                                    adapter.setTimetable(timetables);
189                                    if (timetables.entries.size() == 0) {
190                                            MessageBox.showMessage(TimetableList.this, getString(timetablelist_nodata), true);
191                                    }
192                            } else { // communication or parse error
193                                    commFailCounter++;
194                                    AlertDialog.Builder builder = new AlertDialog.Builder(TimetableList.this);                                              
195                                    
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);
205                                    if (commFailCounter < 3) {
206                                            builder.setPositiveButton(getString(generic_retry), new DialogInterface.OnClickListener() {
207                                                    public void onClick(DialogInterface dialog, int id) {
208                                                            dialog.dismiss();
209                                                            startTimetableFetcher();
210                                                            
211                                                    }
212                                            });
213                                    }
214                                    builder.setNegativeButton(getString(generic_cancel), new DialogInterface.OnClickListener() {
215                                            public void onClick(DialogInterface dialog, int id) {
216                                                    dialog.dismiss();
217                                                    TimetableList.this.finish();
218                                            }                                                      
219                                    });
220                                    
221                                    try {
222                                            builder.show();
223                                    } catch (android.view.WindowManager.BadTokenException e) {                                      
224                                            Log.i("TimetableList", "BadTokenException"); // this can happen if the user switched away from this activity, while doInBackground was running
225                                    }
226                                                                    
227                            }
228                            
229                    }
230                    
231                    @Override
232                    protected Void doInBackground(String... arg0) {
233                            String type = arg0[0];
234                            String trainID = arg0[1];
235                            timetables = provider.lookupTimetable(type, trainID);
236                            
237                            return null;
238                    }
239                    
240            }
241  }  }

Legend:
Removed from v.362  
changed lines
  Added in v.1416

  ViewVC Help
Powered by ViewVC 1.1.20