summaryrefslogtreecommitdiff
path: root/navit/android/src/org/navitproject/navit/FileBrowserActivity.java
blob: dc7462b766674587975d8df0e29a46b62074c5a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
package org.navitproject.navit;

//Heavily based on code from
//https://github.com/mburman/Android-File-Explore
// Version of Aug 13, 2011
//Also contributed:
//  Sugan Krishnan (https://github.com/rgksugan) - Jan 2013.
//

//Project type now is Android library:
//  http://developer.android.com/guide/developing/projects/projects-eclipse.html#ReferencingLibraryProject

//Android imports
import android.app.Activity;
import android.content.Intent;
import android.content.res.Configuration;
import android.graphics.Color;
import android.os.Bundle;
import android.os.Environment;
import android.os.StatFs;
import android.util.Log;
import android.view.*;
import android.view.View.OnClickListener;
import android.view.ViewGroup.LayoutParams;
import android.widget.*;

//General Java imports
import java.io.File;
import java.io.FilenameFilter;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;

//Import of resources file for file browser
import org.navitproject.navit.R;

public class FileBrowserActivity extends Activity {
    // Intent Action Constants
    public static final String INTENT_ACTION_SELECT_DIR = "ua.com.vassiliev.androidfilebrowser.SELECT_DIRECTORY_ACTION";
    public static final String INTENT_ACTION_SELECT_FILE = "ua.com.vassiliev.androidfilebrowser.SELECT_FILE_ACTION";

    // Intent parameters names constants
    public static final String startDirectoryParameter = "ua.com.vassiliev.androidfilebrowser.directoryPath";
    public static final String returnDirectoryParameter = "ua.com.vassiliev.androidfilebrowser.directoryPathRet";
    public static final String returnFileParameter = "ua.com.vassiliev.androidfilebrowser.filePathRet";
    public static final String showCannotReadParameter = "ua.com.vassiliev.androidfilebrowser.showCannotRead";
    public static final String filterExtension = "ua.com.vassiliev.androidfilebrowser.filterExtension";

    // Stores names of traversed directories
    ArrayList<String> pathDirsList = new ArrayList<String>();

    // Check if the first level of the directory structure is the one showing
    // private Boolean firstLvl = true;

    private static final String LOGTAG = "F_PATH";

    private List<Item> fileList = new ArrayList<Item>();
    private File path = null;
    private String chosenFile;
    // private static final int DIALOG_LOAD_FILE = 1000;

    ArrayAdapter<Item> adapter;

    private boolean showHiddenFilesAndDirs = true;

    private boolean directoryShownIsEmpty = false;

    private String filterFileExtension = null;

    // Action constants
    private static int currentAction = -1;
    private static final int SELECT_DIRECTORY = 1;
    private static final int SELECT_FILE = 2;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // In case of
        // ua.com.vassiliev.androidfilebrowser.SELECT_DIRECTORY_ACTION
        // Expects com.mburman.fileexplore.directoryPath parameter to
        // point to the start folder.
        // If empty or null, will start from SDcard root.
        setContentView(R.layout.ua_com_vassiliev_filebrowser_layout);

        // Set action for this activity
        Intent thisInt = this.getIntent();
        currentAction = SELECT_DIRECTORY;// This would be a default action in
        // case not set by intent
        if (thisInt.getAction().equalsIgnoreCase(INTENT_ACTION_SELECT_FILE)) {
            Log.d(LOGTAG, "SELECT ACTION - SELECT FILE");
            currentAction = SELECT_FILE;
        }

        showHiddenFilesAndDirs = thisInt.getBooleanExtra(
                                     showCannotReadParameter, true);

        filterFileExtension = thisInt.getStringExtra(filterExtension);

        setInitialDirectory();

        parseDirectoryPath();
        loadFileList();
        this.createFileListAdapter();
        this.initializeButtons();
        this.initializeFileListView();
        updateCurrentDirectoryTextView();
        Log.d(LOGTAG, path.getAbsolutePath());
    }

    private void setInitialDirectory() {
        Intent thisInt = this.getIntent();
        String requestedStartDir = thisInt
                                   .getStringExtra(startDirectoryParameter);

        if (requestedStartDir != null && requestedStartDir.length() > 0) { // if(requestedStartDir!=null
            File tempFile = new File(requestedStartDir);
            if (tempFile.isDirectory()) {
                this.path = tempFile;
            }
        } // if(requestedStartDir!=null

        if (this.path == null) { // No or invalid directory supplied in intent parameter
            if (Environment.getExternalStorageDirectory().isDirectory()
                    && Environment.getExternalStorageDirectory().canRead()) {
                path = Environment.getExternalStorageDirectory();
            } else {
                path = new File("/");
            }
        } // if(this.path==null) {//No or invalid directory supplied in intent parameter
    } // private void setInitialDirectory() {

    private void parseDirectoryPath() {
        pathDirsList.clear();
        String pathString = path.getAbsolutePath();
        String[] parts = pathString.split("/");
        int i = 0;
        while (i < parts.length) {
            pathDirsList.add(parts[i]);
            i++;
        }
    }

    private void initializeButtons() {
        Button upDirButton = (Button) this.findViewById(R.id.upDirectoryButton);
        upDirButton.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                Log.d(LOGTAG, "onclick for upDirButton");
                loadDirectoryUp();
                loadFileList();
                adapter.notifyDataSetChanged();
                updateCurrentDirectoryTextView();
            }
        });// upDirButton.setOnClickListener(

        Button selectFolderButton = (Button) this
                                    .findViewById(R.id.selectCurrentDirectoryButton);
        if (currentAction == SELECT_DIRECTORY) {
            selectFolderButton.setOnClickListener(new OnClickListener() {
                public void onClick(View v) {
                    Log.d(LOGTAG, "onclick for selectFolderButton");
                    returnDirectoryFinishActivity();
                }
            });
        } else { // if(currentAction == this.SELECT_DIRECTORY) {
            selectFolderButton.setVisibility(View.GONE);
        } // } else {//if(currentAction == this.SELECT_DIRECTORY) {
    } // private void initializeButtons() {

    private void loadDirectoryUp() {
        // present directory removed from list
        String s = pathDirsList.remove(pathDirsList.size() - 1);
        // path modified to exclude present directory
        path = new File(path.toString().substring(0,
                        path.toString().lastIndexOf(s)));
        fileList.clear();
    }

    private void updateCurrentDirectoryTextView() {
        int i = 0;
        String curDirString = "";
        while (i < pathDirsList.size()) {
            curDirString += pathDirsList.get(i) + "/";
            i++;
        }
        if (pathDirsList.size() == 0) {
            ((Button) this.findViewById(R.id.upDirectoryButton))
            .setEnabled(false);
            curDirString = "/";
        } else {
            ((Button) this.findViewById(R.id.upDirectoryButton))
            .setEnabled(true);
        }
        long freeSpace = getFreeSpace(curDirString);
        String formattedSpaceString = formatBytes(freeSpace);
        if (freeSpace == 0) {
            Log.d(LOGTAG, "NO FREE SPACE");
            File currentDir = new File(curDirString);
            if (!currentDir.canWrite()) {
                formattedSpaceString = "NON Writable";
            }
        }

        ((Button) this.findViewById(R.id.selectCurrentDirectoryButton))
        .setText("Select\n[" + formattedSpaceString + "]");

        ((TextView) this.findViewById(R.id.currentDirectoryTextView))
        .setText("Current directory: " + curDirString);
    } // END private void updateCurrentDirectoryTextView() {

    private void showToast(String message) {
        Toast.makeText(this, message, Toast.LENGTH_LONG).show();
    }

    private void initializeFileListView() {
        ListView lView = (ListView) this.findViewById(R.id.fileListView);
        LinearLayout.LayoutParams lParam = new LinearLayout.LayoutParams(
                LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);
        lParam.setMargins(15, 5, 15, 5);
        lView.setAdapter(this.adapter);
        lView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            public void onItemClick(AdapterView<?> parent, View view,
                                    int position, long id) {
                chosenFile = fileList.get(position).file;
                File sel = new File(path + "/" + chosenFile);
                Log.d(LOGTAG, "Clicked:" + chosenFile);
                if (sel.isDirectory()) {
                    if (sel.canRead()) {
                        // Adds chosen directory to list
                        pathDirsList.add(chosenFile);
                        path = new File(sel + "");
                        Log.d(LOGTAG, "Just reloading the list");
                        loadFileList();
                        adapter.notifyDataSetChanged();
                        updateCurrentDirectoryTextView();
                        Log.d(LOGTAG, path.getAbsolutePath());
                    } else { // if(sel.canRead()) {
                        showToast("Path does not exist or cannot be read");
                    } // } else {//if(sel.canRead()) {
                } else { // if (sel.isDirectory()) {
                    // File picked or an empty directory message clicked
                    Log.d(LOGTAG, "item clicked");
                    if (!directoryShownIsEmpty) {
                        Log.d(LOGTAG, "File selected:" + chosenFile);
                        returnFileFinishActivity(sel.getAbsolutePath());
                    }
                } // else {//if (sel.isDirectory()) {
            } // public void onClick(DialogInterface dialog, int which) {
        }); // lView.setOnClickListener(
    } // private void initializeFileListView() {

    private void returnDirectoryFinishActivity() {
        Intent retIntent = new Intent();
        retIntent.putExtra(returnDirectoryParameter, path.getAbsolutePath());
        this.setResult(RESULT_OK, retIntent);
        this.finish();
    } // END private void returnDirectoryFinishActivity() {

    private void returnFileFinishActivity(String filePath) {
        Intent retIntent = new Intent();
        retIntent.putExtra(returnFileParameter, filePath);
        this.setResult(RESULT_OK, retIntent);
        this.finish();
    } // END private void returnDirectoryFinishActivity() {

    private void loadFileList() {
        try {
            path.mkdirs();
        } catch (SecurityException e) {
            Log.e(LOGTAG, "unable to write on the sd card ");
        }
        fileList.clear();

        if (path.exists() && path.canRead()) {
            FilenameFilter filter = new FilenameFilter() {
                public boolean accept(File dir, String filename) {
                    File sel = new File(dir, filename);
                    boolean showReadableFile = showHiddenFilesAndDirs
                                               || sel.canRead();
                    // Filters based on whether the file is hidden or not
                    if (currentAction == SELECT_DIRECTORY) {
                        return (sel.isDirectory() && showReadableFile);
                    }
                    if (currentAction == SELECT_FILE) {

                        // If it is a file check the extension if provided
                        if (sel.isFile() && filterFileExtension != null) {
                            return (showReadableFile && sel.getName().endsWith(
                                        filterFileExtension));
                        }
                        return (showReadableFile);
                    }
                    return true;
                } // public boolean accept(File dir, String filename) {
            }; // FilenameFilter filter = new FilenameFilter() {

            String[] fList = path.list(filter);
            this.directoryShownIsEmpty = false;
            for (int i = 0; i < fList.length; i++) {
                // Convert into file path
                File sel = new File(path, fList[i]);
                Log.d(LOGTAG, "File:" + fList[i] + " readable:" + (Boolean.valueOf(sel.canRead())).toString());
                int drawableID = R.drawable.file_icon;
                boolean canRead = sel.canRead();
                // Set drawables
                if (sel.isDirectory()) {
                    if (canRead) {
                        drawableID = R.drawable.folder_icon;
                    } else {
                        drawableID = R.drawable.folder_icon_light;
                    }
                }
                fileList.add(i, new Item(fList[i], drawableID, canRead));
            } // for (int i = 0; i < fList.length; i++) {
            if (fileList.size() == 0) {
                // Log.d(LOGTAG, "This directory is empty");
                this.directoryShownIsEmpty = true;
                fileList.add(0, new Item("Directory is empty", -1, true));
            } else { // sort non empty list
                Collections.sort(fileList, new ItemFileNameComparator());
            }
        } else {
            Log.e(LOGTAG, "path does not exist or cannot be read");
        }
        // Log.d(TAG, "loadFileList finished");
    } // private void loadFileList() {

    private void createFileListAdapter() {
        adapter = new ArrayAdapter<Item>(this,
                                         android.R.layout.select_dialog_item, android.R.id.text1,
        fileList) {
            @Override
            public View getView(int position, View convertView, ViewGroup parent) {
                // creates view
                View view = super.getView(position, convertView, parent);
                TextView textView = (TextView) view
                                    .findViewById(android.R.id.text1);
                // put the image on the text view
                int drawableID = 0;
                if (fileList.get(position).icon != -1) {
                    // If icon == -1, then directory is empty
                    drawableID = fileList.get(position).icon;
                }
                textView.setCompoundDrawablesWithIntrinsicBounds(drawableID, 0,
                        0, 0);

                textView.setEllipsize(null);

                // add margin between image and text (support various screen
                // densities)
                // int dp5 = (int) (5 *
                // getResources().getDisplayMetrics().density + 0.5f);
                int dp3 = (int) (3 * getResources().getDisplayMetrics().density + 0.5f);
                // TODO: change next line for empty directory, so text will be
                // centered
                textView.setCompoundDrawablePadding(dp3);
                return view;
            } // public View getView(int position, View convertView, ViewGroup
        }; // adapter = new ArrayAdapter<Item>(this,
    } // private createFileListAdapter(){

    private class Item {
        public String file;
        public int icon;
        public boolean canRead;

        public Item(String file, Integer icon, boolean canRead) {
            this.file = file;
            this.icon = icon;
        }

        @Override
        public String toString() {
            return file;
        }
    } // END private class Item {

    private class ItemFileNameComparator implements Comparator<Item> {
        public int compare(Item lhs, Item rhs) {
            return lhs.file.toLowerCase().compareTo(rhs.file.toLowerCase());
        }
    }

    public void onConfigurationChanged(Configuration newConfig) {
        super.onConfigurationChanged(newConfig);
        if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
            Log.d(LOGTAG, "ORIENTATION_LANDSCAPE");
        } else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT) {
            Log.d(LOGTAG, "ORIENTATION_PORTRAIT");
        }
        // Layout apparently changes itself, only have to provide good onMeasure
        // in custom components
        // TODO: check with keyboard
        // if(newConfig.keyboard == Configuration.KEYBOARDHIDDEN_YES)
    } // END public void onConfigurationChanged(Configuration newConfig) {

    public static long getFreeSpace(String path) {
        StatFs stat = new StatFs(path);
        long availSize = (long) stat.getAvailableBlocks()
                         * (long) stat.getBlockSize();
        return availSize;
    } // END public static long getFreeSpace(String path) {

    public static String formatBytes(long bytes) {
        // TODO: add flag to which part is needed (e.g. GB, MB, KB or bytes)
        String retStr = "";
        // One binary gigabyte equals 1,073,741,824 bytes.
        if (bytes > 1073741824) { // Add GB
            long gbs = bytes / 1073741824;
            retStr += (new Long(gbs)).toString() + "GB ";
            bytes = bytes - (gbs * 1073741824);
        }
        // One MB - 1048576 bytes
        if (bytes > 1048576) { // Add GB
            long mbs = bytes / 1048576;
            retStr += (new Long(mbs)).toString() + "MB ";
            bytes = bytes - (mbs * 1048576);
        }
        if (bytes > 1024) {
            long kbs = bytes / 1024;
            retStr += (new Long(kbs)).toString() + "KB";
            bytes = bytes - (kbs * 1024);
        } else {
            retStr += (new Long(bytes)).toString() + " bytes";
        }
        return retStr;
    } // public static String formatBytes(long bytes){

} // END public class FileBrowserActivity extends Activity {