1
1
package net .codebuff .intentio .parser ;
2
2
3
+ import android .content .ContentResolver ;
3
4
import android .content .Context ;
4
5
import android .net .Uri ;
5
6
import android .util .Log ;
7
+ import android .webkit .MimeTypeMap ;
6
8
7
9
import net .codebuff .intentio .helpers .Constants ;
8
10
import net .codebuff .intentio .helpers .Utilities ;
15
17
16
18
import java .io .File ;
17
19
import java .io .FileInputStream ;
20
+ import java .io .FileNotFoundException ;
18
21
import java .io .IOException ;
19
22
import java .io .InputStream ;
20
23
import java .util .Calendar ;
@@ -34,6 +37,7 @@ public class Parser {
34
37
private File excel ;
35
38
PrefsManager prefs ;
36
39
Uri uri ;
40
+ ContentResolver cR ;
37
41
38
42
public Parser (Context context ) {
39
43
// will be used when we move to restricted file storage.
@@ -51,24 +55,35 @@ public Parser() {
51
55
}
52
56
53
57
// following methods shows a giant middle finger, everytime someone does careless implementation,be careful
54
- public void open_file () {
55
-
56
- // the file will be hardcoded in some way later
57
- //File dir = Environment.getExternalStorageDirectory(); // dangerous implementation but serves practical purpose
58
-
59
- //File dir = context.getFilesDir(); // maybe we can switch to this later.
60
- //Log.i("external storage diretory", dir.getPath());
61
- //excel = new File(dir, "test.xls");
62
-
63
- if (uri .getLastPathSegment ().contains (".xlsx" )) {
64
- excel = null ;
65
- } else if (uri .getLastPathSegment ().contains (".xls" )) {
66
- excel = new File (uri .getPath ());
67
- } else {
68
- excel = null ;
58
+ public InputStream getInputStream () {
59
+ cR = context .getContentResolver ();
60
+ String uriStr = uri .toString ();
61
+ //Log.i("uri", uriStr );
62
+ if (uriStr .startsWith ("file://" )) {
63
+ // contentResolver can't get type from file links
64
+ // falling back to check for xls in string
65
+ if (uriStr .endsWith (".xls" )) {
66
+ try {
67
+ return cR .openInputStream (uri );
68
+ } catch (FileNotFoundException e ) {
69
+ e .printStackTrace ();
70
+ return null ;
71
+ }
72
+ }
73
+ } else if (uriStr .startsWith ("content://" )) {
74
+ // contentResolver can get the type
75
+ MimeTypeMap mime = MimeTypeMap .getSingleton ();
76
+ String type = mime .getExtensionFromMimeType (cR .getType (uri ));
77
+ if (type .equals ("xls" )) {
78
+ try {
79
+ return cR .openInputStream (uri );
80
+ } catch (FileNotFoundException e ) {
81
+ e .printStackTrace ();
82
+ return null ;
83
+ }
84
+ }
69
85
}
70
-
71
-
86
+ return null ;
72
87
}
73
88
74
89
public String parse_excel () throws IOException {
@@ -88,22 +103,23 @@ public String parse_excel() throws IOException {
88
103
89
104
String content = "" ;
90
105
91
- Calendar calendar = Calendar .getInstance ();
92
- // Log.e("day", calendar.getDisplayName(Calendar.DAY_OF_WEEK, Calendar.LONG, Locale.getDefault()));
93
- // find and open the xl file.
94
- open_file ();
106
+ InputStream inputStream = getInputStream ();
95
107
96
- if ((excel == null ) || (!excel .isFile ())) {
97
- // Toast.makeText(context, "File not found or incorrect file provided", Toast.LENGTH_LONG).show();
108
+ if (inputStream == null ) {
98
109
return "file not found" ;
99
- } else {
100
- prefs = new PrefsManager (context );
101
110
}
102
111
112
+ //Calendar calendar = Calendar.getInstance();
113
+ // Log.e("day", calendar.getDisplayName(Calendar.DAY_OF_WEEK, Calendar.LONG, Locale.getDefault()));
103
114
104
- InputStream inputStream = new FileInputStream (excel );
115
+ prefs = new PrefsManager (context );
116
+ try { // although we check at inputstream, a xlsx may still creep in.
117
+ wb = new HSSFWorkbook (inputStream );
118
+ } catch (Exception e ) {
119
+ e .printStackTrace ();
120
+ return "file not found" ;
121
+ }
105
122
106
- wb = new HSSFWorkbook (inputStream );
107
123
108
124
if (wb != null ) {
109
125
Log .e ("excel" , "starting dump" );
@@ -144,7 +160,7 @@ public String parse_excel() throws IOException {
144
160
if (cell_data .toLowerCase ().contains ("sun" )) {
145
161
last_day_row_found = true ;
146
162
}
147
- if (day_column_found && c == day_column_number ){
163
+ if (day_column_found && c == day_column_number ) {
148
164
day = Utilities .get_day_name (cell_data );
149
165
}
150
166
break ;
@@ -164,7 +180,7 @@ public String parse_excel() throws IOException {
164
180
if (cell_data .toLowerCase ().contains ("sun" )) {
165
181
last_day_row_found = true ;
166
182
}
167
- if (day_column_found && c == day_column_number ){
183
+ if (day_column_found && c == day_column_number ) {
168
184
day = Utilities .get_day_name (cell_data );
169
185
}
170
186
break ;
@@ -185,7 +201,7 @@ public String parse_excel() throws IOException {
185
201
if (cell_data .toLowerCase ().contains ("sun" )) {
186
202
last_day_row_found = true ;
187
203
}
188
- if (day_column_found && c == day_column_number ){
204
+ if (day_column_found && c == day_column_number ) {
189
205
day = Utilities .get_day_name (cell_data );
190
206
}
191
207
break ;
@@ -217,17 +233,17 @@ public String parse_excel() throws IOException {
217
233
218
234
if (schedule_found && !schedule_processed && slots_processed ) {
219
235
220
- // Log.e("row no",Integer.toString(row.getRowNum()));
221
- if (cell_data == null || cell_data .trim () == "" ) {
222
- cell_data = Constants .empty_slot ;
223
- }
224
- if (slots .containsKey (cell .getColumnIndex ()) && !day .equals ("invalid" )) {
225
- prefs .save_schedule (day , slots .get (cell .getColumnIndex ()), cell_data .trim ());
226
- }
236
+ // Log.e("row no",Integer.toString(row.getRowNum()));
237
+ if (cell_data == null || cell_data .trim () == "" ) {
238
+ cell_data = Constants .empty_slot ;
239
+ }
240
+ if (slots .containsKey (cell .getColumnIndex ()) && !day .equals ("invalid" )) {
241
+ prefs .save_schedule (day , slots .get (cell .getColumnIndex ()), cell_data .trim ());
242
+ }
227
243
228
- if (last_day_row_found && (c == (cells - 1 ))) {
229
- schedule_processed = true ;
230
- }
244
+ if (last_day_row_found && (c == (cells - 1 ))) {
245
+ schedule_processed = true ;
246
+ }
231
247
}
232
248
content = content + "CELL col=" + cell .getColumnIndex () + " VALUE="
233
249
+ value + "\n " ;
@@ -240,13 +256,14 @@ public String parse_excel() throws IOException {
240
256
if (schedule_processed ) break ;
241
257
242
258
}
259
+ } else {
260
+ content = "file not found" ;
243
261
}
244
262
//Log.i("content", content);
245
263
return content ;
246
264
}
247
265
248
266
249
-
250
267
}
251
268
252
269
0 commit comments