]> gitweb.fperrin.net Git - Dictionary.git/blob - src/com/hughes/android/dictionary/DictionaryManagerActivity.java
Remove dead code.
[Dictionary.git] / src / com / hughes / android / dictionary / DictionaryManagerActivity.java
1 // Copyright 2011 Google Inc. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //     http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 package com.hughes.android.dictionary;
16
17 import android.Manifest;
18 import android.app.AlertDialog;
19 import android.app.DownloadManager;
20 import android.app.DownloadManager.Request;
21 import android.content.BroadcastReceiver;
22 import android.content.ContentResolver;
23 import android.content.Context;
24 import android.content.Intent;
25 import android.content.IntentFilter;
26 import android.content.SharedPreferences;
27 import android.content.SharedPreferences.Editor;
28 import android.content.pm.PackageManager;
29 import android.database.Cursor;
30 import android.net.Uri;
31 import android.os.Bundle;
32 import android.os.Environment;
33 import android.os.Handler;
34 import android.preference.PreferenceManager;
35 import android.provider.Settings;
36 import android.support.v4.app.ActivityCompat;
37 import android.support.v4.content.ContextCompat;
38 import android.support.v4.view.MenuItemCompat;
39 import android.support.v7.app.ActionBar;
40 import android.support.v7.app.ActionBarActivity;
41 import android.support.v7.widget.SearchView;
42 import android.support.v7.widget.SearchView.OnQueryTextListener;
43 import android.support.v7.widget.Toolbar;
44 import android.text.InputType;
45 import android.util.Log;
46 import android.util.TypedValue;
47 import android.view.ContextMenu;
48 import android.view.ContextMenu.ContextMenuInfo;
49 import android.view.LayoutInflater;
50 import android.view.Menu;
51 import android.view.MenuItem;
52 import android.view.View;
53 import android.view.View.OnClickListener;
54 import android.view.ViewGroup;
55 import android.view.inputmethod.EditorInfo;
56 import android.view.inputmethod.InputMethodManager;
57 import android.widget.AdapterView.AdapterContextMenuInfo;
58 import android.widget.BaseAdapter;
59 import android.widget.Button;
60 import android.widget.CompoundButton;
61 import android.widget.CompoundButton.OnCheckedChangeListener;
62 import android.widget.FrameLayout;
63 import android.widget.LinearLayout;
64 import android.widget.ListAdapter;
65 import android.widget.ListView;
66 import android.widget.TextView;
67 import android.widget.Toast;
68 import android.widget.ToggleButton;
69
70 import com.hughes.android.dictionary.DictionaryInfo.IndexInfo;
71 import com.hughes.android.util.IntentLauncher;
72
73 import java.io.BufferedInputStream;
74 import java.io.File;
75 import java.io.FileInputStream;
76 import java.io.FileOutputStream;
77 import java.io.IOException;
78 import java.io.InputStream;
79 import java.io.OutputStream;
80 import java.net.MalformedURLException;
81 import java.net.URL;
82 import java.nio.ByteBuffer;
83 import java.nio.channels.FileChannel;
84 import java.util.Collections;
85 import java.util.HashSet;
86 import java.util.List;
87 import java.util.Set;
88 import java.util.zip.ZipEntry;
89 import java.util.zip.ZipFile;
90 import java.util.zip.ZipInputStream;
91
92 // Right-click:
93 //  Delete, move to top.
94
95 public class DictionaryManagerActivity extends ActionBarActivity {
96
97     static final String LOG = "QuickDic";
98     static boolean blockAutoLaunch = false;
99
100     private ListView listView;
101     private ListView getListView() {
102         if (listView == null) {
103             listView = (ListView)findViewById(android.R.id.list);
104         }
105         return listView;
106     }
107     private void setListAdapter(ListAdapter adapter) {
108         getListView().setAdapter(adapter);
109     }
110     private ListAdapter getListAdapter() {
111         return getListView().getAdapter();
112     }
113
114     // For DownloadManager bug workaround
115     private Set<Long> finishedDownloadIds = new HashSet<Long>();
116
117     DictionaryApplication application;
118
119     SearchView filterSearchView;
120     ToggleButton showDownloadable;
121
122     LinearLayout dictionariesOnDeviceHeaderRow;
123     LinearLayout downloadableDictionariesHeaderRow;
124
125     Handler uiHandler;
126
127     Runnable dictionaryUpdater = new Runnable() {
128         @Override
129         public void run() {
130             if (uiHandler == null) {
131                 return;
132             }
133             uiHandler.post(new Runnable() {
134                 @Override
135                 public void run() {
136                     setMyListAdapater();
137                 }
138             });
139         }
140     };
141
142     final BroadcastReceiver broadcastReceiver = new BroadcastReceiver() {
143         @Override
144         public synchronized void onReceive(Context context, Intent intent) {
145             final String action = intent.getAction();
146
147             if (DownloadManager.ACTION_DOWNLOAD_COMPLETE.equals(action)) {
148                 final long downloadId = intent.getLongExtra(
149                                             DownloadManager.EXTRA_DOWNLOAD_ID, 0);
150                 if (finishedDownloadIds.contains(downloadId)) return; // ignore double notifications
151                 final DownloadManager.Query query = new DownloadManager.Query();
152                 query.setFilterById(downloadId);
153                 final DownloadManager downloadManager = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
154                 final Cursor cursor = downloadManager.query(query);
155
156                 if (cursor == null || !cursor.moveToFirst()) {
157                     Log.e(LOG, "Couldn't find download.");
158                     return;
159                 }
160
161                 final String dest = cursor
162                                     .getString(cursor.getColumnIndex(DownloadManager.COLUMN_LOCAL_URI));
163                 final int status = cursor
164                                    .getInt(cursor
165                                            .getColumnIndex(DownloadManager.COLUMN_STATUS));
166                 if (DownloadManager.STATUS_SUCCESSFUL != status) {
167                     final int reason = cursor.getInt(cursor.getColumnIndex(DownloadManager.COLUMN_REASON));
168                     Log.w(LOG,
169                           "Download failed: status=" + status +
170                           ", reason=" + reason);
171                     String msg = Integer.toString(reason);
172                     switch (reason) {
173                     case DownloadManager.ERROR_FILE_ALREADY_EXISTS:
174                         msg = "File exists";
175                         break;
176                     case DownloadManager.ERROR_FILE_ERROR:
177                         msg = "File error";
178                         break;
179                     case DownloadManager.ERROR_INSUFFICIENT_SPACE:
180                         msg = "Not enough space";
181                         break;
182                     }
183                     new AlertDialog.Builder(context).setTitle(getString(R.string.error)).setMessage(getString(R.string.downloadFailed, msg)).setNeutralButton("Close", null).show();
184                     return;
185                 }
186
187                 Log.w(LOG, "Download finished: " + dest + " Id: " + downloadId);
188                 Toast.makeText(context, getString(R.string.unzippingDictionary, dest),
189                                Toast.LENGTH_LONG).show();
190
191                 if (unzipInstall(context, Uri.parse(dest), dest, true)) {
192                     finishedDownloadIds.add(downloadId);
193                     Log.w(LOG, "Unzipping finished: " + dest + " Id: " + downloadId);
194                 }
195             }
196         }
197     };
198
199     private boolean unzipInstall(Context context, Uri zipUri, String dest, boolean delete) {
200         File localZipFile = null;
201         InputStream zipFileStream = null;
202         ZipInputStream zipFile = null;
203         FileOutputStream zipOut = null;
204         boolean result = false;
205         try {
206             if (zipUri.getScheme().equals("content")) {
207                 zipFileStream = context.getContentResolver().openInputStream(zipUri);
208                 localZipFile = null;
209             } else {
210                 localZipFile = new File(zipUri.getPath());
211                 try {
212                     zipFileStream = new FileInputStream(localZipFile);
213                 } catch (Exception e) {
214                     if (ContextCompat.checkSelfPermission(getApplicationContext(), Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
215                         ActivityCompat.requestPermissions(this,
216                                                   new String[] {Manifest.permission.READ_EXTERNAL_STORAGE,
217                                                           Manifest.permission.WRITE_EXTERNAL_STORAGE
218                                                                }, 0);
219                         return false;
220                     }
221                     throw e;
222                 }
223             }
224             zipFile = new ZipInputStream(new BufferedInputStream(zipFileStream));
225             final ZipEntry zipEntry = zipFile.getNextEntry();
226             Log.d(LOG, "Unzipping entry: " + zipEntry.getName());
227             File targetFile = new File(application.getDictDir(), zipEntry.getName());
228             if (targetFile.exists()) {
229                 targetFile.renameTo(new File(targetFile.getAbsolutePath().replace(".quickdic", ".bak.quickdic")));
230                 targetFile = new File(application.getDictDir(), zipEntry.getName());
231             }
232             zipOut = new FileOutputStream(targetFile);
233             copyStream(zipFile, zipOut);
234             application.backgroundUpdateDictionaries(dictionaryUpdater);
235             Toast.makeText(context, getString(R.string.installationFinished, dest),
236                            Toast.LENGTH_LONG).show();
237             result = true;
238         } catch (Exception e) {
239             String msg = getString(R.string.unzippingFailed, dest + ": " + e.getMessage());
240             File dir = application.getDictDir();
241             if (!dir.canWrite() || !application.checkFileCreate(dir)) {
242                 msg = getString(R.string.notWritable, dir.getAbsolutePath());
243             }
244             new AlertDialog.Builder(context).setTitle(getString(R.string.error)).setMessage(msg).setNeutralButton("Close", null).show();
245             Log.e(LOG, "Failed to unzip.", e);
246         } finally {
247             try {
248                 if (zipOut != null) zipOut.close();
249             } catch (IOException e) {}
250             try {
251                 if (zipFile != null) zipFile.close();
252             } catch (IOException e) {}
253             try {
254                 if (zipFileStream != null) zipFileStream.close();
255             } catch (IOException e) {}
256             if (localZipFile != null && delete) localZipFile.delete();
257         }
258         return result;
259     }
260
261     public static Intent getLaunchIntent(Context c) {
262         final Intent intent = new Intent(c, DictionaryManagerActivity.class);
263         intent.putExtra(C.CAN_AUTO_LAUNCH_DICT, false);
264         return intent;
265     }
266
267     public void readableCheckAndError(boolean requestPermission) {
268         final File dictDir = application.getDictDir();
269         if (dictDir.canRead() && dictDir.canExecute()) return;
270         blockAutoLaunch = true;
271         if (requestPermission &&
272                 ContextCompat.checkSelfPermission(getApplicationContext(), Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
273             ActivityCompat.requestPermissions(this,
274                                               new String[] {Manifest.permission.READ_EXTERNAL_STORAGE,
275                                                       Manifest.permission.WRITE_EXTERNAL_STORAGE
276                                                            }, 0);
277             return;
278         }
279         blockAutoLaunch = true;
280
281         AlertDialog.Builder builder = new AlertDialog.Builder(getListView().getContext());
282         builder.setTitle(getString(R.string.error));
283         builder.setMessage(getString(
284                                R.string.unableToReadDictionaryDir,
285                                dictDir.getAbsolutePath(),
286                                Environment.getExternalStorageDirectory()));
287         builder.setNeutralButton("Close", null);
288         builder.create().show();
289     }
290
291     @Override
292     public void onRequestPermissionsResult(int requestCode, String permissions[], int[] grantResults) {
293         readableCheckAndError(false);
294
295         application.backgroundUpdateDictionaries(dictionaryUpdater);
296
297         setMyListAdapater();
298     }
299
300     @Override
301     public void onCreate(Bundle savedInstanceState) {
302         DictionaryApplication.INSTANCE.init(getApplicationContext());
303         application = DictionaryApplication.INSTANCE;
304         // This must be first, otherwise the action bar doesn't get
305         // styled properly.
306         setTheme(application.getSelectedTheme().themeId);
307
308         super.onCreate(savedInstanceState);
309         Log.d(LOG, "onCreate:" + this);
310
311         setTheme(application.getSelectedTheme().themeId);
312
313         blockAutoLaunch = false;
314
315         // UI init.
316         setContentView(R.layout.dictionary_manager_activity);
317
318         dictionariesOnDeviceHeaderRow = (LinearLayout) LayoutInflater.from(
319                                             getListView().getContext()).inflate(
320                                             R.layout.dictionary_manager_header_row_on_device, getListView(), false);
321
322         downloadableDictionariesHeaderRow = (LinearLayout) LayoutInflater.from(
323                                                 getListView().getContext()).inflate(
324                                                 R.layout.dictionary_manager_header_row_downloadable, getListView(), false);
325
326         showDownloadable = (ToggleButton) downloadableDictionariesHeaderRow
327                            .findViewById(R.id.hideDownloadable);
328         showDownloadable.setOnCheckedChangeListener(new OnCheckedChangeListener() {
329             @Override
330             public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
331                 onShowDownloadableChanged();
332             }
333         });
334
335         final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
336         final String thanksForUpdatingLatestVersion = getString(R.string.thanksForUpdatingVersion);
337         if (!prefs.getString(C.THANKS_FOR_UPDATING_VERSION, "").equals(
338                     thanksForUpdatingLatestVersion)) {
339             blockAutoLaunch = true;
340             startActivity(HtmlDisplayActivity.getWhatsNewLaunchIntent(getApplicationContext()));
341             prefs.edit().putString(C.THANKS_FOR_UPDATING_VERSION, thanksForUpdatingLatestVersion)
342             .commit();
343         }
344
345         registerReceiver(broadcastReceiver, new IntentFilter(
346                              DownloadManager.ACTION_DOWNLOAD_COMPLETE));
347
348         setMyListAdapater();
349         registerForContextMenu(getListView());
350         getListView().setItemsCanFocus(true);
351
352         readableCheckAndError(true);
353
354         onCreateSetupActionBar();
355
356         final Intent intent = getIntent();
357         if (intent != null && intent.getAction() != null &&
358             intent.getAction().equals(Intent.ACTION_VIEW)) {
359             blockAutoLaunch = true;
360             Uri uri = intent.getData();
361             unzipInstall(this, uri, uri.getLastPathSegment(), false);
362         }
363     }
364
365     private void onCreateSetupActionBar() {
366         ActionBar actionBar = getSupportActionBar();
367         actionBar.setDisplayShowTitleEnabled(false);
368         actionBar.setDisplayShowHomeEnabled(false);
369         actionBar.setDisplayHomeAsUpEnabled(false);
370
371         filterSearchView = new SearchView(getSupportActionBar().getThemedContext());
372         filterSearchView.setIconifiedByDefault(false);
373         // filterSearchView.setIconified(false); // puts the magnifying glass in
374         // the
375         // wrong place.
376         filterSearchView.setQueryHint(getString(R.string.searchText));
377         filterSearchView.setSubmitButtonEnabled(false);
378         FrameLayout.LayoutParams lp = new FrameLayout.LayoutParams(FrameLayout.LayoutParams.WRAP_CONTENT,
379                 FrameLayout.LayoutParams.WRAP_CONTENT);
380         filterSearchView.setLayoutParams(lp);
381         filterSearchView.setInputType(InputType.TYPE_CLASS_TEXT);
382         filterSearchView.setImeOptions(
383             EditorInfo.IME_ACTION_DONE |
384             EditorInfo.IME_FLAG_NO_EXTRACT_UI |
385             // EditorInfo.IME_FLAG_NO_FULLSCREEN | // Requires API
386             // 11
387             EditorInfo.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
388
389         filterSearchView.setOnQueryTextListener(new OnQueryTextListener() {
390             @Override
391             public boolean onQueryTextSubmit(String query) {
392                 filterSearchView.clearFocus();
393                 return false;
394             }
395
396             @Override
397             public boolean onQueryTextChange(String filterText) {
398                 setMyListAdapater();
399                 return true;
400             }
401         });
402         filterSearchView.setFocusable(true);
403
404         actionBar.setCustomView(filterSearchView);
405         actionBar.setDisplayShowCustomEnabled(true);
406
407         // Avoid wasting space on large left inset
408         Toolbar tb = (Toolbar)filterSearchView.getParent();
409         tb.setContentInsetsRelative(0, 0);
410     }
411
412     @Override
413     public void onDestroy() {
414         super.onDestroy();
415         unregisterReceiver(broadcastReceiver);
416     }
417
418     private static void copyStream(final InputStream ins, final FileOutputStream outs)
419     throws IOException {
420         ByteBuffer buf = ByteBuffer.allocateDirect(1024 * 64);
421         FileChannel out = outs.getChannel();
422         int bytesRead;
423         int pos = 0;
424         final byte[] bytes = new byte[1024 * 64];
425         do {
426             bytesRead = ins.read(bytes, pos, bytes.length - pos);
427             if (bytesRead != -1) pos += bytesRead;
428             if (bytesRead == -1 ? pos != 0 : 2*pos >= bytes.length) {
429                 buf.put(bytes, 0, pos);
430                 pos = 0;
431                 buf.flip();
432                 while (buf.hasRemaining()) out.write(buf);
433                 buf.clear();
434             }
435         } while (bytesRead != -1);
436     }
437
438     @Override
439     protected void onStart() {
440         super.onStart();
441         uiHandler = new Handler();
442     }
443
444     @Override
445     protected void onStop() {
446         super.onStop();
447         uiHandler = null;
448     }
449
450     @Override
451     protected void onResume() {
452         super.onResume();
453
454         if (PreferenceActivity.prefsMightHaveChanged) {
455             PreferenceActivity.prefsMightHaveChanged = false;
456             finish();
457             startActivity(getIntent());
458         }
459
460         final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
461         showDownloadable.setChecked(prefs.getBoolean(C.SHOW_DOWNLOADABLE, true));
462
463         if (!blockAutoLaunch &&
464                 getIntent().getBooleanExtra(C.CAN_AUTO_LAUNCH_DICT, true) &&
465                 prefs.contains(C.DICT_FILE) &&
466                 prefs.contains(C.INDEX_SHORT_NAME)) {
467             Log.d(LOG, "Skipping DictionaryManager, going straight to dictionary.");
468             startActivity(DictionaryActivity.getLaunchIntent(getApplicationContext(),
469                           new File(prefs.getString(C.DICT_FILE, "")),
470                           prefs.getString(C.INDEX_SHORT_NAME, ""),
471                           ""));
472             finish();
473             return;
474         }
475
476         // Remove the active dictionary from the prefs so we won't autolaunch
477         // next time.
478         final Editor editor = prefs.edit();
479         editor.remove(C.DICT_FILE);
480         editor.remove(C.INDEX_SHORT_NAME);
481         editor.commit();
482
483         application.backgroundUpdateDictionaries(dictionaryUpdater);
484
485         setMyListAdapater();
486     }
487
488     @Override
489     public boolean onCreateOptionsMenu(final Menu menu) {
490         if ("true".equals(Settings.System.getString(getContentResolver(), "firebase.test.lab")))
491         {
492             return false; // testing the menu is not very interesting
493         }
494         final MenuItem sort = menu.add(getString(R.string.sortDicts));
495         MenuItemCompat.setShowAsAction(sort, MenuItem.SHOW_AS_ACTION_NEVER);
496         sort.setOnMenuItemClickListener(new MenuItem.OnMenuItemClickListener() {
497             public boolean onMenuItemClick(final MenuItem menuItem) {
498                 application.sortDictionaries();
499                 setMyListAdapater();
500                 return true;
501             }
502         });
503
504         application.onCreateGlobalOptionsMenu(this, menu);
505         return true;
506     }
507
508     @Override
509     public void onCreateContextMenu(final ContextMenu menu, final View view,
510                                     final ContextMenuInfo menuInfo) {
511         super.onCreateContextMenu(menu, view, menuInfo);
512         Log.d(LOG, "onCreateContextMenu, " + menuInfo);
513
514         final AdapterContextMenuInfo adapterContextMenuInfo =
515             (AdapterContextMenuInfo) menuInfo;
516         final int position = adapterContextMenuInfo.position;
517         final MyListAdapter.Row row = (MyListAdapter.Row) getListAdapter().getItem(position);
518
519         if (row.dictionaryInfo == null) {
520             return;
521         }
522
523         if (position > 0 && row.onDevice) {
524             final android.view.MenuItem moveToTopMenuItem =
525                 menu.add(R.string.moveToTop);
526             moveToTopMenuItem.setOnMenuItemClickListener(new
527             android.view.MenuItem.OnMenuItemClickListener() {
528                 @Override
529                 public boolean onMenuItemClick(android.view.MenuItem item) {
530                     application.moveDictionaryToTop(row.dictionaryInfo);
531                     setMyListAdapater();
532                     return true;
533                 }
534             });
535         }
536
537         if (row.onDevice) {
538             final android.view.MenuItem deleteMenuItem = menu.add(R.string.deleteDictionary);
539             deleteMenuItem
540             .setOnMenuItemClickListener(new android.view.MenuItem.OnMenuItemClickListener() {
541                 @Override
542                 public boolean onMenuItemClick(android.view.MenuItem item) {
543                     application.deleteDictionary(row.dictionaryInfo);
544                     setMyListAdapater();
545                     return true;
546                 }
547             });
548         }
549     }
550
551     private void onShowDownloadableChanged() {
552         setMyListAdapater();
553         Editor prefs = PreferenceManager.getDefaultSharedPreferences(this).edit();
554         prefs.putBoolean(C.SHOW_DOWNLOADABLE, showDownloadable.isChecked());
555         prefs.commit();
556     }
557
558     class MyListAdapter extends BaseAdapter {
559
560         List<DictionaryInfo> dictionariesOnDevice;
561         List<DictionaryInfo> downloadableDictionaries;
562
563         class Row {
564             DictionaryInfo dictionaryInfo;
565             boolean onDevice;
566
567             private Row(DictionaryInfo dictionaryInfo, boolean onDevice) {
568                 this.dictionaryInfo = dictionaryInfo;
569                 this.onDevice = onDevice;
570             }
571         }
572
573         private MyListAdapter(final String[] filters) {
574             dictionariesOnDevice = application.getDictionariesOnDevice(filters);
575             if (showDownloadable.isChecked()) {
576                 downloadableDictionaries = application.getDownloadableDictionaries(filters);
577             } else {
578                 downloadableDictionaries = Collections.emptyList();
579             }
580         }
581
582         @Override
583         public int getCount() {
584             return 2 + dictionariesOnDevice.size() + downloadableDictionaries.size();
585         }
586
587         @Override
588         public Row getItem(int position) {
589             if (position == 0) {
590                 return new Row(null, true);
591             }
592             position -= 1;
593
594             if (position < dictionariesOnDevice.size()) {
595                 return new Row(dictionariesOnDevice.get(position), true);
596             }
597             position -= dictionariesOnDevice.size();
598
599             if (position == 0) {
600                 return new Row(null, false);
601             }
602             position -= 1;
603
604             assert position < downloadableDictionaries.size();
605             return new Row(downloadableDictionaries.get(position), false);
606         }
607
608         @Override
609         public long getItemId(int position) {
610             return position;
611         }
612
613         @Override
614         public View getView(int position, View convertView, ViewGroup parent) {
615             if (convertView instanceof LinearLayout &&
616                     convertView != dictionariesOnDeviceHeaderRow &&
617                     convertView != downloadableDictionariesHeaderRow) {
618                 /*
619                  * This is done to try to avoid leaking memory that used to
620                  * happen on Android 4.0.3
621                  */
622                 ((LinearLayout) convertView).removeAllViews();
623             }
624
625             final Row row = getItem(position);
626
627             if (row.onDevice) {
628                 if (row.dictionaryInfo == null) {
629                     return dictionariesOnDeviceHeaderRow;
630                 }
631                 return createDictionaryRow(row.dictionaryInfo, parent, true);
632             }
633
634             if (row.dictionaryInfo == null) {
635                 return downloadableDictionariesHeaderRow;
636             }
637             return createDictionaryRow(row.dictionaryInfo, parent, false);
638         }
639
640     }
641
642     private void setMyListAdapater() {
643         final String filter = filterSearchView == null ? "" : filterSearchView.getQuery()
644                               .toString();
645         final String[] filters = filter.trim().toLowerCase().split("(\\s|-)+");
646         setListAdapter(new MyListAdapter(filters));
647     }
648
649     private View createDictionaryRow(final DictionaryInfo dictionaryInfo,
650                                      final ViewGroup parent, boolean canLaunch) {
651
652         View row = LayoutInflater.from(parent.getContext()).inflate(
653                        R.layout.dictionary_manager_row, parent, false);
654         final TextView name = (TextView) row.findViewById(R.id.dictionaryName);
655         final TextView details = (TextView) row.findViewById(R.id.dictionaryDetails);
656         name.setText(application.getDictionaryName(dictionaryInfo.uncompressedFilename));
657
658         final boolean updateAvailable = application.updateAvailable(dictionaryInfo);
659         final Button downloadButton = (Button) row.findViewById(R.id.downloadButton);
660         final DictionaryInfo downloadable = application.getDownloadable(dictionaryInfo.uncompressedFilename);
661         boolean broken = false;
662         if (!dictionaryInfo.isValid()) {
663             broken = true;
664             canLaunch = false;
665         }
666         if (downloadable != null && (!canLaunch || updateAvailable)) {
667             downloadButton
668             .setText(getString(
669                          R.string.downloadButton,
670                          downloadable.zipBytes / 1024.0 / 1024.0));
671             downloadButton.setMinWidth(application.languageButtonPixels * 3 / 2);
672             downloadButton.setOnClickListener(new OnClickListener() {
673                 @Override
674                 public void onClick(View arg0) {
675                     downloadDictionary(downloadable.downloadUrl, downloadable.zipBytes, downloadButton);
676                 }
677             });
678         } else {
679             downloadButton.setVisibility(View.INVISIBLE);
680         }
681
682         LinearLayout buttons = (LinearLayout) row.findViewById(R.id.dictionaryLauncherButtons);
683         final List<IndexInfo> sortedIndexInfos = application
684                 .sortedIndexInfos(dictionaryInfo.indexInfos);
685         final StringBuilder builder = new StringBuilder();
686         if (updateAvailable) {
687             builder.append(getString(R.string.updateAvailable));
688         }
689         for (IndexInfo indexInfo : sortedIndexInfos) {
690             final View button = IsoUtils.INSTANCE.createButton(buttons.getContext(), dictionaryInfo,
691                                 indexInfo, application.languageButtonPixels);
692             buttons.addView(button);
693
694             if (canLaunch) {
695                 button.setOnClickListener(
696                     new IntentLauncher(buttons.getContext(),
697                                        DictionaryActivity.getLaunchIntent(getApplicationContext(),
698                                                application.getPath(dictionaryInfo.uncompressedFilename),
699                                                indexInfo.shortName, "")));
700
701             } else {
702                 button.setEnabled(false);
703                 button.setFocusable(false);
704             }
705             if (builder.length() != 0) {
706                 builder.append("; ");
707             }
708             builder.append(getString(R.string.indexInfo, indexInfo.shortName,
709                                      indexInfo.mainTokenCount));
710         }
711         builder.append("; ");
712         builder.append(getString(R.string.downloadButton, dictionaryInfo.uncompressedBytes / 1024.0 / 1024.0));
713         if (broken) {
714             name.setText("Broken: " + application.getDictionaryName(dictionaryInfo.uncompressedFilename));
715             builder.append("; Cannot be used, redownload, check hardware/file system");
716             // Allow deleting, but cannot open
717             row.setLongClickable(true);
718         }
719         details.setText(builder.toString());
720
721         if (canLaunch) {
722             row.setClickable(true);
723             row.setOnClickListener(new IntentLauncher(parent.getContext(),
724                                    DictionaryActivity.getLaunchIntent(getApplicationContext(),
725                                            application.getPath(dictionaryInfo.uncompressedFilename),
726                                            dictionaryInfo.indexInfos.get(0).shortName, "")));
727             // do not setFocusable, for keyboard navigation
728             // offering only the index buttons is better.
729             row.setLongClickable(true);
730         }
731         row.setBackgroundResource(android.R.drawable.menuitem_background);
732
733         return row;
734     }
735
736     private synchronized void downloadDictionary(final String downloadUrl, long bytes, Button downloadButton) {
737         String destFile;
738         try {
739             destFile = new File(new URL(downloadUrl).getPath()).getName();
740         } catch (MalformedURLException e) {
741             throw new RuntimeException("Invalid download URL!", e);
742         }
743         DownloadManager downloadManager = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
744         final DownloadManager.Query query = new DownloadManager.Query();
745         query.setFilterByStatus(DownloadManager.STATUS_PAUSED | DownloadManager.STATUS_PENDING | DownloadManager.STATUS_RUNNING);
746         final Cursor cursor = downloadManager.query(query);
747
748         // Due to a bug, cursor is null instead of empty when
749         // the download manager is disabled.
750         if (cursor == null) {
751             String msg = getString(R.string.downloadManagerQueryFailed);
752             new AlertDialog.Builder(DictionaryManagerActivity.this).setTitle(getString(R.string.error))
753             .setMessage(getString(R.string.downloadFailed, msg))
754             .setNeutralButton("Close", null).show();
755             return;
756         }
757
758         while (cursor.moveToNext()) {
759             if (downloadUrl.equals(cursor.getString(cursor.getColumnIndex(DownloadManager.COLUMN_URI))))
760                 break;
761             if (destFile.equals(cursor.getString(cursor.getColumnIndex(DownloadManager.COLUMN_TITLE))))
762                 break;
763         }
764         if (!cursor.isAfterLast()) {
765             downloadManager.remove(cursor.getLong(cursor.getColumnIndex(DownloadManager.COLUMN_ID)));
766             downloadButton
767             .setText(getString(
768                          R.string.downloadButton,
769                          bytes / 1024.0 / 1024.0));
770             cursor.close();
771             return;
772         }
773         cursor.close();
774         Request request = new Request(
775             Uri.parse(downloadUrl));
776
777         Log.d(LOG, "Downloading to: " + destFile);
778         request.setTitle(destFile);
779
780         File destFilePath = new File(application.getDictDir(), destFile);
781         destFilePath.delete();
782         try {
783             request.setDestinationUri(Uri.fromFile(destFilePath));
784         } catch (Exception e) {
785         }
786
787         try {
788             downloadManager.enqueue(request);
789         } catch (SecurityException e) {
790             request = new Request(Uri.parse(downloadUrl));
791             request.setTitle(destFile);
792             downloadManager.enqueue(request);
793         }
794         Log.w(LOG, "Download started: " + destFile);
795         downloadButton.setText("X");
796     }
797
798 }