/android/export-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/export-contacts

« back to all changes in this revision

Viewing changes to src/org/waxworlds/edam/exportcontacts/FileChooser.java

  • Committer: edam
  • Date: 2010-10-22 18:56:17 UTC
  • Revision ID: edam@waxworlds.org-20101022185617-6p6ivjqt28avwlzo
- added file chooser
- changed directory edit box for a directory "browse" button
- wired file chooser in to configure vcf page
- fixed intro
- made app debuggable
- added licence and changelog

Show diffs side-by-side

added added

removed removed

1
1
/*
2
2
 * FileChooser.java
3
3
 *
4
 
 * Copyright (C) 2010 Tim Marston <tim@ed.am>
 
4
 * Copyright (C) 2010 Tim Marston <edam@waxworlds.org>
5
5
 *
6
6
 * This file is part of the Export Contacts program (hereafter referred
7
 
 * to as "this program").  For more information, see
8
 
 * http://ed.am/dev/android/export-contacts
 
7
 * to as "this program"). For more information, see
 
8
 * http://www.waxworlds.org/edam/software/android/export-contacts
9
9
 *
10
10
 * This program is free software: you can redistribute it and/or modify
11
11
 * it under the terms of the GNU General Public License as published by
21
21
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
22
 */
23
23
 
24
 
package am.ed.exportcontacts;
 
24
package org.waxworlds.edam.exportcontacts;
25
25
 
26
26
import java.io.File;
27
27
import java.io.FileFilter;
28
 
import java.io.IOException;
29
28
import java.util.ArrayList;
30
 
import java.util.Collections;
31
 
import java.util.Comparator;
32
29
 
33
30
import android.app.AlertDialog;
34
31
import android.app.Dialog;
35
32
import android.content.Context;
36
33
import android.content.DialogInterface;
37
 
import android.os.Environment;
38
34
import android.view.LayoutInflater;
39
35
import android.view.View;
40
36
import android.view.View.OnClickListener;
59
55
        private Dialog _dialog;
60
56
 
61
57
        // mode
62
 
        private int _mode = MODE_DIR;
63
 
 
64
 
        // ok was pressed
65
 
        boolean _ok = false;
 
58
        private int _mode;
66
59
 
67
60
        // working path
68
61
        private String _path;
69
62
 
70
 
        // selected filename
71
 
        private String _filename;
72
 
 
73
63
        // enforce extension (in file-mode)
74
64
        private String[] _extensions;
75
65
 
81
71
        private DialogInterface.OnDismissListener _on_dismiss_listener;
82
72
 
83
73
        // class that represents a row in the list
84
 
        private class RowItem implements Comparable< RowItem >
 
74
        private class RowItem
85
75
        {
86
76
                private String _name;
87
77
                private boolean _directory;
101
91
                {
102
92
                        return _directory;
103
93
                }
104
 
 
105
 
                @Override
106
 
                public int compareTo( RowItem that )
107
 
                {
108
 
                        if( this._directory && !that._directory )
109
 
                                return -1;
110
 
                        else if( !this._directory && that._directory )
111
 
                                return 1;
112
 
                        else
113
 
                                return this._name.compareToIgnoreCase( that._name );
114
 
                }
115
94
        }
116
95
 
117
96
        // class to manage our list of RowItems
136
115
                        }
137
116
                        RowItem rowitem = _items.get( position );
138
117
                        if( rowitem != null ) {
139
 
                                ( (TextView)view.findViewById( R.id.name ) )
 
118
                                ( (TextView)view.findViewById( R.id.path ) )
140
119
                                        .setText( rowitem.getName() );
141
120
                                ( (ImageView)view.findViewById( R.id.icon ) ).setVisibility(
142
121
                                        rowitem.isDirectory()? View.VISIBLE : View.GONE );
145
124
                }
146
125
        }
147
126
 
148
 
        @SuppressWarnings( "serial" )
149
127
        class InvalidPathPrefixException extends RuntimeException
150
128
        {
151
129
        }
153
131
 
154
132
 
155
133
        // constructor
156
 
        public FileChooser( Context context )
157
 
        {
158
 
                _context = context;
159
 
        }
160
 
 
161
 
        public void setMode( int mode )
 
134
        public FileChooser( int mode )
162
135
        {
163
136
                _mode = mode;
164
137
        }
166
139
        public void setPath( String path )
167
140
        {
168
141
                _path = cleanUpPath( path );
169
 
                File file = new File( _path_prefix + path.trim() );
170
 
 
171
 
                // path and filename
172
 
                if( file.isFile() ) {
173
 
                        _path = _path.substring( 0, _path.length() - 1 );
174
 
                        _filename = _path.substring( _path.lastIndexOf( '/' ) + 1 );
175
 
                        _path = _path.substring( 0, _path.length() - _filename.length() );
176
 
                }
177
 
 
178
 
                // else, treat as just a path
179
 
                else
180
 
                        _filename = "";
181
142
        }
182
143
 
183
144
        public void setExtensions( String[] extensions )
201
162
                _path_prefix = _path_prefix.substring( 0, _path_prefix.length() - 1 );
202
163
        }
203
164
 
204
 
        public boolean getOk()
205
 
        {
206
 
                return _ok;
207
 
        }
208
 
 
209
165
        public String getPath()
210
166
        {
211
 
                return _path + _filename;
 
167
                return _path;
212
168
        }
213
169
 
214
 
        public Dialog onCreateDialog()
 
170
        public Dialog onCreateDialog( Context context )
215
171
        {
 
172
                _context = context;
 
173
 
216
174
                // custom layout in an AlertDialog
217
 
                LayoutInflater factory = LayoutInflater.from( _context );
 
175
                LayoutInflater factory = LayoutInflater.from( context );
218
176
                final View dialogView = factory.inflate(
219
177
                        R.layout.filechooser, null );
220
178
 
225
183
                        .setOnItemClickListener( _fileChooserItemClickListener );
226
184
 
227
185
                // return dialog
228
 
                Dialog dialog = new AlertDialog.Builder( _context )
 
186
                Dialog dialog = new AlertDialog.Builder( context )
229
187
                        .setTitle( " " )
230
188
                        .setView( dialogView )
231
189
                        .create();
240
198
                        {
241
199
                        case R.id.ok:
242
200
                                // close dialog and free (don't keep a reference)
243
 
                                _ok = true;
244
201
                                _dialog.dismiss();
245
202
                                break;
246
203
                        }
248
205
        };
249
206
 
250
207
        private OnItemClickListener _fileChooserItemClickListener = new OnItemClickListener() {
251
 
                public void onItemClick( AdapterView< ? > adapterView, View view, int position, long id )
 
208
                public void onItemClick( AdapterView adapterView, View view, int position, long id )
252
209
                {
253
210
                        RowItem rowitem = _items.get( position );
254
211
 
260
217
                                        strtipLastFilepartFromPath();
261
218
                                else
262
219
                                        _path += dirname + "/";
263
 
                                _filename = "";
264
220
 
265
 
                                updateList();
 
221
                                populateList();
266
222
                        }
267
 
 
268
 
                        // handle file selections
269
223
                        else
270
224
                        {
271
 
                                _filename = rowitem.getName();
272
 
                                updateCurrentSelection();
 
225
 
273
226
                        }
274
227
                }
275
228
        };
280
233
                _dialog = dialog;
281
234
                _context = context;
282
235
 
283
 
                // reset "ok"
284
 
                _ok = false;
285
 
 
286
 
                // pick text based on mode
287
 
                int title = 0, current = 0;
 
236
                // pick title
 
237
                int title = 0;
288
238
                switch( _mode ) {
289
 
                case MODE_DIR:
290
 
                        title = R.string.filechooser_title_dir;
291
 
                        current = R.string.filechooser_current_dir;
292
 
                        break;
293
 
                case MODE_FILE:
294
 
                        title = R.string.filechooser_title_file;
295
 
                        current = R.string.filechooser_current_file;
296
 
                        break;
 
239
                case MODE_DIR: title = R.string.filechooser_title_dir; break;
 
240
                case MODE_FILE: title = R.string.filechooser_title_file; break;
297
241
                }
298
242
                dialog.setTitle( title );
299
 
                ( (TextView)dialog.findViewById( R.id.current ) )
300
 
                        .setText( _context.getString(  current ) );
301
 
 
302
 
                // clear filename in directory mode
303
 
                if( _mode == MODE_DIR )
304
 
                        _filename = "";
305
243
 
306
244
                // set root path icon
307
245
                ( (ImageView)_dialog.findViewById( R.id.icon ) )
308
246
                        .setImageResource( pathIcon( cleanUpPath( _path_prefix ) ) );
309
247
 
310
248
                // setup current-path-specific stuff
311
 
                updateList();
 
249
                populateList();
312
250
        }
313
251
 
314
252
        public static String cleanUpPath( String path )
324
262
 
325
263
        public static int pathIcon( String path )
326
264
        {
327
 
                // get sdcard path
328
 
                String sdcard_path;
329
 
                try {
330
 
                        sdcard_path = Environment.getExternalStorageDirectory()
331
 
                                .getCanonicalPath();
332
 
                        if( sdcard_path.charAt( sdcard_path.length() - 1 ) != '/' )
333
 
                                sdcard_path += "/";
334
 
                }
335
 
                catch( IOException e ) {
336
 
                        sdcard_path = null;
337
 
                }
338
 
 
339
 
                // special paths
340
 
                if( sdcard_path != null && path.equals( sdcard_path ) )
 
265
                if( path.equals( "/sdcard/" ) )
341
266
                        return R.drawable.sdcard;
342
267
 
343
 
                // default
344
268
                return R.drawable.directory;
345
269
        }
346
270
 
347
 
        public String prettyPrint( String full_path, boolean return_full )
 
271
        public static String prettyPrint( Context context, String path,
 
272
                boolean full_path )
348
273
        {
349
 
                String path = full_path;
350
 
 
351
 
                // get sdcard path
352
 
                String sdcard_path;
353
 
                try {
354
 
                        sdcard_path = Environment.getExternalStorageDirectory()
355
 
                                .getCanonicalPath();
356
 
                        if( sdcard_path.charAt( sdcard_path.length() - 1 ) != '/' )
357
 
                                sdcard_path += "/";
358
 
                }
359
 
                catch( IOException e ) {
360
 
                        sdcard_path = null;
361
 
                }
362
 
 
363
 
                // special names
364
 
                if( sdcard_path != null && path.equals( sdcard_path ) )
365
 
                        return " " + _context.getString( R.string.filechooser_path_sdcard );
366
 
 
367
 
                // remove prefix, if present
368
 
                if( path.startsWith( _path_prefix + "/" ) )
369
 
                        path = path.substring( _path_prefix.length() );
370
 
 
371
 
                // unless path is "/", strip trailing "/"
 
274
                if( path.equals( "/sdcard/" ) )
 
275
                        return context.getString( R.string.filechooser_path_sdcard );
 
276
 
 
277
                // unless path is "/", strip trailing "/".
372
278
                if( path.length() > 1 && path.endsWith( "/" ) )
373
279
                        path = path.substring( 0, path.length() - 1 );
374
280
 
375
281
                // if full path not required, strip off preceding directories
376
 
                if( !return_full ) {
 
282
                if( !full_path ) {
377
283
                        int idx = path.lastIndexOf( "/" );
378
284
                        if( idx != -1 ) path = path.substring( idx + 1 );
379
285
                }
387
293
                if( at != -1 ) _path = _path.substring( 0, at + 1 );
388
294
        }
389
295
 
390
 
        protected void updateList()
 
296
        protected void populateList()
391
297
        {
392
298
                // reset item list
393
299
                _items = new ArrayList< RowItem >();
412
318
                        }
413
319
                }
414
320
                File[] files = dir.listFiles( new DirFilter() );
415
 
                if( files != null )
416
 
                        for( int i = 0; i < files.length; i++ )
417
 
                                _items.add( new RowItem( files[ i ].getName(), true ) );
 
321
                for( int i = 0; i < files.length; i++ )
 
322
                        _items.add( new RowItem( files[ i ].getName(), true ) );
418
323
 
419
324
                // get files
420
325
                if( _mode == MODE_FILE )
431
336
                                }
432
337
                        }
433
338
                        files = dir.listFiles( new VCardFilter() );
434
 
                        if( files != null )
435
 
                                for( int i = 0; i < files.length; i++ )
436
 
                                        _items.add( new RowItem( files[ i ].getName(), false ) );
437
 
                }
438
 
 
439
 
                // sort
440
 
                class RowItemSorter implements Comparator< RowItem > {
441
 
                        @Override
442
 
                        public int compare( RowItem lhs, RowItem rhs ) {
443
 
                                return lhs.compareTo( rhs );
444
 
                        }
445
 
                }
446
 
                Collections.sort( _items, new RowItemSorter() );
 
339
                        for( int i = 0; i < files.length; i++ )
 
340
                                _items.add( new RowItem( files[ i ].getName(), false ) );
 
341
                }
447
342
 
448
343
                // setup directory list
449
344
                ( (ListView)_dialog.findViewById( R.id.list ) ).setAdapter(
450
345
                        new RowItemAdapter( _context, R.layout.filechooser_row,
451
346
                                _items ) );
452
347
 
453
 
                updateCurrentSelection();
454
 
        }
455
 
 
456
 
        private void updateCurrentSelection()
457
 
        {
458
348
                // set current path
459
 
                ( (TextView)_dialog.findViewById( R.id.path ) ).setText(
460
 
                        prettyPrint( _path_prefix + _path + _filename, true ) );
461
 
 
462
 
                // enable/disable ok button
463
 
                if( _mode == MODE_FILE )
464
 
                        _dialog.findViewById( R.id.ok ).setEnabled( _filename != "" );
465
 
                else
466
 
                        _dialog.findViewById( R.id.ok ).setEnabled( true );
 
349
                String pretty_path =
 
350
                        prettyPrint( _context, _path_prefix + _path, true );
 
351
                if( pretty_path.startsWith( _path_prefix ) )
 
352
                        pretty_path = pretty_path.substring( _path_prefix.length() );
 
353
                if( !pretty_path.startsWith( "/" ) )
 
354
                        pretty_path = " " + pretty_path;
 
355
                ( (TextView)_dialog.findViewById( R.id.path ) ).setText( pretty_path );
467
356
        }
468
357
 
469
358
}