From add4db5c2646b0be0d0ecf8db1328b3464917a08 Mon Sep 17 00:00:00 2001 From: invidtiv <35193719+invidtiv@users.noreply.github.com> Date: Sat, 20 Dec 2025 22:03:02 +0000 Subject: [PATCH 1/6] Update target SDK to 33 and migrate to AndroidX - Update targetSdkVersion from 23 to 33 - Migrate from support library to AndroidX (DrawerLayout, ActionBarDrawerToggle, Snackbar) - Add android:exported attributes to service and activity components - Remove deprecated WRITE_MEDIA_STORAGE permission - Add requestLegacyExternalStorage flag for storage compatibility - Replace deprecated internal Android APIs with local utility classes (HexDump, XmlUtils) - Update TrueZIP library exception handling for --- .gitignore | 29 ++ AndroidManifest.xml | 17 +- README.md | 38 +++ build.gradle | 83 ++++++ gradle.properties | 5 + gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 43705 bytes gradle/wrapper/gradle-wrapper.properties | 7 + gradlew | 251 ++++++++++++++++++ gradlew.bat | 94 +++++++ res/layout/navigation.xml | 6 +- res/layout/picker.xml | 2 +- res/menu/editor.xml | 2 +- settings.gradle | 0 .../filemanager/FileManagerApplication.java | 2 +- .../activities/EditorActivity.java | 2 +- .../activities/NavigationActivity.java | 30 +-- .../activities/PickerActivity.java | 4 +- .../activities/SearchActivity.java | 2 +- .../adapters/SimpleMenuListAdapter.java | 2 +- .../commands/java/ChecksumCommand.java | 2 +- .../commands/secure/ChecksumCommand.java | 2 +- .../filemanager/commands/shell/Command.java | 2 +- .../console/secure/SecureConsole.java | 19 +- .../SecureStorageKeyManagerProvider.java | 2 +- .../filemanager/preferences/Preferences.java | 4 +- .../providers/MimeTypeIndexProvider.java | 2 +- .../secure/SecureCacheCleanupService.java | 4 +- .../filemanager/ui/IconHolder.java | 14 +- .../ui/policy/PrintActionPolicy.java | 1 - .../ui/widgets/NavigationView.java | 4 +- .../ui/widgets/ScrimInsetsFrameLayout.java | 2 +- .../util/AmbiguousExtensionHelper.java | 5 +- .../filemanager/util/AndroidHelper.java | 18 +- .../filemanager/util/CommandHelper.java | 4 +- .../cyanogenmod/filemanager/util/HexDump.java | 24 ++ .../filemanager/util/MediaHelper.java | 72 +++-- .../filemanager/util/StorageHelper.java | 35 ++- .../filemanager/util/StringHelper.java | 2 +- .../filemanager/util/XmlUtils.java | 35 +++ 39 files changed, 747 insertions(+), 82 deletions(-) create mode 100644 build.gradle create mode 100644 gradle.properties create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100644 gradlew create mode 100644 gradlew.bat create mode 100644 settings.gradle create mode 100644 src/com/cyanogenmod/filemanager/util/HexDump.java create mode 100644 src/com/cyanogenmod/filemanager/util/XmlUtils.java diff --git a/.gitignore b/.gitignore index 812ec5ac..5894ebc9 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,32 @@ /.project /lint.xml /project.properties + +.gradle/ +**/build/ + +.idea/ +*.iml +*.ipr +*.iws + +local.properties + +captures/ +.externalNativeBuild/ +.cxx/ + +*.apk +*.ap_ +*.aab + +*.dex +*.class + +out/ + +*.log +*.hprof + +.DS_Store +Thumbs.db diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 85d5be9d..a5903008 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -21,7 +21,7 @@ - + @@ -34,8 +34,7 @@ - - + @@ -44,7 +43,7 @@ - + android:label="@string/app_name" + android:exported="false"> @@ -191,7 +191,8 @@ + android:configChanges="orientation|keyboardHidden|screenSize" + android:exported="true"> @@ -230,7 +231,9 @@ - + diff --git a/README.md b/README.md index d3146ec4..a65f13cb 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,44 @@ LineageOS File Manager A file manager for AOSP, focused on rooted devices and specially designed for the LineageOS Project. +## Requirements + +- Java 17 +- Android SDK with platform API 33 installed (compileSdkVersion is 33) + +## Building + +### Command line (Windows) + +Debug APK: + +``` +./gradlew.bat assembleDebug +``` + +Release APK: + +``` +./gradlew.bat assembleRelease +``` + +APK outputs: + +- `build/outputs/apk/debug/` +- `build/outputs/apk/release/` + +### Android Studio + +- Open the project folder. +- Let Gradle sync. +- Use the `debug` or `release` build variant. + +## Notes + +- minSdkVersion: 23 +- targetSdkVersion: 33 +- This app requests legacy external storage behavior via `android:requestLegacyExternalStorage="true"`. + This source was released under the terms of [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0.html) license. diff --git a/build.gradle b/build.gradle new file mode 100644 index 00000000..3e0b46ef --- /dev/null +++ b/build.gradle @@ -0,0 +1,83 @@ +buildscript { + repositories { + google() + mavenCentral() + } + dependencies { + classpath 'com.android.tools.build:gradle:8.2.0' + } +} + +// Apply Android application plugin +apply plugin: 'com.android.application' + +// Repositories for dependencies +repositories { + google() + mavenCentral() +} + +android { + namespace "com.cyanogenmod.filemanager" + compileSdkVersion 33 + defaultConfig { + applicationId "com.cyanogenmod.filemanager" + minSdkVersion 23 + targetSdkVersion 33 + versionCode 104 + versionName "3.0.0" + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard.flags' + } + } + sourceSets { + main { + java.srcDirs = ['src', 'libs/android-syntax-highlight/src', 'libs/color-picker-view/src'] + res.srcDirs = ['res'] + manifest.srcFile 'AndroidManifest.xml' + assets.srcDirs = ['assets'] + } + } + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } +} + +dependencies { + implementation "androidx.appcompat:appcompat:1.6.1" + implementation "androidx.core:core-ktx:1.10.1" + implementation "androidx.annotation:annotation:1.7.1" + implementation "androidx.activity:activity:1.7.2" + implementation "com.google.android.material:material:1.9.0" + implementation "com.googlecode.juniversalchardet:juniversalchardet:1.0.3" + // Include local jars from libs directory + implementation('de.schlichtherle.truezip:truezip-file:7.7.10') { + exclude group: 'org.jetbrains.kotlin' + } + implementation('de.schlichtherle.truezip:truezip-driver-file:7.7.10') { + exclude group: 'org.jetbrains.kotlin' + } + implementation('de.schlichtherle.truezip:truezip-driver-zip:7.7.10') { + exclude group: 'org.jetbrains.kotlin' + } + implementation('de.schlichtherle.truezip:truezip-swing:7.7.10') { + exclude group: 'org.jetbrains.kotlin' + } + implementation('de.schlichtherle.truezip:truezip-driver-tzp:7.7.10') { + exclude group: 'org.jetbrains.kotlin' + } + implementation fileTree(dir: 'libs', include: ['*.jar']) +} + +configurations.all { + resolutionStrategy { + force 'org.jetbrains.kotlin:kotlin-stdlib:1.8.10' + force 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.10' + force 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.10' + force 'androidx.activity:activity:1.7.2' + } +} diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 00000000..77f1a8d7 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,5 @@ +android.useAndroidX=true +android.enableJetifier=true + +android.nonFinalResIds=false +android.nonTransitiveRClass=false diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..9bbc975c742b298b441bfb90dbc124400a3751b9 GIT binary patch literal 43705 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 DHx0+F literal 0 HcmV?d00001 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 00000000..37f853b1 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,7 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100644 index 00000000..faf93008 --- /dev/null +++ b/gradlew @@ -0,0 +1,251 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 00000000..9d21a218 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,94 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/res/layout/navigation.xml b/res/layout/navigation.xml index 49d7c7b4..d1d2470d 100644 --- a/res/layout/navigation.xml +++ b/res/layout/navigation.xml @@ -15,8 +15,8 @@ limitations under the License. --> - @@ -78,4 +78,4 @@ - + diff --git a/res/layout/picker.xml b/res/layout/picker.xml index f9ce1b7e..5da44ba7 100644 --- a/res/layout/picker.xml +++ b/res/layout/picker.xml @@ -16,7 +16,7 @@ + xmlns:filemanager="http://schemas.android.com/apk/res-auto"> loadSdStorageBookmarks() { for (StorageVolume volume: volumes) { if (volume != null) { String mountedState = volume.getState(); - String path = volume.getPath(); + String path = StorageHelper.getStorageVolumePath(volume); if (!Environment.MEDIA_MOUNTED.equalsIgnoreCase(mountedState) && !Environment.MEDIA_MOUNTED_READ_ONLY.equalsIgnoreCase(mountedState)) { Log.w(TAG, "Ignoring '" + path + "' with state of '"+ mountedState + "'"); @@ -1916,12 +1916,12 @@ void applyInitialDir(final NavigationView navigationView, final Intent intent) { StorageVolume[] volumes = StorageHelper.getStorageVolumes(this, false); if (volumes != null && volumes.length > 0) { - initialDir = volumes[0].getPath(); + initialDir = StorageHelper.getStorageVolumePath(volumes[0]); int count = volumes.length; for (int i = 0; i < count; i++) { StorageVolume volume = volumes[i]; if (Environment.MEDIA_MOUNTED.equalsIgnoreCase(volume.getState())) { - initialDir = volume.getPath(); + initialDir = StorageHelper.getStorageVolumePath(volume); break; } } diff --git a/src/com/cyanogenmod/filemanager/activities/PickerActivity.java b/src/com/cyanogenmod/filemanager/activities/PickerActivity.java index ba5fa53a..60bd1082 100644 --- a/src/com/cyanogenmod/filemanager/activities/PickerActivity.java +++ b/src/com/cyanogenmod/filemanager/activities/PickerActivity.java @@ -653,7 +653,7 @@ private void showStorageVolumesPopUp(View anchor) { StorageVolume volume = volumes[i]; if (volumes[i] != null) { String mountedState = volumes[i].getState(); - String path = volumes[i].getPath(); + String path = StorageHelper.getStorageVolumePath(volumes[i]); if (!Environment.MEDIA_MOUNTED.equalsIgnoreCase(mountedState) && !Environment.MEDIA_MOUNTED_READ_ONLY.equalsIgnoreCase(mountedState)) { Log.w(TAG, "Ignoring '" + path + "' with state of '"+ mountedState + "'"); @@ -679,7 +679,7 @@ public void onItemClick(AdapterView parent, View v, int position, long id) { popup.dismiss(); if (volumes != null) { PickerActivity.this. - mNavigationView.changeCurrentDir(volumes[position].getPath()); + mNavigationView.changeCurrentDir(StorageHelper.getStorageVolumePath(volumes[position])); } } }); diff --git a/src/com/cyanogenmod/filemanager/activities/SearchActivity.java b/src/com/cyanogenmod/filemanager/activities/SearchActivity.java index a5d9cc4a..a6df81a2 100755 --- a/src/com/cyanogenmod/filemanager/activities/SearchActivity.java +++ b/src/com/cyanogenmod/filemanager/activities/SearchActivity.java @@ -1497,7 +1497,7 @@ protected List doInBackground(MimeTypeCategory... params) { @Override protected void onPostExecute(List results) { - if (!isResumed()) { + if (SearchActivity.this.isFinishing() || SearchActivity.this.isDestroyed()) { return; } mAdapterList.clear(); diff --git a/src/com/cyanogenmod/filemanager/adapters/SimpleMenuListAdapter.java b/src/com/cyanogenmod/filemanager/adapters/SimpleMenuListAdapter.java index 79d7c011..837f68f7 100644 --- a/src/com/cyanogenmod/filemanager/adapters/SimpleMenuListAdapter.java +++ b/src/com/cyanogenmod/filemanager/adapters/SimpleMenuListAdapter.java @@ -27,7 +27,7 @@ import android.widget.ImageView; import android.widget.TextView; -import com.android.internal.view.menu.MenuBuilder; +import androidx.appcompat.view.menu.MenuBuilder; import com.cyanogenmod.filemanager.R; import com.cyanogenmod.filemanager.ui.ThemeManager; import com.cyanogenmod.filemanager.ui.ThemeManager.Theme; diff --git a/src/com/cyanogenmod/filemanager/commands/java/ChecksumCommand.java b/src/com/cyanogenmod/filemanager/commands/java/ChecksumCommand.java index ffd04f1c..2159028f 100644 --- a/src/com/cyanogenmod/filemanager/commands/java/ChecksumCommand.java +++ b/src/com/cyanogenmod/filemanager/commands/java/ChecksumCommand.java @@ -18,7 +18,7 @@ import android.util.Log; -import com.android.internal.util.HexDump; +import com.cyanogenmod.filemanager.util.HexDump; import com.cyanogenmod.filemanager.commands.AsyncResultListener; import com.cyanogenmod.filemanager.commands.ChecksumExecutable; import com.cyanogenmod.filemanager.console.ExecutionException; diff --git a/src/com/cyanogenmod/filemanager/commands/secure/ChecksumCommand.java b/src/com/cyanogenmod/filemanager/commands/secure/ChecksumCommand.java index 39e623bb..6a1f12d0 100644 --- a/src/com/cyanogenmod/filemanager/commands/secure/ChecksumCommand.java +++ b/src/com/cyanogenmod/filemanager/commands/secure/ChecksumCommand.java @@ -18,7 +18,7 @@ import android.util.Log; -import com.android.internal.util.HexDump; +import com.cyanogenmod.filemanager.util.HexDump; import com.cyanogenmod.filemanager.commands.AsyncResultListener; import com.cyanogenmod.filemanager.commands.ChecksumExecutable; import com.cyanogenmod.filemanager.console.ExecutionException; diff --git a/src/com/cyanogenmod/filemanager/commands/shell/Command.java b/src/com/cyanogenmod/filemanager/commands/shell/Command.java index cf9a9f5c..999dff04 100644 --- a/src/com/cyanogenmod/filemanager/commands/shell/Command.java +++ b/src/com/cyanogenmod/filemanager/commands/shell/Command.java @@ -19,7 +19,7 @@ import android.content.res.Resources; import android.content.res.XmlResourceParser; -import com.android.internal.util.XmlUtils; +import com.cyanogenmod.filemanager.util.XmlUtils; import com.cyanogenmod.filemanager.FileManagerApplication; import com.cyanogenmod.filemanager.R; import com.cyanogenmod.filemanager.console.CommandNotFoundException; diff --git a/src/com/cyanogenmod/filemanager/console/secure/SecureConsole.java b/src/com/cyanogenmod/filemanager/console/secure/SecureConsole.java index 2b81084c..e509e50e 100644 --- a/src/com/cyanogenmod/filemanager/console/secure/SecureConsole.java +++ b/src/com/cyanogenmod/filemanager/console/secure/SecureConsole.java @@ -22,7 +22,6 @@ import android.os.AsyncTask; import android.os.Handler; import android.os.Message; -import android.os.UserHandle; import android.os.Handler.Callback; import android.util.Log; import android.widget.Toast; @@ -49,6 +48,7 @@ import com.cyanogenmod.filemanager.model.MountPoint; import com.cyanogenmod.filemanager.preferences.FileManagerSettings; import com.cyanogenmod.filemanager.preferences.Preferences; +import com.cyanogenmod.filemanager.util.AndroidHelper; import com.cyanogenmod.filemanager.util.DialogHelper; import com.cyanogenmod.filemanager.util.ExceptionUtil; import com.cyanogenmod.filemanager.util.FileHelper; @@ -57,7 +57,8 @@ import de.schlichtherle.truezip.file.TArchiveDetector; import de.schlichtherle.truezip.file.TFile; import de.schlichtherle.truezip.file.TVFS; -import de.schlichtherle.truezip.key.CancelledOperation; +import de.schlichtherle.truezip.key.KeyPromptingCancelledException; +import de.schlichtherle.truezip.key.KeyPromptingInterruptedException; import static de.schlichtherle.truezip.fs.FsSyncOption.CLEAR_CACHE; import static de.schlichtherle.truezip.fs.FsSyncOption.FORCE_CLOSE_INPUT; import static de.schlichtherle.truezip.fs.FsSyncOption.FORCE_CLOSE_OUTPUT; @@ -87,7 +88,7 @@ public class SecureConsole extends VirtualMountPointConsole { public static String getSecureStorageName() { return String.format("storage.%s.%s", - String.valueOf(UserHandle.myUserId()), + String.valueOf(AndroidHelper.getMyUserId()), SecureStorageDriverProvider.SECURE_STORAGE_SCHEME); } @@ -419,7 +420,11 @@ public synchronized void mount(Context ctx) File root = mStorageRoot.getFile(); try { boolean newStorage = !root.exists(); - mStorageRoot.mount(); + if (newStorage) { + mStorageRoot.mkdirs(); + } else { + mStorageRoot.list(); + } if (newStorage) { // Force a synchronization mRequiresSync = true; @@ -439,8 +444,10 @@ public synchronized void mount(Context ctx) intent.putExtra(FileManagerSettings.EXTRA_STATUS, MountExecutable.READWRITE); getCtx().sendBroadcast(intent); - } catch (IOException ex) { - if (ex.getCause() != null && ex.getCause() instanceof CancelledOperation) { + } catch (RuntimeException ex) { + if (ex.getCause() != null && + (ex.getCause() instanceof KeyPromptingCancelledException + || ex.getCause() instanceof KeyPromptingInterruptedException)) { throw new CancelledOperationException(); } if (ex.getCause() != null && ex.getCause() instanceof RaesAuthenticationException) { diff --git a/src/com/cyanogenmod/filemanager/console/secure/SecureStorageKeyManagerProvider.java b/src/com/cyanogenmod/filemanager/console/secure/SecureStorageKeyManagerProvider.java index 810b94dd..1c5580d0 100644 --- a/src/com/cyanogenmod/filemanager/console/secure/SecureStorageKeyManagerProvider.java +++ b/src/com/cyanogenmod/filemanager/console/secure/SecureStorageKeyManagerProvider.java @@ -94,7 +94,7 @@ private static final class Boot { MANAGERS = Collections.unmodifiableMap(fast); // We need that the provider ask always for a password - getKeyProvider().setAskAlwaysForWriteKey(true); + getKeyProvider().resetUnconditionally(); } } // class Boot diff --git a/src/com/cyanogenmod/filemanager/preferences/Preferences.java b/src/com/cyanogenmod/filemanager/preferences/Preferences.java index b07ec394..f82bf9d6 100644 --- a/src/com/cyanogenmod/filemanager/preferences/Preferences.java +++ b/src/com/cyanogenmod/filemanager/preferences/Preferences.java @@ -145,8 +145,8 @@ public static SharedPreferences getSharedPreferences() { private static File getWorldReadablePropertiesFile(Context context) { String dataDir = context.getApplicationInfo().dataDir; if (AndroidHelper.isSecondaryUser(context)) { - dataDir = dataDir.replace(String.valueOf(UserHandle.myUserId()), - String.valueOf(UserHandle.USER_OWNER)); + dataDir = dataDir.replace(String.valueOf(AndroidHelper.getMyUserId()), + String.valueOf(0)); } return new File(dataDir, SHARED_PROPERTIES_FILENAME); } diff --git a/src/com/cyanogenmod/filemanager/providers/MimeTypeIndexProvider.java b/src/com/cyanogenmod/filemanager/providers/MimeTypeIndexProvider.java index fc3b9607..5c56e612 100644 --- a/src/com/cyanogenmod/filemanager/providers/MimeTypeIndexProvider.java +++ b/src/com/cyanogenmod/filemanager/providers/MimeTypeIndexProvider.java @@ -45,7 +45,7 @@ public class MimeTypeIndexProvider extends ContentProvider { private static final String TAG = MimeTypeIndexProvider.class.getSimpleName(); private static final String AUTHORITY = "com.cyanogenmod.filemanager.providers.index"; private static final int ID_INDEX = 1; - private static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + + private static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/" + DatabaseHelper.INDEX_TABLE); private static final UriMatcher sUriMatcher = new UriMatcher(NO_MATCH); diff --git a/src/com/cyanogenmod/filemanager/providers/secure/SecureCacheCleanupService.java b/src/com/cyanogenmod/filemanager/providers/secure/SecureCacheCleanupService.java index 6accb438..0efb29d0 100644 --- a/src/com/cyanogenmod/filemanager/providers/secure/SecureCacheCleanupService.java +++ b/src/com/cyanogenmod/filemanager/providers/secure/SecureCacheCleanupService.java @@ -110,7 +110,7 @@ public static void scheduleCleanup(Context context) throws IllegalArgumentExcept AlarmManager alarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE); Intent intent = new Intent(context, SecureCacheCleanupService.class); intent.setAction(ACTION_START); - PendingIntent pendingIntent = PendingIntent.getService(context, 0, intent, 0); + PendingIntent pendingIntent = PendingIntent.getService(context, 0, intent, PendingIntent.FLAG_IMMUTABLE); alarmManager.setInexactRepeating(AlarmManager.ELAPSED_REALTIME, 1000, AlarmManager.INTERVAL_HOUR, pendingIntent); } @@ -129,7 +129,7 @@ public static void cancelAlarm(Context context) throws IllegalArgumentException AlarmManager alarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE); Intent intent = new Intent(context, SecureCacheCleanupService.class); intent.setAction(ACTION_START); - PendingIntent pendingIntent = PendingIntent.getService(context, 0, intent, 0); + PendingIntent pendingIntent = PendingIntent.getService(context, 0, intent, PendingIntent.FLAG_IMMUTABLE); alarmManager.cancel(pendingIntent); } } diff --git a/src/com/cyanogenmod/filemanager/ui/IconHolder.java b/src/com/cyanogenmod/filemanager/ui/IconHolder.java index 2a8e0993..dd180057 100644 --- a/src/com/cyanogenmod/filemanager/ui/IconHolder.java +++ b/src/com/cyanogenmod/filemanager/ui/IconHolder.java @@ -26,6 +26,7 @@ import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.Drawable; import android.media.ThumbnailUtils; +import android.provider.MediaStore; import android.net.Uri; import android.os.Handler; import android.os.HandlerThread; @@ -155,7 +156,7 @@ private Drawable getAppDrawable(FileSystemObject fso) { private Drawable getImageDrawable(String file) { Bitmap thumb = ThumbnailUtils.createImageThumbnail( MediaHelper.normalizeMediaPath(file), - ThumbnailUtils.TARGET_SIZE_MICRO_THUMBNAIL); + MediaStore.Images.Thumbnails.MICRO_KIND); if (thumb == null) { return null; } @@ -171,7 +172,7 @@ private Drawable getImageDrawable(String file) { private Drawable getVideoDrawable(String file) { Bitmap thumb = ThumbnailUtils.createVideoThumbnail( MediaHelper.normalizeMediaPath(file), - ThumbnailUtils.TARGET_SIZE_MICRO_THUMBNAIL); + MediaStore.Video.Thumbnails.MICRO_KIND); if (thumb == null) { return null; } @@ -190,7 +191,7 @@ private Drawable getAlbumDrawable(long albumId) { return null; } Bitmap thumb = ThumbnailUtils.createImageThumbnail(path, - ThumbnailUtils.TARGET_SIZE_MICRO_THUMBNAIL); + MediaStore.Images.Thumbnails.MICRO_KIND); if (thumb == null) { return null; } @@ -341,8 +342,11 @@ public void handleMessage(Message msg) { switch (msg.what) { case MSG_LOAD: Loadable l = (Loadable) msg.obj; - if (l.load()) { - mHandler.obtainMessage(MSG_LOADED, l).sendToTarget(); + try { + if (l.load()) { + mHandler.obtainMessage(MSG_LOADED, l).sendToTarget(); + } + } catch (RuntimeException ignored) { } break; } diff --git a/src/com/cyanogenmod/filemanager/ui/policy/PrintActionPolicy.java b/src/com/cyanogenmod/filemanager/ui/policy/PrintActionPolicy.java index 791d6dbe..f0d024bf 100644 --- a/src/com/cyanogenmod/filemanager/ui/policy/PrintActionPolicy.java +++ b/src/com/cyanogenmod/filemanager/ui/policy/PrintActionPolicy.java @@ -281,7 +281,6 @@ public void onLayout(PrintAttributes oldAttributes, PrintAttributes newAttribute .setContentType(PrintDocumentInfo.CONTENT_TYPE_DOCUMENT) .setPageCount(calculatePageCount(rowsPerPage)) .build(); - info.setDataSize(size); boolean changed = !newAttributes.equals(oldAttributes); callback.onLayoutFinished(info, changed); } diff --git a/src/com/cyanogenmod/filemanager/ui/widgets/NavigationView.java b/src/com/cyanogenmod/filemanager/ui/widgets/NavigationView.java index 17504dae..16816840 100755 --- a/src/com/cyanogenmod/filemanager/ui/widgets/NavigationView.java +++ b/src/com/cyanogenmod/filemanager/ui/widgets/NavigationView.java @@ -1437,7 +1437,7 @@ public void createChRooted() { StorageVolume[] volumes = StorageHelper.getStorageVolumes(getContext(), false); if (volumes != null && volumes.length > 0) { - changeCurrentDir(volumes[0].getPath(), false, true, false, null, null); + changeCurrentDir(StorageHelper.getStorageVolumePath(volumes[0]), false, true, false, null, null); } } @@ -1468,7 +1468,7 @@ private String checkChRootedNavigation(String newDir) { if (!StorageHelper.isPathInStorageVolume(newDir)) { StorageVolume[] volumes = StorageHelper.getStorageVolumes(getContext(), false); if (volumes != null && volumes.length > 0) { - return volumes[0].getPath(); + return StorageHelper.getStorageVolumePath(volumes[0]); } } return newDir; diff --git a/src/com/cyanogenmod/filemanager/ui/widgets/ScrimInsetsFrameLayout.java b/src/com/cyanogenmod/filemanager/ui/widgets/ScrimInsetsFrameLayout.java index 56741558..a0d12621 100644 --- a/src/com/cyanogenmod/filemanager/ui/widgets/ScrimInsetsFrameLayout.java +++ b/src/com/cyanogenmod/filemanager/ui/widgets/ScrimInsetsFrameLayout.java @@ -21,7 +21,7 @@ import android.graphics.Canvas; import android.graphics.Rect; import android.graphics.drawable.Drawable; -import android.support.v4.view.ViewCompat; +import androidx.core.view.ViewCompat; import android.util.AttributeSet; import android.widget.FrameLayout; import com.cyanogenmod.filemanager.R; diff --git a/src/com/cyanogenmod/filemanager/util/AmbiguousExtensionHelper.java b/src/com/cyanogenmod/filemanager/util/AmbiguousExtensionHelper.java index 3b09367b..129c870f 100644 --- a/src/com/cyanogenmod/filemanager/util/AmbiguousExtensionHelper.java +++ b/src/com/cyanogenmod/filemanager/util/AmbiguousExtensionHelper.java @@ -75,7 +75,10 @@ public String getMimeType(String absolutePath, String extension) { } catch (RuntimeException e) { Log.e(TAG, "Unable to open 3GP file to determine mimetype"); } finally { - retriever.release(); + try { + retriever.release(); + } catch (Exception e) { + } } // Default to video 3gp if the file is unreadable as this was the default before // ambiguous resolution support was added. diff --git a/src/com/cyanogenmod/filemanager/util/AndroidHelper.java b/src/com/cyanogenmod/filemanager/util/AndroidHelper.java index 891e6e3a..92ffaace 100644 --- a/src/com/cyanogenmod/filemanager/util/AndroidHelper.java +++ b/src/com/cyanogenmod/filemanager/util/AndroidHelper.java @@ -27,13 +27,15 @@ import android.content.res.Configuration; import android.content.res.Resources; import android.os.UserHandle; +import android.os.Process; import android.os.UserManager; import android.util.DisplayMetrics; +import com.cyanogenmod.filemanager.util.HexDump; import android.view.ViewConfiguration; -import com.android.internal.util.HexDump; import java.io.ByteArrayInputStream; +import java.lang.reflect.Method; import java.security.GeneralSecurityException; import java.security.MessageDigest; import java.security.cert.CertificateFactory; @@ -150,8 +152,20 @@ public static boolean hasSupportForMultipleUsers(Context context) { return UserManager.supportsMultipleUsers(); } + public static int getMyUserId() { + try { + Method myUserId = UserHandle.class.getMethod("myUserId"); + Object value = myUserId.invoke(null); + if (value instanceof Integer) { + return ((Integer) value).intValue(); + } + } catch (Exception ignored) { + } + return Process.myUid() / 100000; + } + public static boolean isUserOwner() { - return UserHandle.myUserId() == UserHandle.USER_OWNER; + return getMyUserId() == 0; } public static boolean isSecondaryUser(Context context) { diff --git a/src/com/cyanogenmod/filemanager/util/CommandHelper.java b/src/com/cyanogenmod/filemanager/util/CommandHelper.java index abb45ce8..00ce6ab3 100644 --- a/src/com/cyanogenmod/filemanager/util/CommandHelper.java +++ b/src/com/cyanogenmod/filemanager/util/CommandHelper.java @@ -16,8 +16,8 @@ package com.cyanogenmod.filemanager.util; -import android.annotation.NonNull; -import android.annotation.Nullable; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; import android.content.Context; import android.content.Intent; import android.media.MediaScannerConnection; diff --git a/src/com/cyanogenmod/filemanager/util/HexDump.java b/src/com/cyanogenmod/filemanager/util/HexDump.java new file mode 100644 index 00000000..e8e6e989 --- /dev/null +++ b/src/com/cyanogenmod/filemanager/util/HexDump.java @@ -0,0 +1,24 @@ +package com.cyanogenmod.filemanager.util; + +/** Simple replacement for android internal HexDump utility. */ +public class HexDump { + /** Convert entire byte array to hex string. */ + public static String toHexString(byte[] bytes) { + return toHexString(bytes, 0, bytes.length); + } + + /** Convert a range of a byte array to hex string. */ + public static String toHexString(byte[] bytes, int offset, int length) { + StringBuilder sb = new StringBuilder(); + for (int i = offset; i < offset + length; i++) { + sb.append(String.format("%02x", bytes[i])); + } + return sb.toString(); + } + + /** Convert an integer offset to an 8‑character hex string (like internal HexDump). */ + public static String toHexString(int value) { + return String.format("%08x", value); + } +} + diff --git a/src/com/cyanogenmod/filemanager/util/MediaHelper.java b/src/com/cyanogenmod/filemanager/util/MediaHelper.java index f00db57f..7239f21b 100644 --- a/src/com/cyanogenmod/filemanager/util/MediaHelper.java +++ b/src/com/cyanogenmod/filemanager/util/MediaHelper.java @@ -20,7 +20,7 @@ import android.content.Context; import android.database.Cursor; import android.net.Uri; -import android.os.UserHandle; +import android.os.Environment; import android.provider.BaseColumns; import android.provider.MediaStore; import android.provider.MediaStore.MediaColumns; @@ -59,24 +59,66 @@ public final class MediaHelper { */ public static Map getAllAlbums(ContentResolver cr) { Map albums = new HashMap(); - final String[] projection = - { - "distinct " + MediaStore.Audio.Media.ALBUM_ID, - "substr(" + MediaStore.Audio.Media.DATA + ", 0, length(" + - MediaStore.Audio.Media.DATA + ") - length(" + - MediaStore.Audio.Media.DISPLAY_NAME + "))" - }; final String where = MediaStore.Audio.Media.IS_MUSIC + " = ?"; - Cursor c = cr.query(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, - projection, where, new String[]{"1"}, null); - if (c != null) { + Cursor c = null; + try { try { + final String[] projection = { + MediaStore.Audio.Media.ALBUM_ID, + MediaColumns.RELATIVE_PATH + }; + c = cr.query(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, + projection, where, new String[]{"1"}, null); + if (c != null) { + while (c.moveToNext()) { + long albumId = c.getLong(0); + String relativePath = c.getString(1); + if (!TextUtils.isEmpty(relativePath)) { + String absPath = new File(Environment.getExternalStorageDirectory(), + relativePath).getAbsolutePath(); + albums.put(normalizeMediaPath(absPath), albumId); + } + } + } + return albums; + } catch (RuntimeException ignored) { + if (c != null) { + c.close(); + c = null; + } + albums.clear(); + } + + final String[] projection = { + MediaStore.Audio.Media.ALBUM_ID, + MediaStore.Audio.Media.DATA, + MediaStore.Audio.Media.DISPLAY_NAME + }; + c = cr.query(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, + projection, where, new String[]{"1"}, null); + if (c != null) { while (c.moveToNext()) { long albumId = c.getLong(0); - String albumPath = c.getString(1); - albums.put(albumPath, albumId); + String data = c.getString(1); + String displayName = c.getString(2); + if (TextUtils.isEmpty(data)) { + continue; + } + String albumPath; + if (!TextUtils.isEmpty(displayName) && data.endsWith(displayName)) { + albumPath = data.substring(0, data.length() - displayName.length()); + } else { + File parent = new File(data).getParentFile(); + albumPath = parent != null ? parent.getAbsolutePath() : null; + } + if (!TextUtils.isEmpty(albumPath)) { + albums.put(normalizeMediaPath(albumPath), albumId); + } } - } finally { + } + } catch (RuntimeException ignored) { + } finally { + if (c != null) { c.close(); } } @@ -267,7 +309,7 @@ public static String normalizeMediaPath(String path) { } // We need to convert EXTERNAL_STORAGE -> EMULATED_STORAGE_TARGET / userId if (path.startsWith(EXTERNAL_STORAGE)) { - final String userId = String.valueOf(UserHandle.myUserId()); + final String userId = String.valueOf(AndroidHelper.getMyUserId()); final String target = new File(EMULATED_STORAGE_TARGET, userId).getAbsolutePath(); path = path.replace(EXTERNAL_STORAGE, target); } diff --git a/src/com/cyanogenmod/filemanager/util/StorageHelper.java b/src/com/cyanogenmod/filemanager/util/StorageHelper.java index ed07fd5e..87afac06 100644 --- a/src/com/cyanogenmod/filemanager/util/StorageHelper.java +++ b/src/com/cyanogenmod/filemanager/util/StorageHelper.java @@ -35,6 +35,24 @@ public final class StorageHelper { private static StorageVolume[] sStorageVolumes; + public static String getStorageVolumePath(StorageVolume volume) { + if (volume == null) { + return null; + } + try { + Method method = volume.getClass().getMethod("getPath"); //$NON-NLS-1$ + return (String) method.invoke(volume); + } catch (Exception ignored) { + } + try { + Method method = volume.getClass().getMethod("getDirectory"); //$NON-NLS-1$ + File dir = (File) method.invoke(volume); + return dir != null ? dir.getAbsolutePath() : null; + } catch (Exception ignored) { + } + return null; + } + /** * Method that returns the storage volumes defined in the system. This method uses * reflection to retrieve the method because CM10 has a {@link Context} @@ -117,7 +135,7 @@ public static String getStorageVolumeDescription(Context ctx, StorageVolume volu } catch (Throwable _throw) { // Returns the volume storage path - return volume.getPath(); + return getStorageVolumePath(volume); } } @@ -135,7 +153,8 @@ public static boolean isPathInStorageVolume(String path) { int cc = volumes.length; for (int i = 0; i < cc; i++) { StorageVolume vol = volumes[i]; - if (fso.startsWith(vol.getPath())) { + String vPath = getStorageVolumePath(vol); + if (vPath != null && fso.startsWith(vPath)) { return true; } } @@ -156,7 +175,11 @@ public static boolean isStorageVolume(String path) { for (int i = 0; i < cc; i++) { StorageVolume vol = volumes[i]; String p = new File(path).getAbsolutePath(); - String v = new File(vol.getPath()).getAbsolutePath(); + String vPath = getStorageVolumePath(vol); + if (vPath == null) { + continue; + } + String v = new File(vPath).getAbsolutePath(); if (p.compareTo(v) == 0) { return true; } @@ -178,7 +201,11 @@ public static String getChrootedPath(String path) { for (int i = 0; i < cc; i++) { StorageVolume vol = volumes[i]; File p = new File(path); - File v = new File(vol.getPath()); + String vPath = getStorageVolumePath(vol); + if (vPath == null) { + continue; + } + File v = new File(vPath); if (p.getAbsolutePath().startsWith(v.getAbsolutePath())) { return v.getName() + path.substring(v.getAbsolutePath().length()); } diff --git a/src/com/cyanogenmod/filemanager/util/StringHelper.java b/src/com/cyanogenmod/filemanager/util/StringHelper.java index 89d7d2f0..e0aa53f9 100644 --- a/src/com/cyanogenmod/filemanager/util/StringHelper.java +++ b/src/com/cyanogenmod/filemanager/util/StringHelper.java @@ -18,7 +18,7 @@ import android.text.TextUtils; -import com.android.internal.util.HexDump; +import com.cyanogenmod.filemanager.util.HexDump; import java.io.ByteArrayInputStream; import java.util.Arrays; diff --git a/src/com/cyanogenmod/filemanager/util/XmlUtils.java b/src/com/cyanogenmod/filemanager/util/XmlUtils.java new file mode 100644 index 00000000..fd4e9e2e --- /dev/null +++ b/src/com/cyanogenmod/filemanager/util/XmlUtils.java @@ -0,0 +1,35 @@ +package com.cyanogenmod.filemanager.util; + +import org.xmlpull.v1.XmlPullParser; +import org.xmlpull.v1.XmlPullParserException; + +import java.io.IOException; + +public final class XmlUtils { + + private XmlUtils() { + } + + public static void beginDocument(XmlPullParser parser, String firstElementName) + throws XmlPullParserException, IOException { + int type; + while ((type = parser.next()) != XmlPullParser.START_TAG + && type != XmlPullParser.END_DOCUMENT) { + } + if (type != XmlPullParser.START_TAG) { + throw new XmlPullParserException("No start tag found"); + } + if (!firstElementName.equals(parser.getName())) { + throw new XmlPullParserException( + "Unexpected start tag: found " + parser.getName() + ", expected " + firstElementName); + } + } + + public static void nextElement(XmlPullParser parser) + throws XmlPullParserException, IOException { + int type; + while ((type = parser.next()) != XmlPullParser.START_TAG + && type != XmlPullParser.END_DOCUMENT) { + } + } +} From 97aa8e957bd5a4c18472ff993261c36bdc51a20f Mon Sep 17 00:00:00 2001 From: invidtiv <35193719+invidtiv@users.noreply.github.com> Date: Thu, 15 Jan 2026 16:22:32 +0000 Subject: [PATCH 2/6] feat: enhance intent handling and update documentation - Implement ACTION_SET_HOME intent to allow defining the home directory via intent. - Add support for folder:// and directory:// URI schemes for opening folders and picking directories. - Add extra_add_to_history boolean extra to NavigationActivity for history control. - Document all supported intent actions, schemes, and extras in INTENTS.md. - Reference INTENTS.md in the main README.md. --- .vscode/settings.json | 3 + AndroidManifest.xml | 21 +- INTENTS.md | 102 +++ README.md | 4 + ...ges_apps_CMFileManager_volo.code-workspace | 8 + build.gradle | 22 +- build_error.txt | 156 ++++ build_output.txt | 135 ++++ build_output_150.txt | 67 ++ .../filemanager/FileManagerApplication.java | 128 ++-- .../activities/NavigationActivity.java | 708 +++++++++--------- .../preferences/FileManagerSettings.java | 593 ++++++++------- .../providers/BookmarksContentProvider.java | 16 +- .../providers/MimeTypeIndexProvider.java | 17 +- .../RecentSearchesContentProvider.java | 4 +- .../providers/SecureResourceProvider.java | 31 +- .../secure/SecureCacheCleanupService.java | 6 +- .../service/MimeTypeIndexService.java | 9 +- 18 files changed, 1291 insertions(+), 739 deletions(-) create mode 100644 .vscode/settings.json create mode 100644 INTENTS.md create mode 100644 android_packages_apps_CMFileManager_volo.code-workspace create mode 100644 build_error.txt create mode 100644 build_output.txt create mode 100644 build_output_150.txt diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..c5f3f6b9 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "java.configuration.updateBuildConfiguration": "interactive" +} \ No newline at end of file diff --git a/AndroidManifest.xml b/AndroidManifest.xml index a5903008..7eb041f9 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -21,7 +21,7 @@ - + @@ -59,22 +59,22 @@ - + @@ -114,6 +114,13 @@ + + + + + + + - + diff --git a/INTENTS.md b/INTENTS.md new file mode 100644 index 00000000..51d9335a --- /dev/null +++ b/INTENTS.md @@ -0,0 +1,102 @@ +# CMFileManager Intents Documentation + +This document describes the Intent Actions supported by the CMFileManager application. + +## 1. Open a Folder +To open a specific directory in the file manager. + +**Action:** `android.intent.action.VIEW` + +**Supported Schemes:** `file://`, `folder://`, `directory://` + +**MIME Type:** `resource/folder` + +**Data URI:** `file:///absolute/path/to/directory` + +**Example (ADB):** +```bash +# Open using file scheme +adb shell am start -a android.intent.action.VIEW -d "file:///sdcard/Download" -n com.cyanogenmod.filemanager.dev/com.cyanogenmod.filemanager.activities.NavigationActivity + +# Open using folder scheme +adb shell am start -a android.intent.action.VIEW -d "folder:///sdcard/Download" -n com.cyanogenmod.filemanager.dev/com.cyanogenmod.filemanager.activities.NavigationActivity +``` + +**Alternative (using Extras):** +* **Extra Key:** `extra_navigate_to` (String) + * **Value:** `/absolute/path/to/directory` +* **Extra Key:** `extra_add_to_history` (Boolean) + * **Default:** `true` + * **Description:** Whether to add this navigation to the history list. + +--- + +## 2. Set Home Directory +To change the default "Home" directory of the application via intent. This will persist in the application settings. + +**Action:** `${applicationId}.ACTION_SET_HOME` +*(e.g., `com.cyanogenmod.filemanager.ACTION_SET_HOME` or `com.cyanogenmod.filemanager.dev.ACTION_SET_HOME` for debug build)* + +**Supported Schemes:** `file://`, `folder://`, `directory://` + +**Data URI:** `file:///absolute/path/to/new/home` + +**Example (ADB):** +```bash +adb shell am start -a com.cyanogenmod.filemanager.dev.ACTION_SET_HOME -d "file:///sdcard/Music" -n com.cyanogenmod.filemanager.dev/com.cyanogenmod.filemanager.activities.NavigationActivity +``` + +**Alternative (using Extra):** +* **Extra Key:** `extra_navigate_to` (String) + * **Value:** `/absolute/path/to/new/home` + +--- + +## 3. Pick a File +To select a file and return its URI to the calling application. + +**Action:** `android.intent.action.GET_CONTENT` or `android.intent.action.PICK` + +**MIME Type:** `*/*` (or specific mime type) + +**Category:** `android.intent.category.OPENABLE` + +**Example (ADB):** +```bash +adb shell am start -a android.intent.action.GET_CONTENT -t "*/*" -n com.cyanogenmod.filemanager.dev/com.cyanogenmod.filemanager.activities.PickerActivity +``` + +--- + +## 4. Pick a Folder +To select a directory and return its path to the calling application. + +**Action:** `com.android.fileexplorer.action.DIR_SEL` + +**Example (ADB):** +```bash +adb shell am start -a com.android.fileexplorer.action.DIR_SEL -n com.cyanogenmod.filemanager.dev/com.cyanogenmod.filemanager.activities.PickerActivity +``` + +**Return Extra:** +* `def_file_manager_result_dir` (String): The absolute path of the selected folder. + +--- + +## 5. Search +To initiate a search within a directory. + +**Action:** `android.intent.action.SEARCH` + +**Extras:** +* **Extra Key:** `query` (String) + * **Value:** The search term. +* **Extra Key:** `app_data` (Bundle) + * **Content:** Can contain application-specific data. + +--- + +## 6. Other Internal Actions +* `${applicationId}.ACTION_START_INDEX`: Starts indexing service. +* `${applicationId}.ACTION_START_CLEANUP`: Starts cache cleanup service. + diff --git a/README.md b/README.md index a65f13cb..aed668d1 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,10 @@ APK outputs: - Let Gradle sync. - Use the `debug` or `release` build variant. +## Documentation + +- [Intents Documentation](INTENTS.md) - Details on supported Intent actions and parameters. + ## Notes - minSdkVersion: 23 diff --git a/android_packages_apps_CMFileManager_volo.code-workspace b/android_packages_apps_CMFileManager_volo.code-workspace new file mode 100644 index 00000000..876a1499 --- /dev/null +++ b/android_packages_apps_CMFileManager_volo.code-workspace @@ -0,0 +1,8 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": {} +} \ No newline at end of file diff --git a/build.gradle b/build.gradle index 3e0b46ef..27b2738f 100644 --- a/build.gradle +++ b/build.gradle @@ -20,18 +20,37 @@ repositories { android { namespace "com.cyanogenmod.filemanager" compileSdkVersion 33 + buildFeatures { + buildConfig true + } defaultConfig { applicationId "com.cyanogenmod.filemanager" - minSdkVersion 23 + // minSdkVersion handled by flavors targetSdkVersion 33 versionCode 104 versionName "3.0.0" + multiDexEnabled true + } + flavorDimensions "compatibility" + productFlavors { + legacy { + dimension "compatibility" + minSdkVersion 19 + versionNameSuffix "-legacy" + } + standard { + dimension "compatibility" + minSdkVersion 23 + } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard.flags' } + debug { + applicationIdSuffix ".dev" + } } sourceSets { main { @@ -54,6 +73,7 @@ dependencies { implementation "androidx.activity:activity:1.7.2" implementation "com.google.android.material:material:1.9.0" implementation "com.googlecode.juniversalchardet:juniversalchardet:1.0.3" + implementation "androidx.multidex:multidex:2.0.1" // Include local jars from libs directory implementation('de.schlichtherle.truezip:truezip-file:7.7.10') { exclude group: 'org.jetbrains.kotlin' diff --git a/build_error.txt b/build_error.txt new file mode 100644 index 00000000..0ad08f28 --- /dev/null +++ b/build_error.txt @@ -0,0 +1,156 @@ +> Task :preBuild UP-TO-DATE +> Task :preLegacyDebugBuild UP-TO-DATE +> Task :mergeLegacyDebugNativeDebugMetadata NO-SOURCE +> Task :javaPreCompileLegacyDebug UP-TO-DATE +> Task :checkLegacyDebugAarMetadata UP-TO-DATE +> Task :generateLegacyDebugResValues UP-TO-DATE +> Task :mapLegacyDebugSourceSetPaths UP-TO-DATE +> Task :generateLegacyDebugResources UP-TO-DATE +> Task :mergeLegacyDebugResources UP-TO-DATE +> Task :createLegacyDebugCompatibleScreenManifests UP-TO-DATE +> Task :extractDeepLinksLegacyDebug UP-TO-DATE +> Task :processLegacyDebugMainManifest UP-TO-DATE +> Task :processLegacyDebugManifest UP-TO-DATE +> Task :processLegacyDebugManifestForPackage UP-TO-DATE +> Task :processLegacyDebugResources UP-TO-DATE + +> Task :compileLegacyDebugJavaWithJavac FAILED +warning: [options] source value 8 is obsolete and will be removed in a future release +warning: [options] target value 8 is obsolete and will be removed in a future release +warning: [options] To suppress warnings about obsolete options, use -Xlint:-options. +C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\preferences\FileManagerSettings.java:245: error: cannot find symbol + public final static String INTENT_THEME_CHANGED = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager +C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\preferences\FileManagerSettings.java:239: error: cannot find symbol + public final static String INTENT_SETTING_CHANGED = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager +C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\preferences\FileManagerSettings.java:257: error: cannot find symbol + public final static String INTENT_FILE_CHANGED = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager +C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\providers\BookmarksContentProvider.java:54: error: cannot find symbol + public static final String AUTHORITY = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager +C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\preferences\FileManagerSettings.java:251: error: cannot find symbol + public final static String INTENT_MOUNT_STATUS_CHANGED = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager +C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\providers\RecentSearchesContentProvider.java:29: error: cannot find symbol + public static final String AUTHORITY = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager +C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\providers\MimeTypeIndexProvider.java:47: error: cannot find symbol + private static final String AUTHORITY = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + ".providers.index"; + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager +C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\providers\secure\SecureCacheCleanupService.java:43: error: cannot find symbol + private static final String ACTION_START = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager +C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\providers\SecureResourceProvider.java:57: error: cannot find symbol + public static final String AUTHORITY = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager +C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\service\MimeTypeIndexService.java:47: error: cannot find symbol + public static final String ACTION_START_INDEX = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager +Note: Some input files use or override a deprecated API. +Note: Recompile with -Xlint:deprecation for details. +Note: Some input files use unchecked or unsafe operations. +Note: Recompile with -Xlint:unchecked for details. +10 errors +3 warnings + +[Incubating] Problems report is available at: file:///C:/Users/tiaz/Desktop/android_packages_apps_CMFileManager_volo/build/reports/problems/problems-report.html + +FAILURE: Build failed with an exception. + +* What went wrong: +Execution failed for task ':compileLegacyDebugJavaWithJavac'. +> Compilation failed; see the compiler output below. + warning: [options] source value 8 is obsolete and will be removed in a future release + warning: [options] target value 8 is obsolete and will be removed in a future release + warning: [options] To suppress warnings about obsolete options, use -Xlint:-options. + C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\preferences\FileManagerSettings.java:245: error: cannot find symbol + public final static String INTENT_THEME_CHANGED = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager + C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\preferences\FileManagerSettings.java:239: error: cannot find symbol + public final static String INTENT_SETTING_CHANGED = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager + C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\preferences\FileManagerSettings.java:257: error: cannot find symbol + public final static String INTENT_FILE_CHANGED = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager + C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\providers\BookmarksContentProvider.java:54: error: cannot find symbol + public static final String AUTHORITY = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager + C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\preferences\FileManagerSettings.java:251: error: cannot find symbol + public final static String INTENT_MOUNT_STATUS_CHANGED = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager + C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\providers\RecentSearchesContentProvider.java:29: error: cannot find symbol + public static final String AUTHORITY = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager + C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\providers\MimeTypeIndexProvider.java:47: error: cannot find symbol + private static final String AUTHORITY = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + ".providers.index"; + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager + C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\providers\secure\SecureCacheCleanupService.java:43: error: cannot find symbol + private static final String ACTION_START = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager + C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\providers\SecureResourceProvider.java:57: error: cannot find symbol + public static final String AUTHORITY = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager + C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\service\MimeTypeIndexService.java:47: error: cannot find symbol + public static final String ACTION_START_INDEX = com.cyanogenmod.filemanager.BuildConfig.APPLICATION_ID + + ^ + symbol: class BuildConfig + location: package com.cyanogenmod.filemanager + Note: Some input files use or override a deprecated API. + Note: Recompile with -Xlint:deprecation for details. + Note: Some input files use unchecked or unsafe operations. + Note: Recompile with -Xlint:unchecked for details. + 10 errors + 3 warnings + +* Try: +> Check your code and dependencies to fix the compilation error(s) +> Run with --scan to get full insights. + +Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. + +You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. + +For more on this, please refer to https://docs.gradle.org/8.13/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation. + +BUILD FAILED in 1s +12 actionable tasks: 1 executed, 11 up-to-date diff --git a/build_output.txt b/build_output.txt new file mode 100644 index 00000000..1f77aeea --- /dev/null +++ b/build_output.txt @@ -0,0 +1,135 @@ +> Task :preBuild UP-TO-DATE +> Task :preLegacyDebugBuild UP-TO-DATE +> Task :mergeLegacyDebugNativeDebugMetadata NO-SOURCE +> Task :javaPreCompileLegacyDebug UP-TO-DATE +> Task :checkLegacyDebugAarMetadata UP-TO-DATE +> Task :generateLegacyDebugResValues UP-TO-DATE +> Task :mapLegacyDebugSourceSetPaths UP-TO-DATE +> Task :generateLegacyDebugResources UP-TO-DATE +> Task :mergeLegacyDebugResources UP-TO-DATE +> Task :createLegacyDebugCompatibleScreenManifests UP-TO-DATE +> Task :extractDeepLinksLegacyDebug UP-TO-DATE +> Task :processLegacyDebugMainManifest UP-TO-DATE +> Task :processLegacyDebugManifest UP-TO-DATE +> Task :processLegacyDebugManifestForPackage UP-TO-DATE +> Task :processLegacyDebugResources UP-TO-DATE + +> Task :compileLegacyDebugJavaWithJavac +warning: [options] source value 8 is obsolete and will be removed in a future release +warning: [options] target value 8 is obsolete and will be removed in a future release +warning: [options] To suppress warnings about obsolete options, use -Xlint:-options. +Note: Some input files use or override a deprecated API. +Note: Recompile with -Xlint:deprecation for details. +Note: Some input files use unchecked or unsafe operations. +Note: Recompile with -Xlint:unchecked for details. +3 warnings + +> Task :mergeLegacyDebugShaders UP-TO-DATE +> Task :compileLegacyDebugShaders NO-SOURCE +> Task :generateLegacyDebugAssets UP-TO-DATE +> Task :mergeLegacyDebugAssets UP-TO-DATE +> Task :compressLegacyDebugAssets UP-TO-DATE +> Task :checkLegacyDebugDuplicateClasses UP-TO-DATE +> Task :dexBuilderLegacyDebug +> Task :desugarLegacyDebugFileDependencies UP-TO-DATE +> Task :processLegacyDebugJavaRes NO-SOURCE +> Task :mergeLegacyDebugJavaResource UP-TO-DATE +> Task :mergeLegacyDebugJniLibFolders UP-TO-DATE +> Task :mergeLegacyDebugNativeLibs NO-SOURCE +> Task :stripLegacyDebugDebugSymbols NO-SOURCE +> Task :validateSigningLegacyDebug UP-TO-DATE +> Task :writeLegacyDebugAppMetadata UP-TO-DATE +> Task :writeLegacyDebugSigningConfigVersions UP-TO-DATE + +> Task :mergeExtDexLegacyDebug FAILED +ERROR: D8: Cannot fit requested classes in a single dex file (# methods: 80620 > 65536) +com.android.builder.dexing.DexArchiveMergerException: Error while merging dex archives: +The number of method references in a .dex file cannot exceed 64K. +Learn how to resolve this issue at https://developer.android.com/tools/building/multidex.html + at com.android.builder.dexing.D8DexArchiveMerger.getMergingExceptionToRethrow(D8DexArchiveMerger.java:159) + at com.android.builder.dexing.D8DexArchiveMerger.mergeDexArchives(D8DexArchiveMerger.java:147) + at com.android.build.gradle.internal.tasks.DexMergingWorkAction.merge(DexMergingTask.kt:891) + at com.android.build.gradle.internal.tasks.DexMergingWorkAction.run(DexMergingTask.kt:835) + at com.android.build.gradle.internal.profile.ProfileAwareWorkAction.execute(ProfileAwareWorkAction.kt:74) + at org.gradle.workers.internal.DefaultWorkerServer.execute(DefaultWorkerServer.java:63) + at org.gradle.workers.internal.NoIsolationWorkerFactory$1$1.create(NoIsolationWorkerFactory.java:66) + at org.gradle.workers.internal.NoIsolationWorkerFactory$1$1.create(NoIsolationWorkerFactory.java:62) + at org.gradle.internal.classloader.ClassLoaderUtils.executeInClassloader(ClassLoaderUtils.java:100) + at org.gradle.workers.internal.NoIsolationWorkerFactory$1.lambda$execute$0(NoIsolationWorkerFactory.java:62) + at org.gradle.workers.internal.AbstractWorker$1.call(AbstractWorker.java:44) + at org.gradle.workers.internal.AbstractWorker$1.call(AbstractWorker.java:41) + at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:210) + at org.gradle.internal.operations.DefaultBuildOperationRunner$CallableBuildOperationWorker.execute(DefaultBuildOperationRunner.java:205) + at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:67) + at org.gradle.internal.operations.DefaultBuildOperationRunner$2.execute(DefaultBuildOperationRunner.java:60) + at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:167) + at org.gradle.internal.operations.DefaultBuildOperationRunner.execute(DefaultBuildOperationRunner.java:60) + at org.gradle.internal.operations.DefaultBuildOperationRunner.call(DefaultBuildOperationRunner.java:54) + at org.gradle.workers.internal.AbstractWorker.executeWrappedInBuildOperation(AbstractWorker.java:41) + at org.gradle.workers.internal.NoIsolationWorkerFactory$1.execute(NoIsolationWorkerFactory.java:59) + at org.gradle.workers.internal.DefaultWorkerExecutor.lambda$submitWork$0(DefaultWorkerExecutor.java:174) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:317) + at org.gradle.internal.work.DefaultConditionalExecutionQueue$ExecutionRunner.runExecution(DefaultConditionalExecutionQueue.java:194) + at org.gradle.internal.work.DefaultConditionalExecutionQueue$ExecutionRunner.access$700(DefaultConditionalExecutionQueue.java:127) + at org.gradle.internal.work.DefaultConditionalExecutionQueue$ExecutionRunner$1.run(DefaultConditionalExecutionQueue.java:169) + at org.gradle.internal.Factories$1.create(Factories.java:31) + at org.gradle.internal.work.DefaultWorkerLeaseService.withLocks(DefaultWorkerLeaseService.java:263) + at org.gradle.internal.work.DefaultWorkerLeaseService.runAsWorkerThread(DefaultWorkerLeaseService.java:127) + at org.gradle.internal.work.DefaultWorkerLeaseService.runAsWorkerThread(DefaultWorkerLeaseService.java:132) + at org.gradle.internal.work.DefaultConditionalExecutionQueue$ExecutionRunner.runBatch(DefaultConditionalExecutionQueue.java:164) + at org.gradle.internal.work.DefaultConditionalExecutionQueue$ExecutionRunner.run(DefaultConditionalExecutionQueue.java:133) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:572) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:317) + at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:64) + at org.gradle.internal.concurrent.AbstractManagedExecutor$1.run(AbstractManagedExecutor.java:48) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) + at java.base/java.lang.Thread.run(Thread.java:1583) +Caused by: com.android.tools.r8.CompilationFailedException: Compilation failed to complete, position: null + at Version.fakeStackEntry(Version_8.2.33.java:0) + at com.android.tools.r8.T.a(R8_8.2.33_429c93fd24a535127db6f4e2628eb18f2f978e02f99f55740728d6b22bef16dd:5) + at com.android.tools.r8.utils.S0.a(R8_8.2.33_429c93fd24a535127db6f4e2628eb18f2f978e02f99f55740728d6b22bef16dd:82) + at com.android.tools.r8.utils.S0.a(R8_8.2.33_429c93fd24a535127db6f4e2628eb18f2f978e02f99f55740728d6b22bef16dd:32) + at com.android.tools.r8.utils.S0.a(R8_8.2.33_429c93fd24a535127db6f4e2628eb18f2f978e02f99f55740728d6b22bef16dd:31) + at com.android.tools.r8.utils.S0.b(R8_8.2.33_429c93fd24a535127db6f4e2628eb18f2f978e02f99f55740728d6b22bef16dd:2) + at com.android.tools.r8.D8.run(R8_8.2.33_429c93fd24a535127db6f4e2628eb18f2f978e02f99f55740728d6b22bef16dd:11) + at com.android.builder.dexing.D8DexArchiveMerger.mergeDexArchives(D8DexArchiveMerger.java:145) + ... 37 more +Caused by: com.android.tools.r8.utils.b: Cannot fit requested classes in a single dex file (# methods: 80620 > 65536) + at com.android.tools.r8.utils.Q2.a(R8_8.2.33_429c93fd24a535127db6f4e2628eb18f2f978e02f99f55740728d6b22bef16dd:21) + at com.android.tools.r8.dex.o0.a(R8_8.2.33_429c93fd24a535127db6f4e2628eb18f2f978e02f99f55740728d6b22bef16dd:29) + at com.android.tools.r8.dex.k.a(R8_8.2.33_429c93fd24a535127db6f4e2628eb18f2f978e02f99f55740728d6b22bef16dd:70) + at com.android.tools.r8.dex.k.a(R8_8.2.33_429c93fd24a535127db6f4e2628eb18f2f978e02f99f55740728d6b22bef16dd:182) + at com.android.tools.r8.D8.d(R8_8.2.33_429c93fd24a535127db6f4e2628eb18f2f978e02f99f55740728d6b22bef16dd:146) + at com.android.tools.r8.D8.b(R8_8.2.33_429c93fd24a535127db6f4e2628eb18f2f978e02f99f55740728d6b22bef16dd:1) + at com.android.tools.r8.utils.S0.a(R8_8.2.33_429c93fd24a535127db6f4e2628eb18f2f978e02f99f55740728d6b22bef16dd:28) + ... 40 more + + +[Incubating] Problems report is available at: file:///C:/Users/tiaz/Desktop/android_packages_apps_CMFileManager_volo/build/reports/problems/problems-report.html + +FAILURE: Build failed with an exception. + +* What went wrong: +Execution failed for task ':mergeExtDexLegacyDebug'. +> A failure occurred while executing com.android.build.gradle.internal.tasks.DexMergingTaskDelegate + > There was a failure while executing work items + > A failure occurred while executing com.android.build.gradle.internal.tasks.DexMergingWorkAction + > com.android.builder.dexing.DexArchiveMergerException: Error while merging dex archives: + The number of method references in a .dex file cannot exceed 64K. + Learn how to resolve this issue at https://developer.android.com/tools/building/multidex.html + +* Try: +> Run with --stacktrace option to get the stack trace. +> Run with --info or --debug option to get more log output. +> Run with --scan to get full insights. +> Get more help at https://help.gradle.org. + +Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. + +You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. + +For more on this, please refer to https://docs.gradle.org/8.13/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation. + +BUILD FAILED in 8s +24 actionable tasks: 3 executed, 21 up-to-date diff --git a/build_output_150.txt b/build_output_150.txt new file mode 100644 index 00000000..1c62bae5 --- /dev/null +++ b/build_output_150.txt @@ -0,0 +1,67 @@ +> Task :preBuild UP-TO-DATE +> Task :preStandardDebugBuild UP-TO-DATE +> Task :mergeStandardDebugNativeDebugMetadata NO-SOURCE +> Task :generateStandardDebugBuildConfig UP-TO-DATE +> Task :javaPreCompileStandardDebug UP-TO-DATE +> Task :checkStandardDebugAarMetadata UP-TO-DATE +> Task :generateStandardDebugResValues UP-TO-DATE +> Task :mapStandardDebugSourceSetPaths UP-TO-DATE +> Task :generateStandardDebugResources UP-TO-DATE +> Task :mergeStandardDebugResources UP-TO-DATE +> Task :createStandardDebugCompatibleScreenManifests UP-TO-DATE +> Task :extractDeepLinksStandardDebug UP-TO-DATE +> Task :processStandardDebugMainManifest UP-TO-DATE +> Task :processStandardDebugManifest UP-TO-DATE +> Task :processStandardDebugManifestForPackage UP-TO-DATE +> Task :processStandardDebugResources UP-TO-DATE + +> Task :compileStandardDebugJavaWithJavac FAILED +warning: [options] source value 8 is obsolete and will be removed in a future release +warning: [options] target value 8 is obsolete and will be removed in a future release +warning: [options] To suppress warnings about obsolete options, use -Xlint:-options. +C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\activities\NavigationActivity.java:2049: error: cannot find symbol + DialogHelper.showToast(this, getString(R.string.toast_settings_saved), Toast.LENGTH_SHORT); + ^ + symbol: variable toast_settings_saved + location: class string +Note: Some input files use or override a deprecated API. +Note: Recompile with -Xlint:deprecation for details. +Note: C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\activities\SearchActivity.java uses unchecked or unsafe operations. +Note: Recompile with -Xlint:unchecked for details. +1 error +3 warnings + +[Incubating] Problems report is available at: file:///C:/Users/tiaz/Desktop/android_packages_apps_CMFileManager_volo/build/reports/problems/problems-report.html + +FAILURE: Build failed with an exception. + +* What went wrong: +Execution failed for task ':compileStandardDebugJavaWithJavac'. +> Compilation failed; see the compiler output below. + warning: [options] source value 8 is obsolete and will be removed in a future release + warning: [options] target value 8 is obsolete and will be removed in a future release + warning: [options] To suppress warnings about obsolete options, use -Xlint:-options. + C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\activities\NavigationActivity.java:2049: error: cannot find symbol + DialogHelper.showToast(this, getString(R.string.toast_settings_saved), Toast.LENGTH_SHORT); + ^ + symbol: variable toast_settings_saved + location: class string + Note: Some input files use or override a deprecated API. + Note: Recompile with -Xlint:deprecation for details. + Note: C:\Users\tiaz\Desktop\android_packages_apps_CMFileManager_volo\src\com\cyanogenmod\filemanager\activities\SearchActivity.java uses unchecked or unsafe operations. + Note: Recompile with -Xlint:unchecked for details. + 1 error + 3 warnings + +* Try: +> Check your code and dependencies to fix the compilation error(s) +> Run with --scan to get full insights. + +Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. + +You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. + +For more on this, please refer to https://docs.gradle.org/8.13/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation. + +BUILD FAILED in 1s +13 actionable tasks: 1 executed, 12 up-to-date diff --git a/src/com/cyanogenmod/filemanager/FileManagerApplication.java b/src/com/cyanogenmod/filemanager/FileManagerApplication.java index aa0ecb51..5cc0c466 100644 --- a/src/com/cyanogenmod/filemanager/FileManagerApplication.java +++ b/src/com/cyanogenmod/filemanager/FileManagerApplication.java @@ -54,6 +54,7 @@ /** * A class that wraps the information of the application (constants, * identifiers, statics variables, ...). + * * @hide */ public final class FileManagerApplication extends Application { @@ -67,11 +68,12 @@ public final class FileManagerApplication extends Application { /** * A constant that contains the main process name. + * * @hide */ public static final String MAIN_PROCESS = "com.cyanogenmod.filemanager"; //$NON-NLS-1$ - //Static resources + // Static resources private static FileManagerApplication sApp; private static ConsoleHolder sBackgroundConsole; @@ -87,16 +89,17 @@ public void onReceive(Context context, Intent intent) { FileManagerSettings.INTENT_SETTING_CHANGED) == 0) { // The settings has changed - String key = - intent.getStringExtra(FileManagerSettings.EXTRA_SETTING_CHANGED_KEY); + String key = intent.getStringExtra(FileManagerSettings.EXTRA_SETTING_CHANGED_KEY); if (key != null && - key.compareTo(FileManagerSettings.SETTINGS_SHOW_TRACES.getId()) == 0) { + key.compareTo(FileManagerSettings.SETTINGS_SHOW_TRACES.getId()) == 0) { // The debug traces setting has changed. Notify to consoles Console c = null; try { c = getBackgroundConsole(); - } catch (Exception e) {/**NON BLOCK**/} + } catch (Exception e) { + /** NON BLOCK **/ + } if (c != null) { c.reloadTrace(); } @@ -105,20 +108,23 @@ public void onReceive(Context context, Intent intent) { if (c != null) { c.reloadTrace(); } - } catch (Throwable _throw) {/**NON BLOCK**/} + } catch (Throwable _throw) { + /** NON BLOCK **/ + } } } } } }; - // A broadcast receiver for detect the install/uninstall of apps (for themes, AIDs, ...) + // A broadcast receiver for detect the install/uninstall of apps (for themes, + // AIDs, ...) private final BroadcastReceiver mUninstallReceiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { if (intent != null) { if (intent.getAction().compareTo(Intent.ACTION_PACKAGE_REMOVED) == 0 || - intent.getAction().compareTo(Intent.ACTION_PACKAGE_FULLY_REMOVED) == 0) { + intent.getAction().compareTo(Intent.ACTION_PACKAGE_FULLY_REMOVED) == 0) { // Check that the remove package is not the current theme if (intent.getData() != null) { // --- AIDs @@ -138,8 +144,7 @@ public void onReceive(Context context, Intent intent) { if (currentTheme.getPackage().compareTo(apkPackage) == 0) { // The apk that contains the current theme was remove, change // to default theme - String composedId = - (String)FileManagerSettings.SETTINGS_THEME.getDefaultValue(); + String composedId = (String) FileManagerSettings.SETTINGS_THEME.getDefaultValue(); ThemeManager.setCurrentTheme(getApplicationContext(), composedId); try { Preferences.savePreference( @@ -150,8 +155,7 @@ public void onReceive(Context context, Intent intent) { // Notify the changes to activities try { - Intent broadcastIntent = - new Intent(FileManagerSettings.INTENT_THEME_CHANGED); + Intent broadcastIntent = new Intent(FileManagerSettings.INTENT_THEME_CHANGED); broadcastIntent.putExtra( FileManagerSettings.EXTRA_THEME_ID, composedId); sendBroadcast(broadcastIntent); @@ -168,6 +172,17 @@ public void onReceive(Context context, Intent intent) { } }; + /** + * {@inheritDoc} + */ + /** + * {@inheritDoc} + */ + @Override + protected void attachBaseContext(Context base) { + super.attachBaseContext(base); + androidx.multidex.MultiDex.install(this); + } /** * {@inheritDoc} @@ -180,7 +195,8 @@ public void onCreate() { init(); register(); - // Kick off usage by mime type indexing for external storage; most likely use case for + // Kick off usage by mime type indexing for external storage; most likely use + // case for // file manager File externalStorage = Environment.getExternalStorageDirectory(); MimeTypeIndexService.indexFileRoot(this, externalStorage.getAbsolutePath()); @@ -190,7 +206,6 @@ public void onCreate() { MimeTypeIndexService.indexFileRoot(this, StorageHelper.getStorageVolumePath(storageVolume)); } - // Schedule in case not scheduled (i.e. never booted with this app on device SecureCacheCleanupService.scheduleCleanup(getApplicationContext()); @@ -207,22 +222,22 @@ public void onTerminate() { try { unregisterReceiver(this.mNotificationReceiver); } catch (Throwable ex) { - /**NON BLOCK**/ + /** NON BLOCK **/ } try { unregisterReceiver(this.mUninstallReceiver); } catch (Throwable ex) { - /**NON BLOCK**/ + /** NON BLOCK **/ } try { destroyBackgroundConsole(); } catch (Throwable ex) { - /**NON BLOCK**/ + /** NON BLOCK **/ } try { ConsoleBuilder.destroyConsole(); } catch (Throwable ex) { - /**NON BLOCK**/ + /** NON BLOCK **/ } super.onTerminate(); } @@ -248,7 +263,7 @@ private void register() { * Method that initializes the application. */ private void init() { - //Save the static application reference + // Save the static application reference sApp = this; // Read the system properties @@ -265,21 +280,20 @@ private void init() { // Check optional commands loadOptionalCommands(); - //Sets the default preferences if no value is set yet + // Sets the default preferences if no value is set yet Preferences.loadDefaults(); // Read AIDs AIDHelper.getAIDs(getApplicationContext(), true); // Allocate the default and current themes - String defaultValue = ((String)FileManagerSettings. - SETTINGS_THEME.getDefaultValue()); + String defaultValue = ((String) FileManagerSettings.SETTINGS_THEME.getDefaultValue()); String value = Preferences.getSharedPreferences().getString( FileManagerSettings.SETTINGS_THEME.getId(), defaultValue); ThemeManager.getDefaultTheme(getApplicationContext()); if (!ThemeManager.setCurrentTheme(getApplicationContext(), value)) { - //The current theme was not found. Mark the default setting as default theme + // The current theme was not found. Mark the default setting as default theme ThemeManager.setCurrentTheme(getApplicationContext(), defaultValue); try { Preferences.savePreference( @@ -292,12 +306,12 @@ private void init() { Theme theme = ThemeManager.getCurrentTheme(getApplicationContext()); theme.setBaseTheme(getApplicationContext(), false); - //Create a console for background tasks. Register the virtual console prior to + // Create a console for background tasks. Register the virtual console prior to // the real console so mount point can be listed properly VirtualMountPointConsole.registerVirtualConsoles(getApplicationContext()); allocBackgroundConsole(getApplicationContext()); - //Force the load of mime types + // Force the load of mime types try { MimeTypeHelper.loadMimeTypes(getApplicationContext()); } catch (Exception e) { @@ -372,8 +386,8 @@ public static String getSystemProperty(String property) { */ public static Console getBackgroundConsole() { if (sBackgroundConsole == null || - sBackgroundConsole.getConsole() == null || - !sBackgroundConsole.getConsole().isActive()) { + sBackgroundConsole.getConsole() == null || + !sBackgroundConsole.getConsole().isActive()) { allocBackgroundConsole(getInstance().getApplicationContext()); } @@ -387,7 +401,7 @@ public static void destroyBackgroundConsole() { try { sBackgroundConsole.dispose(); } catch (Throwable ex) { - /**NON BLOCK**/ + /** NON BLOCK **/ } } @@ -404,20 +418,19 @@ private static synchronized void allocBackgroundConsole(Context ctx) { sBackgroundConsole = null; } - //Create a console for background tasks + // Create a console for background tasks if (ConsoleBuilder.isPrivileged()) { - sBackgroundConsole = - new ConsoleHolder( - ConsoleBuilder.createPrivilegedConsole(ctx)); + sBackgroundConsole = new ConsoleHolder( + ConsoleBuilder.createPrivilegedConsole(ctx)); } else { - sBackgroundConsole = - new ConsoleHolder( - ConsoleBuilder.createNonPrivilegedConsole(ctx)); + sBackgroundConsole = new ConsoleHolder( + ConsoleBuilder.createNonPrivilegedConsole(ctx)); } } catch (Exception e) { Log.e(TAG, - "Background console creation failed. " + //$NON-NLS-1$ - "This probably will cause a force close.", e); //$NON-NLS-1$ + "Background console creation failed. " + //$NON-NLS-1$ + "This probably will cause a force close.", //$NON-NLS-1$ + e); } } @@ -429,25 +442,28 @@ private static synchronized void allocBackgroundConsole(Context ctx) { public static void changeBackgroundConsoleToPriviligedConsole() throws ConsoleAllocException { if (sBackgroundConsole == null || - !(sBackgroundConsole.getConsole() instanceof PrivilegedConsole)) { + !(sBackgroundConsole.getConsole() instanceof PrivilegedConsole)) { try { if (sBackgroundConsole != null) { sBackgroundConsole.dispose(); } - } catch (Throwable ex) {/**NON BLOCK**/} + } catch (Throwable ex) { + /** NON BLOCK **/ + } // Change the privileged console try { - sBackgroundConsole = - new ConsoleHolder( - ConsoleBuilder.createPrivilegedConsole( - getInstance().getApplicationContext())); + sBackgroundConsole = new ConsoleHolder( + ConsoleBuilder.createPrivilegedConsole( + getInstance().getApplicationContext())); } catch (Exception e) { try { if (sBackgroundConsole != null) { sBackgroundConsole.dispose(); } - } catch (Throwable ex) {/**NON BLOCK**/} + } catch (Throwable ex) { + /** NON BLOCK **/ + } sBackgroundConsole = null; throw new ConsoleAllocException( "Failed to alloc background console", e); //$NON-NLS-1$ @@ -464,12 +480,10 @@ public static AccessMode getAccessMode() { if (!sHasShellCommands) { return AccessMode.SAFE; } - String defaultValue = - ((ObjectStringIdentifier)FileManagerSettings. - SETTINGS_ACCESS_MODE.getDefaultValue()).getId(); + String defaultValue = ((ObjectStringIdentifier) FileManagerSettings.SETTINGS_ACCESS_MODE.getDefaultValue()) + .getId(); String id = FileManagerSettings.SETTINGS_ACCESS_MODE.getId(); - AccessMode mode = - AccessMode.fromId(Preferences.getSharedPreferences().getString(id, defaultValue)); + AccessMode mode = AccessMode.fromId(Preferences.getSharedPreferences().getString(id, defaultValue)); return mode; } @@ -477,8 +491,7 @@ public static boolean isRestrictSecondaryUsersAccess(Context context) { String value = Preferences.getWorldReadableProperties( context, FileManagerSettings.SETTINGS_RESTRICT_SECONDARY_USERS_ACCESS.getId()); if (value == null) { - value = String.valueOf(FileManagerSettings.SETTINGS_RESTRICT_SECONDARY_USERS_ACCESS. - getDefaultValue()); + value = String.valueOf(FileManagerSettings.SETTINGS_RESTRICT_SECONDARY_USERS_ACCESS.getDefaultValue()); } return Boolean.parseBoolean(value); } @@ -513,8 +526,7 @@ public static boolean checkRestrictSecondaryUsersAccess(Context context, boolean */ private static void readSystemProperties() { try { - String propsFile = - getInstance().getApplicationContext().getString(R.string.system_props_file); + String propsFile = getInstance().getApplicationContext().getString(R.string.system_props_file); Properties props = new Properties(); props.load(new FileInputStream(new File(propsFile))); sSystemProperties = props; @@ -535,13 +547,14 @@ private boolean areShellCommandsPresent() { String[] commands = shellCommands.split(","); //$NON-NLS-1$ int cc = commands.length; if (cc == 0) { - //??? + // ??? Log.w(TAG, "No shell commands."); //$NON-NLS-1$ return false; } for (int i = 0; i < cc; i++) { String c = commands[i].trim(); - if (c.length() == 0) continue; + if (c.length() == 0) + continue; File cmd = new File(c); if (!cmd.exists() || !cmd.isFile()) { Log.w(TAG, @@ -603,8 +616,9 @@ private void loadOptionalCommands() { for (int i = 0; i < cc; i++) { String c = commands[i].trim(); String key = c.substring(0, c.indexOf("=")).trim(); //$NON-NLS-1$ - c = c.substring(c.indexOf("=")+1).trim(); //$NON-NLS-1$ - if (c.length() == 0) continue; + c = c.substring(c.indexOf("=") + 1).trim(); //$NON-NLS-1$ + if (c.length() == 0) + continue; File cmd = new File(c); Boolean found = Boolean.valueOf(cmd.exists() && cmd.isFile()); sOptionalCommandsMap.put(key, found); diff --git a/src/com/cyanogenmod/filemanager/activities/NavigationActivity.java b/src/com/cyanogenmod/filemanager/activities/NavigationActivity.java index 0ca82436..62a89208 100755 --- a/src/com/cyanogenmod/filemanager/activities/NavigationActivity.java +++ b/src/com/cyanogenmod/filemanager/activities/NavigationActivity.java @@ -141,18 +141,23 @@ /** * The main navigation activity. This activity is the center of the application. * From this the user can navigate, search, make actions.
- * This activity is singleTop, so when it is displayed no other activities exists in + * This activity is singleTop, so when it is displayed no other activities + * exists in * the stack.
- * This cause an issue with the saved instance of this class, because if another activity - * is displayed, and the process is killed, NavigationActivity is started and the saved + * This cause an issue with the saved instance of this class, because if another + * activity + * is displayed, and the process is killed, NavigationActivity is started and + * the saved * instance gets corrupted.
- * For this reason the methods {link {@link Activity#onSaveInstanceState(Bundle)} and - * {@link Activity#onRestoreInstanceState(Bundle)} are not implemented, and every time + * For this reason the methods {link + * {@link Activity#onSaveInstanceState(Bundle)} and + * {@link Activity#onRestoreInstanceState(Bundle)} are not implemented, and + * every time * the app is killed, is restarted from his initial state. */ public class NavigationActivity extends Activity - implements OnHistoryListener, OnRequestRefreshListener, - OnNavigationRequestMenuListener, OnNavigationSelectionChangedListener { + implements OnHistoryListener, OnRequestRefreshListener, + OnNavigationRequestMenuListener, OnNavigationSelectionChangedListener { private static final String TAG = "NavigationActivity"; //$NON-NLS-1$ @@ -177,33 +182,28 @@ public class NavigationActivity extends Activity /** * Constant for extra information about selected search entry. */ - public static final String EXTRA_SEARCH_ENTRY_SELECTION = - "extra_search_entry_selection"; //$NON-NLS-1$ + public static final String EXTRA_SEARCH_ENTRY_SELECTION = "extra_search_entry_selection"; //$NON-NLS-1$ /** * Constant for extra information about last search data. */ - public static final String EXTRA_SEARCH_LAST_SEARCH_DATA = - "extra_search_last_search_data"; //$NON-NLS-1$ + public static final String EXTRA_SEARCH_LAST_SEARCH_DATA = "extra_search_last_search_data"; //$NON-NLS-1$ /** * Constant for extra information for request a navigation to the passed path. */ - public static final String EXTRA_NAVIGATE_TO = - "extra_navigate_to"; //$NON-NLS-1$ + public static final String EXTRA_NAVIGATE_TO = "extra_navigate_to"; //$NON-NLS-1$ /** * Constant for extra information for request to add navigation to the history */ - public static final String EXTRA_ADD_TO_HISTORY = - "extra_add_to_history"; //$NON-NLS-1$ + public static final String EXTRA_ADD_TO_HISTORY = "extra_add_to_history"; //$NON-NLS-1$ // The timeout needed to reset the exit status for back button // After this time user need to tap 2 times the back button to // exit, and the toast is shown again after the first tap. private static final int RELEASE_EXIT_CHECK_TIMEOUT = 3500; - private Toolbar mToolBar; private SearchView mSearchView; private NavigationCustomTitleView mCustomTitleView; @@ -220,55 +220,45 @@ public void onReceive(Context context, Intent intent) { String key = intent.getStringExtra(FileManagerSettings.EXTRA_SETTING_CHANGED_KEY); if (key != null) { // Disk usage warning level - if (key.compareTo(FileManagerSettings. - SETTINGS_DISK_USAGE_WARNING_LEVEL.getId()) == 0) { + if (key.compareTo(FileManagerSettings.SETTINGS_DISK_USAGE_WARNING_LEVEL.getId()) == 0) { // Set the free disk space warning level of the breadcrumb widget Breadcrumb breadcrumb = getCurrentNavigationView().getBreadcrumb(); String fds = Preferences.getSharedPreferences().getString( FileManagerSettings.SETTINGS_DISK_USAGE_WARNING_LEVEL.getId(), - (String)FileManagerSettings. - SETTINGS_DISK_USAGE_WARNING_LEVEL.getDefaultValue()); + (String) FileManagerSettings.SETTINGS_DISK_USAGE_WARNING_LEVEL.getDefaultValue()); breadcrumb.setFreeDiskSpaceWarningLevel(Integer.parseInt(fds)); breadcrumb.updateMountPointInfo(); return; } // Case sensitive sort - if (key.compareTo(FileManagerSettings. - SETTINGS_CASE_SENSITIVE_SORT.getId()) == 0) { + if (key.compareTo(FileManagerSettings.SETTINGS_CASE_SENSITIVE_SORT.getId()) == 0) { getCurrentNavigationView().refresh(); return; } // Display thumbs - if (key.compareTo(FileManagerSettings. - SETTINGS_DISPLAY_THUMBS.getId()) == 0) { + if (key.compareTo(FileManagerSettings.SETTINGS_DISPLAY_THUMBS.getId()) == 0) { // Clean the icon cache applying the current theme applyTheme(); return; } // Use flinger - if (key.compareTo(FileManagerSettings. - SETTINGS_USE_FLINGER.getId()) == 0) { - boolean useFlinger = - Preferences.getSharedPreferences().getBoolean( - FileManagerSettings.SETTINGS_USE_FLINGER.getId(), - ((Boolean)FileManagerSettings. - SETTINGS_USE_FLINGER. - getDefaultValue()).booleanValue()); + if (key.compareTo(FileManagerSettings.SETTINGS_USE_FLINGER.getId()) == 0) { + boolean useFlinger = Preferences.getSharedPreferences().getBoolean( + FileManagerSettings.SETTINGS_USE_FLINGER.getId(), + ((Boolean) FileManagerSettings.SETTINGS_USE_FLINGER.getDefaultValue()) + .booleanValue()); getCurrentNavigationView().setUseFlinger(useFlinger); return; } // Access mode - if (key.compareTo(FileManagerSettings. - SETTINGS_ACCESS_MODE.getId()) == 0) { + if (key.compareTo(FileManagerSettings.SETTINGS_ACCESS_MODE.getId()) == 0) { // Is it necessary to create or exit of the ChRooted? - boolean chRooted = - FileManagerApplication. - getAccessMode().compareTo(AccessMode.SAFE) == 0; + boolean chRooted = FileManagerApplication.getAccessMode().compareTo(AccessMode.SAFE) == 0; if (chRooted != NavigationActivity.this.mChRooted) { if (chRooted) { createChRooted(); @@ -279,8 +269,7 @@ public void onReceive(Context context, Intent intent) { } // Restricted access - if (key.compareTo(FileManagerSettings. - SETTINGS_RESTRICT_SECONDARY_USERS_ACCESS.getId()) == 0) { + if (key.compareTo(FileManagerSettings.SETTINGS_RESTRICT_SECONDARY_USERS_ACCESS.getId()) == 0) { if (AndroidHelper.isSecondaryUser(context)) { try { Preferences.savePreference( @@ -295,8 +284,7 @@ public void onReceive(Context context, Intent intent) { } // Filetime format mode - if (key.compareTo(FileManagerSettings. - SETTINGS_FILETIME_FORMAT_MODE.getId()) == 0) { + if (key.compareTo(FileManagerSettings.SETTINGS_FILETIME_FORMAT_MODE.getId()) == 0) { // Refresh the data synchronized (FileHelper.DATETIME_SYNC) { FileHelper.sReloadDateTimeFormats = true; @@ -308,8 +296,7 @@ public void onReceive(Context context, Intent intent) { } else if (intent.getAction().compareTo( FileManagerSettings.INTENT_FILE_CHANGED) == 0) { // Retrieve the file that was changed - String file = - intent.getStringExtra(FileManagerSettings.EXTRA_FILE_CHANGED_KEY); + String file = intent.getStringExtra(FileManagerSettings.EXTRA_FILE_CHANGED_KEY); try { FileSystemObject fso = CommandHelper.getFileInfo(context, file, null); if (fso != null) { @@ -324,9 +311,9 @@ public void onReceive(Context context, Intent intent) { applyTheme(); } else if (intent.getAction().compareTo(Intent.ACTION_TIME_CHANGED) == 0 || - intent.getAction().compareTo(Intent.ACTION_DATE_CHANGED) == 0 || - intent.getAction().compareTo(Intent.ACTION_TIMEZONE_CHANGED) == 0 || - intent.getAction().compareTo(Intent.ACTION_LOCALE_CHANGED) == 0) { + intent.getAction().compareTo(Intent.ACTION_DATE_CHANGED) == 0 || + intent.getAction().compareTo(Intent.ACTION_TIMEZONE_CHANGED) == 0 || + intent.getAction().compareTo(Intent.ACTION_LOCALE_CHANGED) == 0) { // Refresh the data synchronized (FileHelper.DATETIME_SYNC) { FileHelper.sReloadDateTimeFormats = true; @@ -334,8 +321,8 @@ public void onReceive(Context context, Intent intent) { } } else if (intent.getAction().compareTo( FileManagerSettings.INTENT_MOUNT_STATUS_CHANGED) == 0 || - intent.getAction().equals(Intent.ACTION_MEDIA_MOUNTED) || - intent.getAction().equals(Intent.ACTION_MEDIA_UNMOUNTED)) { + intent.getAction().equals(Intent.ACTION_MEDIA_MOUNTED) || + intent.getAction().equals(Intent.ACTION_MEDIA_UNMOUNTED)) { MountPointHelper.refreshMountPoints( FileManagerApplication.getBackgroundConsole()); onRequestBookmarksRefresh(); @@ -422,8 +409,7 @@ public void onClick(View v) { /** * @hide */ - static Map EASY_MODE_ICONS = new - HashMap(); + static Map EASY_MODE_ICONS = new HashMap(); /** * @hide @@ -512,6 +498,7 @@ public void onClick(View view) { private AsyncTask mHistoryTask; private static final int REQUEST_CODE_STORAGE_PERMS = 321; + private boolean hasPermissions() { int res = checkCallingOrSelfPermission(Manifest.permission.WRITE_EXTERNAL_STORAGE); return (res == PackageManager.PERMISSION_GRANTED); @@ -549,8 +536,9 @@ public void onRequestPermissionsResult(int requestCode, String[] permissions, final ViewGroup viewGroup = (ViewGroup) ((ViewGroup) this .findViewById(android.R.id.content)).getChildAt(0); if (viewGroup != null) { - com.google.android.material.snackbar.Snackbar snackbar = com.google.android.material.snackbar.Snackbar.make(viewGroup, text, - com.google.android.material.snackbar.Snackbar.LENGTH_INDEFINITE); + com.google.android.material.snackbar.Snackbar snackbar = com.google.android.material.snackbar.Snackbar + .make(viewGroup, text, + com.google.android.material.snackbar.Snackbar.LENGTH_INDEFINITE); snackbar.setAction(android.R.string.ok, new OnClickListener() { @Override public void onClick(View v) { @@ -560,15 +548,15 @@ public void onClick(View v) { snackbar.show(); } } else { - StringBuilder builder = new StringBuilder(getString(R.string - .storage_permissions_denied)); + StringBuilder builder = new StringBuilder(getString(R.string.storage_permissions_denied)); builder.append("\n\n"); builder.append(getString(R.string.storage_permissions_explanation)); final ViewGroup viewGroup = (ViewGroup) ((ViewGroup) this .findViewById(android.R.id.content)).getChildAt(0); if (viewGroup != null) { - com.google.android.material.snackbar.Snackbar snackbar = com.google.android.material.snackbar.Snackbar.make(viewGroup, builder.toString(), - com.google.android.material.snackbar.Snackbar.LENGTH_INDEFINITE); + com.google.android.material.snackbar.Snackbar snackbar = com.google.android.material.snackbar.Snackbar + .make(viewGroup, builder.toString(), + com.google.android.material.snackbar.Snackbar.LENGTH_INDEFINITE); snackbar.setAction(R.string.snackbar_settings, new OnClickListener() { @Override public void onClick(View v) { @@ -620,22 +608,21 @@ private void finishOnCreate() { newFilter.addDataScheme(ContentResolver.SCHEME_FILE); registerReceiver(mNotificationReceiver, newFilter); - //the input manager service + // the input manager service mImm = (InputMethodManager) this.getSystemService( Context.INPUT_METHOD_SERVICE); - //Initialize nfc adapter + // Initialize nfc adapter NfcAdapter mNfcAdapter = NfcAdapter.getDefaultAdapter(this); if (mNfcAdapter != null) { mNfcAdapter.setBeamPushUrisCallback(new NfcAdapter.CreateBeamUrisCallback() { @Override public Uri[] createBeamUris(NfcEvent event) { - List selectedFiles = - getCurrentNavigationView().getSelectedFiles(); + List selectedFiles = getCurrentNavigationView().getSelectedFiles(); if (selectedFiles.size() > 0) { List fileUri = new ArrayList(); for (FileSystemObject f : selectedFiles) { - //Beam ignores folders and system files + // Beam ignores folders and system files if (!FileHelper.isDirectory(f) && !FileHelper.isSystemFile(f)) { fileUri.add(Uri.fromFile(new File(f.getFullPath()))); } @@ -649,10 +636,10 @@ public Uri[] createBeamUris(NfcEvent event) { }, this); } - //Initialize activity + // Initialize activity init(); - //Navigation views + // Navigation views initNavigationViews(); // As we're using a Toolbar, we should retrieve it and set it @@ -660,7 +647,7 @@ public Uri[] createBeamUris(NfcEvent event) { mToolBar = (Toolbar) findViewById(R.id.material_toolbar); setActionBar(mToolBar); - //Initialize action bars + // Initialize action bars initTitleActionBar(); initStatusActionBar(); initSelectionBar(); @@ -690,32 +677,25 @@ public void run() { // Initialize console initConsole(); - //Initialize navigation + // Initialize navigation int cc = NavigationActivity.this.mNavigationViews.length; for (int i = 0; i < cc; i++) { initNavigation(i, false, getIntent()); } - //Check the intent action + // Check the intent action checkIntent(getIntent()); } }); - MIME_TYPE_LOCALIZED_NAMES = MimeTypeCategory.getFriendlyLocalizedNames(NavigationActivity - .this); + MIME_TYPE_LOCALIZED_NAMES = MimeTypeCategory.getFriendlyLocalizedNames(NavigationActivity.this); - EASY_MODE_ICONS.put(MimeTypeCategory.NONE, getResources().getDrawable(R.drawable - .ic_em_all)); - EASY_MODE_ICONS.put(MimeTypeCategory.IMAGE, getResources().getDrawable(R.drawable - .ic_em_image)); - EASY_MODE_ICONS.put(MimeTypeCategory.VIDEO, getResources().getDrawable(R.drawable - .ic_em_video)); - EASY_MODE_ICONS.put(MimeTypeCategory.AUDIO, getResources().getDrawable(R.drawable - .ic_em_music)); - EASY_MODE_ICONS.put(MimeTypeCategory.DOCUMENT, getResources().getDrawable(R.drawable - .ic_em_document)); - EASY_MODE_ICONS.put(MimeTypeCategory.APP, getResources().getDrawable(R.drawable - .ic_em_application)); + EASY_MODE_ICONS.put(MimeTypeCategory.NONE, getResources().getDrawable(R.drawable.ic_em_all)); + EASY_MODE_ICONS.put(MimeTypeCategory.IMAGE, getResources().getDrawable(R.drawable.ic_em_image)); + EASY_MODE_ICONS.put(MimeTypeCategory.VIDEO, getResources().getDrawable(R.drawable.ic_em_video)); + EASY_MODE_ICONS.put(MimeTypeCategory.AUDIO, getResources().getDrawable(R.drawable.ic_em_music)); + EASY_MODE_ICONS.put(MimeTypeCategory.DOCUMENT, getResources().getDrawable(R.drawable.ic_em_document)); + EASY_MODE_ICONS.put(MimeTypeCategory.APP, getResources().getDrawable(R.drawable.ic_em_application)); } @@ -729,14 +709,14 @@ protected void onCreate(Bundle state) { Log.d(TAG, "NavigationActivity.onCreate"); //$NON-NLS-1$ } - // Set the theme before setContentView + // Set the theme before setContentView Theme theme = ThemeManager.getCurrentTheme(this); theme.setBaseThemeNoActionBar(this); - //Set the main layout of the activity + // Set the main layout of the activity setContentView(R.layout.navigation); - //Save state + // Save state super.onCreate(state); if (!hasPermissions()) { @@ -794,14 +774,14 @@ protected void onNewIntent(Intent intent) { final String navigateTo = intent.getStringExtra(EXTRA_NAVIGATE_TO); final boolean restore = TextUtils.isEmpty(navigateTo); - //Initialize navigation + // Initialize navigation if (!hasPermissions()) { requestNecessaryPermissions(); } else { initNavigation(this.mCurrentNavigationView, restore, intent); } - //Check the intent action + // Check the intent action checkIntent(intent); } @@ -813,7 +793,7 @@ public void onConfigurationChanged(Configuration newConfig) { super.onConfigurationChanged(newConfig); if (hasPermissions()) { onLayoutChanged(); - if (mDrawerToggle != null ) { + if (mDrawerToggle != null) { mDrawerToggle.onConfigurationChanged(newConfig); } } @@ -832,7 +812,7 @@ public void onConfigurationChanged(Configuration newConfig) { @Override public boolean onOptionsItemSelected(MenuItem item) { if (mDrawerToggle.onOptionsItemSelected(item)) { - return true; + return true; } if (mNeedsEasyMode) { @@ -864,11 +844,11 @@ protected void onDestroy() { try { unregisterReceiver(this.mNotificationReceiver); } catch (Throwable ex) { - /**NON BLOCK**/ + /** NON BLOCK **/ } recycle(); - //All destroy. Continue + // All destroy. Continue super.onDestroy(); } @@ -888,7 +868,8 @@ public NavigationView getCurrentNavigationView() { * @return NavigationView The current navigation view */ public NavigationView getNavigationView(int viewId) { - if (this.mNavigationViews == null) return null; + if (this.mNavigationViews == null) + return null; return this.mNavigationViews[viewId]; } @@ -908,9 +889,9 @@ private void init() { private void showWelcomeMsg() { boolean firstUse = Preferences.getSharedPreferences().getBoolean( FileManagerSettings.SETTINGS_FIRST_USE.getId(), - ((Boolean)FileManagerSettings.SETTINGS_FIRST_USE.getDefaultValue()).booleanValue()); + ((Boolean) FileManagerSettings.SETTINGS_FIRST_USE.getDefaultValue()).booleanValue()); - //Display the welcome message? + // Display the welcome message? if (firstUse && FileManagerApplication.hasShellCommands()) { // open navigation drawer to show user that it exists mDrawerLayout.openDrawer(Gravity.START); @@ -924,7 +905,9 @@ private void showWelcomeMsg() { try { Preferences.savePreference( FileManagerSettings.SETTINGS_FIRST_USE, Boolean.FALSE, true); - } catch (Exception e) {/**NON BLOCK**/} + } catch (Exception e) { + /** NON BLOCK **/ + } } } @@ -932,13 +915,13 @@ private void showWelcomeMsg() { * Method that initializes the titlebar of the activity. */ private void initTitleActionBar() { - //Inflate the view and associate breadcrumb + // Inflate the view and associate breadcrumb View titleLayout = getLayoutInflater().inflate( R.layout.navigation_view_customtitle, null, false); - NavigationCustomTitleView title = - (NavigationCustomTitleView)titleLayout.findViewById(R.id.navigation_title_flipper); + NavigationCustomTitleView title = (NavigationCustomTitleView) titleLayout + .findViewById(R.id.navigation_title_flipper); title.setOnHistoryListener(this); - Breadcrumb breadcrumb = (Breadcrumb)title.findViewById(R.id.breadcrumb_view); + Breadcrumb breadcrumb = (Breadcrumb) title.findViewById(R.id.breadcrumb_view); int cc = this.mNavigationViews.length; for (int i = 0; i < cc; i++) { this.mNavigationViews[i].setBreadcrumb(breadcrumb); @@ -951,10 +934,10 @@ private void initTitleActionBar() { // Set the free disk space warning level of the breadcrumb widget String fds = Preferences.getSharedPreferences().getString( FileManagerSettings.SETTINGS_DISK_USAGE_WARNING_LEVEL.getId(), - (String)FileManagerSettings.SETTINGS_DISK_USAGE_WARNING_LEVEL.getDefaultValue()); + (String) FileManagerSettings.SETTINGS_DISK_USAGE_WARNING_LEVEL.getDefaultValue()); breadcrumb.setFreeDiskSpaceWarningLevel(Integer.parseInt(fds)); - //Configure the action bar options + // Configure the action bar options getActionBar().setBackgroundDrawable( getResources().getDrawable(R.drawable.bg_material_titlebar)); mToolBar.addView(titleLayout); @@ -964,24 +947,24 @@ private void initTitleActionBar() { * Method that initializes the statusbar of the activity. */ private void initStatusActionBar() { - //Performs a width calculation of buttons. Buttons exceeds the width - //of the action bar should be hidden - //This application not use android ActionBar because the application - //make uses of the title and bottom areas, and wants to force to show - //the overflow button (without care of physical buttons) - this.mActionBar = (ViewGroup)findViewById(R.id.navigation_actionbar); + // Performs a width calculation of buttons. Buttons exceeds the width + // of the action bar should be hidden + // This application not use android ActionBar because the application + // make uses of the title and bottom areas, and wants to force to show + // the overflow button (without care of physical buttons) + this.mActionBar = (ViewGroup) findViewById(R.id.navigation_actionbar); this.mActionBar.addOnLayoutChangeListener(new View.OnLayoutChangeListener() { @Override public void onLayoutChange( View v, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) { - //Get the width of the action bar + // Get the width of the action bar int w = v.getMeasuredWidth(); - //Wake through children calculation his dimensions - int bw = (int)getResources().getDimension(R.dimen.default_buttom_width); + // Wake through children calculation his dimensions + int bw = (int) getResources().getDimension(R.dimen.default_buttom_width); int cw = 0; - final ViewGroup abView = ((ViewGroup)v); + final ViewGroup abView = ((ViewGroup) v); int cc = abView.getChildCount(); for (int i = 0; i < cc; i++) { View child = abView.getChildAt(i); @@ -1005,7 +988,7 @@ public void onLayoutChange( * Method that initializes the selectionbar of the activity. */ private void initSelectionBar() { - this.mSelectionBar = (SelectionView)findViewById(R.id.navigation_selectionbar); + this.mSelectionBar = (SelectionView) findViewById(R.id.navigation_selectionbar); } /** @@ -1013,7 +996,7 @@ private void initSelectionBar() { */ private void initDrawer() { mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout); - //Set our status bar color + // Set our status bar color mDrawerLayout.setStatusBarBackgroundColor(R.color.material_palette_blue_primary_dark); mDrawer = (ViewGroup) findViewById(R.id.drawer); mDrawerBookmarks = (LinearLayout) findViewById(R.id.bookmarks_list); @@ -1063,7 +1046,7 @@ public void onDrawerOpened(View drawerView) { /*** * Method that do something when the DrawerLayout opened. */ - private void onDrawerLayoutOpened(View drawerView){ + private void onDrawerLayoutOpened(View drawerView) { if (mSearchView != null && mSearchView.getVisibility() == View.VISIBLE) { closeSearch(); hideSoftInput(drawerView); @@ -1073,8 +1056,8 @@ private void onDrawerLayoutOpened(View drawerView){ /** * Method that hide the software when the software showing. * - * */ - private void hideSoftInput(View view){ + */ + private void hideSoftInput(View view) { if (mImm != null) { mImm.hideSoftInputFromWindow(view.getWindowToken(), 0); } @@ -1207,8 +1190,7 @@ private void addBookmarkToDrawer(Bookmark bookmark) { action = iconholder.getDrawable("ic_edit_home_bookmark_drawable"); //$NON-NLS-1$ actionCd = getApplicationContext().getString( R.string.bookmarks_button_config_cd); - } - else if (bookmark.mType.compareTo(BOOKMARK_TYPE.USER_DEFINED) == 0) { + } else if (bookmark.mType.compareTo(BOOKMARK_TYPE.USER_DEFINED) == 0) { action = iconholder.getDrawable("ic_close_drawable"); //$NON-NLS-1$ actionCd = getApplicationContext().getString( R.string.bookmarks_button_remove_bookmark_cd); @@ -1282,8 +1264,7 @@ public void onClick(View v) { performShowBackArrow(!mDrawerToggle.isDrawerIndicatorEnabled()); getCurrentNavigationView().open(fso); mDrawerLayout.closeDrawer(Gravity.START); - } - else { + } else { // The bookmark does not exist, delete the user-defined // bookmark try { @@ -1292,12 +1273,10 @@ public void onClick(View v) { // reset bookmarks list to default initBookmarks(); - } - catch (Exception ex) { + } catch (Exception ex) { } } - } - catch (Exception e) { // Capture the exception + } catch (Exception e) { // Capture the exception ExceptionUtil .translateException(NavigationActivity.this, e); if (e instanceof NoSuchFileOrDirectory @@ -1310,8 +1289,7 @@ public void onClick(View v) { // reset bookmarks list to default initBookmarks(); - } - catch (Exception ex) { + } catch (Exception ex) { } } return; @@ -1344,8 +1322,7 @@ protected Boolean doInBackground(Void... params) { mBookmarks = loadBookmarks(); return Boolean.TRUE; - } - catch (Exception e) { + } catch (Exception e) { this.mCause = e; return Boolean.FALSE; } @@ -1364,8 +1341,7 @@ protected void onPostExecute(Boolean result) { for (Bookmark bookmark : mBookmarks) { addBookmarkToDrawer(bookmark); } - } - else { + } else { if (this.mCause != null) { ExceptionUtil.translateException( NavigationActivity.this, this.mCause); @@ -1401,8 +1377,7 @@ protected Boolean doInBackground(Void... params) { try { loadHistory(); return Boolean.TRUE; - } - catch (Exception e) { + } catch (Exception e) { this.mCause = e; return Boolean.FALSE; } @@ -1506,16 +1481,14 @@ private List loadFilesystemBookmarks() { try { name = getString(parser.getAttributeResourceValue( R.styleable.Bookmark_name, 0)); - } - catch (Exception e) { + } catch (Exception e) { /** NON BLOCK **/ } try { directory = getString(parser .getAttributeResourceValue( R.styleable.Bookmark_directory, 0)); - } - catch (Exception e) { + } catch (Exception e) { /** NON BLOCK **/ } if (directory == null) { @@ -1533,12 +1506,10 @@ private List loadFilesystemBookmarks() { // Return the bookmarks return bookmarks; - } - finally { + } finally { parser.close(); } - } - catch (Throwable ex) { + } catch (Throwable ex) { Log.e(TAG, "Load filesystem bookmarks failed", ex); //$NON-NLS-1$ } @@ -1560,13 +1531,13 @@ private List loadSdStorageBookmarks() { // Recovery sdcards from storage manager StorageVolume[] volumes = StorageHelper .getStorageVolumes(getApplication(), true); - for (StorageVolume volume: volumes) { + for (StorageVolume volume : volumes) { if (volume != null) { String mountedState = volume.getState(); String path = StorageHelper.getStorageVolumePath(volume); if (!Environment.MEDIA_MOUNTED.equalsIgnoreCase(mountedState) && !Environment.MEDIA_MOUNTED_READ_ONLY.equalsIgnoreCase(mountedState)) { - Log.w(TAG, "Ignoring '" + path + "' with state of '"+ mountedState + "'"); + Log.w(TAG, "Ignoring '" + path + "' with state of '" + mountedState + "'"); continue; } if (!TextUtils.isEmpty(path)) { @@ -1586,8 +1557,7 @@ private List loadSdStorageBookmarks() { // Return the bookmarks return bookmarks; - } - catch (Throwable ex) { + } catch (Throwable ex) { Log.e(TAG, "Load filesystem bookmarks failed", ex); //$NON-NLS-1$ } @@ -1638,17 +1608,14 @@ private List loadUserBookmarks() { continue; } bookmarks.add(bm); - } - while (cursor.moveToNext()); + } while (cursor.moveToNext()); } - } - finally { + } finally { try { if (cursor != null) { cursor.close(); } - } - catch (Exception e) { + } catch (Exception e) { /** NON BLOCK **/ } } @@ -1656,8 +1623,7 @@ private List loadUserBookmarks() { // Remove bookmarks from virtual storage if the filesystem is not mount int c = bookmarks.size() - 1; for (int i = c; i >= 0; i--) { - VirtualMountPointConsole vc = - VirtualMountPointConsole.getVirtualConsoleForPath(bookmarks.get(i).mPath); + VirtualMountPointConsole vc = VirtualMountPointConsole.getVirtualConsoleForPath(bookmarks.get(i).mPath); if (vc != null && !vc.isMounted()) { bookmarks.remove(i); } @@ -1753,19 +1719,19 @@ private boolean shouldAddHistory(HistoryNavigable historyItem) { * Method that initializes the navigation views of the activity */ private void initNavigationViews() { - //Get the navigation views (wishlist: multiple view; for now only one view) + // Get the navigation views (wishlist: multiple view; for now only one view) this.mNavigationViews = new NavigationView[1]; this.mCurrentNavigationView = 0; - //- 0 - this.mNavigationViews[0] = (NavigationView)findViewById(R.id.navigation_view); + // - 0 + this.mNavigationViews[0] = (NavigationView) findViewById(R.id.navigation_view); this.mNavigationViews[0].setId(0); this.mEasyModeListView = (ListView) findViewById(R.id.lv_easy_mode); - mEasyModeAdapter = new ArrayAdapter(this, R.layout - .navigation_view_simple_item) { + mEasyModeAdapter = new ArrayAdapter(this, R.layout.navigation_view_simple_item) { @Override public View getView(int position, View convertView, ViewGroup parent) { - convertView = (convertView == null) ?getLayoutInflater().inflate(R.layout - .navigation_view_simple_item, parent, false) : convertView; + convertView = (convertView == null) + ? getLayoutInflater().inflate(R.layout.navigation_view_simple_item, parent, false) + : convertView; MimeTypeCategory item = getItem(position); String typeTitle = MIME_TYPE_LOCALIZED_NAMES[item.ordinal()]; TextView typeTitleTV = (TextView) convertView @@ -1793,7 +1759,8 @@ private void onClicked(int position) { intent.putExtra(SearchManager.QUERY, "*"); // Use wild-card '*' if (position == 0) { - // the user has selected all items, they want to see their folders so let's do that. + // the user has selected all items, they want to see their folders so let's do + // that. performHideEasyMode(); performShowBackArrow(true); return; @@ -1802,7 +1769,8 @@ private void onClicked(int position) { ArrayList searchCategories = new ArrayList(); MimeTypeCategory selectedCategory = EASY_MODE_LIST.get(position); searchCategories.add(selectedCategory); - // a one off case where we implicitly want to also search for TEXT mimetypes when the + // a one off case where we implicitly want to also search for TEXT mimetypes + // when the // DOCUMENTS category is selected if (selectedCategory == MimeTypeCategory.DOCUMENT) { searchCategories.add(MimeTypeCategory.TEXT); @@ -1815,10 +1783,11 @@ private void onClicked(int position) { /** * Method that initialize the console + * * @hide */ void initConsole() { - //Create the default console (from the preferences) + // Create the default console (from the preferences) try { Console console = ConsoleBuilder.getConsole(NavigationActivity.this); if (console == null) { @@ -1826,7 +1795,7 @@ void initConsole() { } } catch (Throwable ex) { if (!NavigationActivity.this.mChRooted) { - //Show exception and exit + // Show exception and exit Log.e(TAG, getString(R.string.msgs_cant_create_console), ex); // We don't have any console // Show exception and exit @@ -1848,9 +1817,9 @@ void initConsole() { /** * Method that initializes the navigation. * - * @param viewId The navigation view identifier where apply the navigation + * @param viewId The navigation view identifier where apply the navigation * @param restore Initialize from a restore info - * @param intent The current intent + * @param intent The current intent * @hide */ void initNavigation(final int viewId, final boolean restore, final Intent intent) { @@ -1862,7 +1831,7 @@ void initNavigation(final int viewId, final boolean restore, final Intent intent this.mHandler.post(new Runnable() { @Override public void run() { - //Is necessary navigate? + // Is necessary navigate? applyInitialDir(navigationView, intent); } }); @@ -1872,16 +1841,14 @@ public void run() { * Method that applies the user-defined initial directory * * @param navigationView The navigation view - * @param intent The current intent + * @param intent The current intent * @hide */ void applyInitialDir(final NavigationView navigationView, final Intent intent) { - //Load the user-defined initial directory - String initialDir = - Preferences.getSharedPreferences().getString( - FileManagerSettings.SETTINGS_INITIAL_DIR.getId(), - (String)FileManagerSettings. - SETTINGS_INITIAL_DIR.getDefaultValue()); + // Load the user-defined initial directory + String initialDir = Preferences.getSharedPreferences().getString( + FileManagerSettings.SETTINGS_INITIAL_DIR.getId(), + (String) FileManagerSettings.SETTINGS_INITIAL_DIR.getDefaultValue()); // Check if request navigation to directory (use as default), and // ensure chrooted and absolute path @@ -1904,7 +1871,8 @@ void applyInitialDir(final NavigationView navigationView, final Intent intent) { // Add to history final boolean addToHistory = intent.getBooleanExtra(EXTRA_ADD_TO_HISTORY, true); - // We cannot navigate to a secure console if it is unmounted. So go to root in that case + // We cannot navigate to a secure console if it is unmounted. So go to root in + // that case VirtualConsole vc = VirtualMountPointConsole.getVirtualConsoleForPath(initialDir); if (vc != null && vc instanceof SecureConsole && !((SecureConsole) vc).isMounted()) { initialDir = FileHelper.ROOT_DIRECTORY; @@ -1913,8 +1881,7 @@ void applyInitialDir(final NavigationView navigationView, final Intent intent) { if (this.mChRooted) { // Initial directory is the first external sdcard (sdcard, emmc, usb, ...) if (!StorageHelper.isPathInStorageVolume(initialDir)) { - StorageVolume[] volumes = - StorageHelper.getStorageVolumes(this, false); + StorageVolume[] volumes = StorageHelper.getStorageVolumes(this, false); if (volumes != null && volumes.length > 0) { initialDir = StorageHelper.getStorageVolumePath(volumes[0]); int count = volumes.length; @@ -1925,7 +1892,7 @@ void applyInitialDir(final NavigationView navigationView, final Intent intent) { break; } } - //Ensure that initial directory is an absolute directory + // Ensure that initial directory is an absolute directory initialDir = FileHelper.getAbsPath(initialDir); } else { // Show exception and exit @@ -1937,7 +1904,7 @@ void applyInitialDir(final NavigationView navigationView, final Intent intent) { } } } else { - //Ensure that initial directory is an absolute directory + // Ensure that initial directory is an absolute directory final String userInitialDir = initialDir; initialDir = FileHelper.getAbsPath(initialDir); final String absInitialDir = initialDir; @@ -1950,23 +1917,25 @@ void applyInitialDir(final NavigationView navigationView, final Intent intent) { } catch (InsufficientPermissionsException ipex) { ExceptionUtil.translateException( this, ipex, false, true, new OnRelaunchCommandResult() { - @Override - public void onSuccess() { - navigationView.changeCurrentDir(absInitialDir, addToHistory); - } - @Override - public void onFailed(Throwable cause) { - showInitialInvalidDirectoryMsg(userInitialDir); - navigationView.changeCurrentDir(FileHelper.ROOT_DIRECTORY, - addToHistory); - } - @Override - public void onCancelled() { - showInitialInvalidDirectoryMsg(userInitialDir); - navigationView.changeCurrentDir(FileHelper.ROOT_DIRECTORY, - addToHistory); - } - }); + @Override + public void onSuccess() { + navigationView.changeCurrentDir(absInitialDir, addToHistory); + } + + @Override + public void onFailed(Throwable cause) { + showInitialInvalidDirectoryMsg(userInitialDir); + navigationView.changeCurrentDir(FileHelper.ROOT_DIRECTORY, + addToHistory); + } + + @Override + public void onCancelled() { + showInitialInvalidDirectoryMsg(userInitialDir); + navigationView.changeCurrentDir(FileHelper.ROOT_DIRECTORY, + addToHistory); + } + }); // Asynchronous mode return; @@ -1986,8 +1955,8 @@ public void onCancelled() { } boolean needsEasyMode = false; - if (mSdBookmarks != null ) { - for (Bookmark bookmark :mSdBookmarks) { + if (mSdBookmarks != null) { + for (Bookmark bookmark : mSdBookmarks) { if (bookmark.mPath.equalsIgnoreCase(initialDir)) { needsEasyMode = true; break; @@ -2031,28 +2000,28 @@ void showInitialInvalidDirectoryMsg(String initialDir) { * @hide */ void checkIntent(Intent intent) { - //Search action + // Search action if (Intent.ACTION_SEARCH.equals(intent.getAction())) { Intent searchIntent = new Intent(this, SearchActivity.class); searchIntent.setAction(Intent.ACTION_SEARCH); - //- SearchActivity.EXTRA_SEARCH_DIRECTORY + // - SearchActivity.EXTRA_SEARCH_DIRECTORY searchIntent.putExtra( SearchActivity.EXTRA_SEARCH_DIRECTORY, getCurrentNavigationView().getCurrentDir()); - //- SearchManager.APP_DATA + // - SearchManager.APP_DATA if (intent.getBundleExtra(SearchManager.APP_DATA) != null) { Bundle bundle = new Bundle(); bundle.putAll(intent.getBundleExtra(SearchManager.APP_DATA)); searchIntent.putExtra(SearchManager.APP_DATA, bundle); } - //-- SearchManager.QUERY + // -- SearchManager.QUERY String query = intent.getStringExtra(SearchManager.QUERY); if (query != null) { searchIntent.putExtra(SearchManager.QUERY, query); } - //- android.speech.RecognizerIntent.EXTRA_RESULTS - ArrayList extraResults = - intent.getStringArrayListExtra(android.speech.RecognizerIntent.EXTRA_RESULTS); + // - android.speech.RecognizerIntent.EXTRA_RESULTS + ArrayList extraResults = intent + .getStringArrayListExtra(android.speech.RecognizerIntent.EXTRA_RESULTS); if (extraResults != null) { searchIntent.putStringArrayListExtra( android.speech.RecognizerIntent.EXTRA_RESULTS, extraResults); @@ -2060,6 +2029,34 @@ void checkIntent(Intent intent) { startActivityForResult(searchIntent, INTENT_REQUEST_SEARCH); return; } + + // Set home directory action + if (FileManagerSettings.INTENT_SET_HOME.equals(intent.getAction())) { + String path = null; + Uri data = intent.getData(); + if (data != null) { + path = data.getPath(); + } + if (path == null) { + path = intent.getStringExtra(EXTRA_NAVIGATE_TO); + } + + if (path != null) { + File f = new File(path); + if (f.exists() && f.isDirectory()) { + try { + Preferences.savePreference(FileManagerSettings.SETTINGS_INITIAL_DIR, f.getAbsolutePath(), true); + DialogHelper.showToast(this, "Home directory saved", Toast.LENGTH_SHORT); + } catch (Exception ex) { + DialogHelper.showToast(this, "Failed to save home directory", Toast.LENGTH_SHORT); + Log.e(TAG, "Failed to save home directory", ex); + } + } else { + DialogHelper.showToast(this, "Directory does not exist", Toast.LENGTH_SHORT); + } + } + return; + } } /** @@ -2109,71 +2106,71 @@ public void onBackPressed() { */ public void onActionBarItemClick(View view) { switch (view.getId()) { - //###################### - //Navigation Custom Title - //###################### + // ###################### + // Navigation Custom Title + // ###################### case R.id.ab_configuration: - //Show navigation view configuration toolbar + // Show navigation view configuration toolbar getCurrentNavigationView().getCustomTitle().showConfigurationView(); break; case R.id.ab_close: - //Hide navigation view configuration toolbar + // Hide navigation view configuration toolbar getCurrentNavigationView().getCustomTitle().hideConfigurationView(); break; - //###################### - //Breadcrumb Actions - //###################### + // ###################### + // Breadcrumb Actions + // ###################### case R.id.ab_filesystem_info: - //Show information of the filesystem + // Show information of the filesystem MountPoint mp = getCurrentNavigationView().getBreadcrumb().getMountPointInfo(); DiskUsage du = getCurrentNavigationView().getBreadcrumb().getDiskUsageInfo(); showMountPointInfo(mp, du); break; - //###################### - //Navigation view options - //###################### + // ###################### + // Navigation view options + // ###################### case R.id.ab_sort_mode: showSettingsPopUp(view, Arrays.asList( - new FileManagerSettings[]{ - FileManagerSettings.SETTINGS_SORT_MODE})); + new FileManagerSettings[] { + FileManagerSettings.SETTINGS_SORT_MODE })); break; case R.id.ab_layout_mode: showSettingsPopUp(view, Arrays.asList( - new FileManagerSettings[]{ - FileManagerSettings.SETTINGS_LAYOUT_MODE})); + new FileManagerSettings[] { + FileManagerSettings.SETTINGS_LAYOUT_MODE })); break; case R.id.ab_view_options: // If we are in ChRooted mode, then don't show non-secure items if (this.mChRooted) { showSettingsPopUp(view, - Arrays.asList(new FileManagerSettings[]{ - FileManagerSettings.SETTINGS_SHOW_DIRS_FIRST})); + Arrays.asList(new FileManagerSettings[] { + FileManagerSettings.SETTINGS_SHOW_DIRS_FIRST })); } else { showSettingsPopUp(view, - Arrays.asList(new FileManagerSettings[]{ + Arrays.asList(new FileManagerSettings[] { FileManagerSettings.SETTINGS_SHOW_DIRS_FIRST, FileManagerSettings.SETTINGS_SHOW_HIDDEN, FileManagerSettings.SETTINGS_SHOW_SYSTEM, - FileManagerSettings.SETTINGS_SHOW_SYMLINKS})); + FileManagerSettings.SETTINGS_SHOW_SYMLINKS })); } break; - //###################### - //Selection Actions - //###################### + // ###################### + // Selection Actions + // ###################### case R.id.ab_selection_done: - //Show information of the filesystem + // Show information of the filesystem getCurrentNavigationView().onDeselectAll(); break; - //###################### - //Action Bar buttons - //###################### + // ###################### + // Action Bar buttons + // ###################### case R.id.ab_actions: openActionsDialog(getCurrentNavigationView().getCurrentDir(), true); @@ -2205,25 +2202,23 @@ protected void onActivityResult(int requestCode, int resultCode, Intent data) { switch (requestCode) { case INTENT_REQUEST_SEARCH: if (resultCode == RESULT_OK) { - //Change directory? + // Change directory? Bundle bundle = data.getExtras(); if (bundle != null) { FileSystemObject fso = (FileSystemObject) bundle.getSerializable( EXTRA_SEARCH_ENTRY_SELECTION); - SearchInfoParcelable searchInfo = - bundle.getParcelable(EXTRA_SEARCH_LAST_SEARCH_DATA); + SearchInfoParcelable searchInfo = bundle.getParcelable(EXTRA_SEARCH_LAST_SEARCH_DATA); if (fso != null) { - //Goto to new directory + // Goto to new directory getCurrentNavigationView().open(fso, searchInfo); performHideEasyMode(); mDisplayingSearchResults = true; } } } else if (resultCode == RESULT_CANCELED) { - SearchInfoParcelable searchInfo = - data.getParcelableExtra(EXTRA_SEARCH_LAST_SEARCH_DATA); + SearchInfoParcelable searchInfo = data.getParcelableExtra(EXTRA_SEARCH_LAST_SEARCH_DATA); if (searchInfo != null && searchInfo.isSuccessNavigation()) { - //Navigate to previous history + // Navigate to previous history back(); } else { // I don't know is the search view was changed, so try to do a refresh @@ -2247,7 +2242,7 @@ protected void onActivityResult(int requestCode, int resultCode, Intent data) { */ @Override public void onNewHistory(HistoryNavigable navigable) { - //Recollect information about current status + // Recollect information about current status History history = new History(this.mHistory.size(), navigable); this.mHistory.add(history); if (!shouldAddHistory(navigable)) { @@ -2274,7 +2269,7 @@ public void onCheckHistory() { public void onRequestRefresh(Object o, boolean clearSelection) { if (o instanceof FileSystemObject) { // Refresh only the item - this.getCurrentNavigationView().refresh((FileSystemObject)o); + this.getCurrentNavigationView().refresh((FileSystemObject) o); } else if (o == null) { // Refresh all getCurrentNavigationView().refresh(); @@ -2304,10 +2299,10 @@ public void onRequestBookmarksRefresh() { public void onRequestRemove(Object o, boolean clearSelection) { if (o instanceof FileSystemObject) { // Remove from view - this.getCurrentNavigationView().removeItem((FileSystemObject)o); + this.getCurrentNavigationView().removeItem((FileSystemObject) o); - //Remove from history - removeFromHistory((FileSystemObject)o); + // Remove from history + removeFromHistory((FileSystemObject) o); } else { onRequestRefresh(null, clearSelection); } @@ -2325,7 +2320,7 @@ public void onNavigateTo(Object o) { } @Override - public void onCancel(){ + public void onCancel() { // nop } @@ -2347,34 +2342,34 @@ public void onRequestMenu(NavigationView navView, FileSystemObject item) { } /** - * Method that shows a popup with a menu associated a {@link FileManagerSettings}. + * Method that shows a popup with a menu associated a + * {@link FileManagerSettings}. * - * @param anchor The action button that was pressed + * @param anchor The action button that was pressed * @param settings The array of settings associated with the action button */ private void showSettingsPopUp(View anchor, List settings) { - //Create the adapter + // Create the adapter final MenuSettingsAdapter adapter = new MenuSettingsAdapter(this, settings); - //Create a show the popup menu + // Create a show the popup menu mPopupWindow = DialogHelper.createListPopupWindow(this, adapter, anchor); mPopupWindow.setOnItemClickListener(new OnItemClickListener() { @Override public void onItemClick(AdapterView parent, View v, int position, long id) { - FileManagerSettings setting = - ((MenuSettingsAdapter)parent.getAdapter()).getSetting(position); - final int value = ((MenuSettingsAdapter)parent.getAdapter()).getId(position); + FileManagerSettings setting = ((MenuSettingsAdapter) parent.getAdapter()).getSetting(position); + final int value = ((MenuSettingsAdapter) parent.getAdapter()).getId(position); mPopupWindow.dismiss(); mPopupWindow = null; try { if (setting.compareTo(FileManagerSettings.SETTINGS_LAYOUT_MODE) == 0) { - //Need to change the layout + // Need to change the layout getCurrentNavigationView().changeViewMode( NavigationLayoutMode.fromId(value)); } else { - //Save and refresh + // Save and refresh if (setting.getDefaultValue() instanceof Enum) { - //Enumeration + // Enumeration Preferences.savePreference(setting, new ObjectIdentifier() { @Override public int getId() { @@ -2382,12 +2377,10 @@ public int getId() { } }, false); } else { - //Boolean - boolean newval = - Preferences.getSharedPreferences(). - getBoolean( - setting.getId(), - ((Boolean)setting.getDefaultValue()).booleanValue()); + // Boolean + boolean newval = Preferences.getSharedPreferences().getBoolean( + setting.getId(), + ((Boolean) setting.getDefaultValue()).booleanValue()); Preferences.savePreference(setting, Boolean.valueOf(!newval), false); } getCurrentNavigationView().refresh(); @@ -2427,24 +2420,23 @@ public void onDismiss() { * @param du The disk usage of the mount point */ private void showMountPointInfo(MountPoint mp, DiskUsage du) { - //Has mount point info? + // Has mount point info? if (mp == null) { - //There is no information - AlertDialog alert = - DialogHelper.createWarningDialog( - this, - R.string.filesystem_info_warning_title, - R.string.filesystem_info_warning_msg); + // There is no information + AlertDialog alert = DialogHelper.createWarningDialog( + this, + R.string.filesystem_info_warning_title, + R.string.filesystem_info_warning_msg); DialogHelper.delegateDialogShow(this, alert); return; } - //Show a the filesystem info dialog + // Show a the filesystem info dialog FilesystemInfoDialog dialog = new FilesystemInfoDialog(this, mp, du); dialog.setOnMountListener(new OnMountListener() { @Override public void onRemount(MountPoint mountPoint) { - //Update the statistics of breadcrumb, only if mount point is the same + // Update the statistics of breadcrumb, only if mount point is the same Breadcrumb breadcrumb = getCurrentNavigationView().getBreadcrumb(); if (breadcrumb.getMountPointInfo().compareTo(mountPoint) == 0) { breadcrumb.updateMountPointInfo(); @@ -2469,20 +2461,21 @@ public void onRemount(MountPoint mountPoint) { */ private boolean checkBackAction() { // We need a basic structure to check this - if (getCurrentNavigationView() == null) return false; + if (getCurrentNavigationView() == null) + return false; if (mSearchView.getVisibility() == View.VISIBLE) { closeSearch(); } - //Check if the configuration view is showing. In this case back - //action must be "close configuration" + // Check if the configuration view is showing. In this case back + // action must be "close configuration" if (getCurrentNavigationView().getCustomTitle().isConfigurationViewShowing()) { getCurrentNavigationView().getCustomTitle().restoreView(); return true; } - //Do back operation over the navigation history + // Do back operation over the navigation history boolean flag = this.mExitFlag; this.mExitFlag = !back(); @@ -2490,11 +2483,11 @@ private boolean checkBackAction() { // Retrieve if the exit status timeout has expired long now = System.currentTimeMillis(); boolean timeout = (this.mExitBackTimeout == -1 || - (now - this.mExitBackTimeout) > RELEASE_EXIT_CHECK_TIMEOUT); + (now - this.mExitBackTimeout) > RELEASE_EXIT_CHECK_TIMEOUT); - //Check if there no history and if the user was advised in the last back action + // Check if there no history and if the user was advised in the last back action if (this.mExitFlag && (this.mExitFlag != flag || timeout)) { - //Communicate the user that the next time the application will be closed + // Communicate the user that the next time the application will be closed this.mExitBackTimeout = System.currentTimeMillis(); DialogHelper.showToast(this, R.string.msgs_push_again_to_exit, Toast.LENGTH_SHORT); if (mNeedsEasyMode) { @@ -2504,7 +2497,7 @@ private boolean checkBackAction() { } } - //Back action not applied + // Back action not applied return !this.mExitFlag; } @@ -2535,14 +2528,14 @@ private void clearHistory() { /** * Method that navigates to the passed history reference. * - * @param history The history reference + * @param history The history reference * @param isFromSavedHistory Whether this is called by saved history item * @return boolean A problem occurs while navigate */ public synchronized boolean navigateToHistory( History history, boolean isFromSavedHistory) { try { - //Gets the history + // Gets the history final History realHistory; if (isFromSavedHistory) { realHistory = mHistorySaved.get(history.getPosition()); @@ -2550,11 +2543,10 @@ public synchronized boolean navigateToHistory( realHistory = mHistory.get(history.getPosition()); } - //Navigate to item. Check what kind of history is + // Navigate to item. Check what kind of history is if (realHistory.getItem() instanceof NavigationViewInfoParcelable) { - //Navigation - NavigationViewInfoParcelable info = - (NavigationViewInfoParcelable)realHistory.getItem(); + // Navigation + NavigationViewInfoParcelable info = (NavigationViewInfoParcelable) realHistory.getItem(); int viewId = info.getId(); NavigationView view = getNavigationView(viewId); // Selected items must not be restored from on history navigation @@ -2564,11 +2556,11 @@ public synchronized boolean navigateToHistory( } } else if (realHistory.getItem() instanceof SearchInfoParcelable) { - //Search (open search with the search results) - SearchInfoParcelable info = (SearchInfoParcelable)realHistory.getItem(); + // Search (open search with the search results) + SearchInfoParcelable info = (SearchInfoParcelable) realHistory.getItem(); Intent searchIntent = new Intent(this, SearchActivity.class); searchIntent.setAction(SearchActivity.ACTION_RESTORE); - searchIntent.putExtra(SearchActivity.EXTRA_SEARCH_RESTORE, (Parcelable)info); + searchIntent.putExtra(SearchActivity.EXTRA_SEARCH_RESTORE, (Parcelable) info); startActivityForResult(searchIntent, INTENT_REQUEST_SEARCH); } else if (realHistory.getItem() instanceof HistoryItem) { final String path = realHistory.getItem().getDescription(); @@ -2582,11 +2574,11 @@ public synchronized boolean navigateToHistory( mDrawerLayout.closeDrawer(Gravity.START); } } else { - //The type is unknown + // The type is unknown throw new IllegalArgumentException("Unknown history type"); //$NON-NLS-1$ } - //Remove the old history + // Remove the old history int cc = realHistory.getPosition(); for (int i = this.mHistory.size() - 1; i >= cc; i--) { this.mHistory.remove(i); @@ -2596,9 +2588,8 @@ public synchronized boolean navigateToHistory( mDrawerHistoryEmpty.setVisibility(View.VISIBLE); } - //Navigate - final boolean clearHistory = - mHistoryTab.isSelected() && mHistorySaved.size() > 0; + // Navigate + final boolean clearHistory = mHistoryTab.isSelected() && mHistorySaved.size() > 0; mClearHistory.setVisibility(clearHistory ? View.VISIBLE : View.GONE); return true; @@ -2607,7 +2598,8 @@ public synchronized boolean navigateToHistory( Log.e(TAG, String.format("Failed to navigate to history %d: %s", //$NON-NLS-1$ Integer.valueOf(history.getPosition()), - history.getItem().getTitle()), ex); + history.getItem().getTitle()), + ex); } else { Log.e(TAG, String.format("Failed to navigate to history: null", ex)); //$NON-NLS-1$ @@ -2621,7 +2613,7 @@ public void run() { } }); - //Not change directory + // Not change directory return false; } } @@ -2637,7 +2629,7 @@ public boolean back() { History h = this.mHistory.get(this.mHistory.size() - 1); if (h.getItem() instanceof NavigationViewInfoParcelable) { // Verify that the path exists - String path = ((NavigationViewInfoParcelable)h.getItem()).getCurrentDir(); + String path = ((NavigationViewInfoParcelable) h.getItem()).getCurrentDir(); try { FileSystemObject info = CommandHelper.getFileInfo(this, path, null); @@ -2654,12 +2646,12 @@ public boolean back() { } } - //Navigate to history + // Navigate to history if (this.mHistory.size() > 0) { return navigateToHistory(mHistory.get(mHistory.size() - 1), false); } - //Nothing to apply + // Nothing to apply mClearHistory.setVisibility(View.GONE); return false; } @@ -2689,12 +2681,14 @@ private void openActionsDialog(String path, boolean global) { /** * Method that opens the actions dialog * - * @param item The path or the {@link FileSystemObject} + * @param item The path or the {@link FileSystemObject} * @param global If the menu to display is the one with global actions */ private void openActionsDialog(FileSystemObject item, boolean global) { - // We used to refresh the item reference here, but the access to the SecureConsole is synchronized, - // which can/will cause on ANR in certain scenarios. We don't care if it doesn't exist anymore really + // We used to refresh the item reference here, but the access to the + // SecureConsole is synchronized, + // which can/will cause on ANR in certain scenarios. We don't care if it doesn't + // exist anymore really // For this to work, SecureConsole NEEDS to be refactored. // Show the dialog @@ -2741,7 +2735,7 @@ void openSettings() { private void removeFromHistory(FileSystemObject fso) { if (this.mHistory != null) { int cc = this.mHistory.size() - 1; - for (int i = cc; i >= 0 ; i--) { + for (int i = cc; i >= 0; i--) { History history = this.mHistory.get(i); if (history.getItem() instanceof NavigationViewInfoParcelable) { String p0 = fso.getFullPath(); @@ -2763,7 +2757,7 @@ private void removeFromHistory(FileSystemObject fso) { */ private void updateHistoryPositions() { int cc = this.mHistory.size() - 1; - for (int i = 0; i <= cc ; i++) { + for (int i = 0; i <= cc; i++) { History history = this.mHistory.get(i); history.setPosition(i + 1); } @@ -2771,12 +2765,12 @@ private void updateHistoryPositions() { /** * Method that ask the user to change the access mode prior to crash. + * * @hide */ void askOrExit() { - //Show a dialog asking the user - AlertDialog dialog = - DialogHelper.createYesNoDialog( + // Show a dialog asking the user + AlertDialog dialog = DialogHelper.createYesNoDialog( this, R.string.msgs_change_to_prompt_access_mode_title, R.string.msgs_change_to_prompt_access_mode_msg, @@ -2813,18 +2807,21 @@ public void onClick(DialogInterface alertDialog, int which) { exit(); } } - }); + }); DialogHelper.delegateDialogShow(this, dialog); } /** - * Method that creates a ChRooted environment, protecting the user to break anything in + * Method that creates a ChRooted environment, protecting the user to break + * anything in * the device + * * @hide */ void createChRooted() { // If we are in a ChRooted mode, then do nothing - if (this.mChRooted) return; + if (this.mChRooted) + return; this.mChRooted = true; int cc = this.mNavigationViews.length; @@ -2844,11 +2841,13 @@ void createChRooted() { /** * Method that exits from a ChRooted + * * @hide */ void exitChRooted() { // If we aren't in a ChRooted mode, then do nothing - if (!this.mChRooted) return; + if (!this.mChRooted) + return; this.mChRooted = false; int cc = this.mNavigationViews.length; @@ -2859,6 +2858,7 @@ void exitChRooted() { /** * Method called when a controlled exit is required + * * @hide */ void exit() { @@ -2876,17 +2876,18 @@ private void recycle() { try { FileManagerApplication.destroyBackgroundConsole(); } catch (Throwable ex) { - /**NON BLOCK**/ + /** NON BLOCK **/ } try { ConsoleBuilder.destroyConsole(); } catch (Throwable ex) { - /**NON BLOCK**/ + /** NON BLOCK **/ } } /** - * Method that reconfigures the layout for better fit in portrait and landscape modes + * Method that reconfigures the layout for better fit in portrait and landscape + * modes */ private void onLayoutChanged() { Theme theme = ThemeManager.getCurrentTheme(this); @@ -2894,7 +2895,8 @@ private void onLayoutChanged() { // Apply only when the orientation was changed int orientation = getResources().getConfiguration().orientation; - if (this.mOrientation == orientation) return; + if (this.mOrientation == orientation) + return; this.mOrientation = orientation; // imitate a closed drawer while layout is rebuilt to avoid NullPointerException @@ -2904,14 +2906,14 @@ private void onLayoutChanged() { if (this.mOrientation == Configuration.ORIENTATION_LANDSCAPE) { // Landscape mode - ViewGroup statusBar = (ViewGroup)findViewById(R.id.navigation_statusbar); + ViewGroup statusBar = (ViewGroup) findViewById(R.id.navigation_statusbar); if (statusBar.getParent() != null) { ViewGroup parent = (ViewGroup) statusBar.getParent(); parent.removeView(statusBar); } // Calculate the action button size (all the buttons must fit in the title bar) - int bw = (int)getResources().getDimension(R.dimen.default_buttom_width); + int bw = (int) getResources().getDimension(R.dimen.default_buttom_width); int abw = this.mActionBar.getChildCount() * bw; int rbw = 0; int cc = statusBar.getChildCount(); @@ -2925,11 +2927,10 @@ private void onLayoutChanged() { int w = abw + rbw - bw; // Add to the new location - ViewGroup newParent = (ViewGroup)findViewById(R.id.navigation_title_landscape_holder); - LinearLayout.LayoutParams params = - new LinearLayout.LayoutParams( - w, - ViewGroup.LayoutParams.MATCH_PARENT); + ViewGroup newParent = (ViewGroup) findViewById(R.id.navigation_title_landscape_holder); + LinearLayout.LayoutParams params = new LinearLayout.LayoutParams( + w, + ViewGroup.LayoutParams.MATCH_PARENT); statusBar.setLayoutParams(params); newParent.addView(statusBar); @@ -2942,19 +2943,18 @@ private void onLayoutChanged() { } else { // Portrait mode - ViewGroup statusBar = (ViewGroup)findViewById(R.id.navigation_statusbar); + ViewGroup statusBar = (ViewGroup) findViewById(R.id.navigation_statusbar); if (statusBar.getParent() != null) { ViewGroup parent = (ViewGroup) statusBar.getParent(); parent.removeView(statusBar); } // Add to the new location - ViewGroup newParent = (ViewGroup)findViewById( + ViewGroup newParent = (ViewGroup) findViewById( R.id.navigation_statusbar_portrait_holder); - LinearLayout.LayoutParams params = - new LinearLayout.LayoutParams( - ViewGroup.LayoutParams.MATCH_PARENT, - ViewGroup.LayoutParams.MATCH_PARENT); + LinearLayout.LayoutParams params = new LinearLayout.LayoutParams( + ViewGroup.LayoutParams.MATCH_PARENT, + ViewGroup.LayoutParams.MATCH_PARENT); statusBar.setLayoutParams(params); newParent.addView(statusBar); @@ -2972,18 +2972,17 @@ private void onLayoutChanged() { } /** - * Method that removes all the history items that refers to virtual unmounted filesystems + * Method that removes all the history items that refers to virtual unmounted + * filesystems */ private void removeUnmountedHistory() { int cc = mHistory.size() - 1; for (int i = cc; i >= 0; i--) { History history = mHistory.get(i); if (history.getItem() instanceof NavigationViewInfoParcelable) { - NavigationViewInfoParcelable navigableInfo = - ((NavigationViewInfoParcelable) history.getItem()); - VirtualMountPointConsole vc = - VirtualMountPointConsole.getVirtualConsoleForPath( - navigableInfo.getCurrentDir()); + NavigationViewInfoParcelable navigableInfo = ((NavigationViewInfoParcelable) history.getItem()); + VirtualMountPointConsole vc = VirtualMountPointConsole.getVirtualConsoleForPath( + navigableInfo.getCurrentDir()); if (vc != null && !vc.isMounted()) { mHistory.remove(i); mDrawerHistory.removeViewAt(mDrawerHistory.getChildCount() - i - 1); @@ -2996,7 +2995,8 @@ private void removeUnmountedHistory() { } /** - * Method that removes all the selection items that refers to virtual unmounted filesystems + * Method that removes all the selection items that refers to virtual unmounted + * filesystems */ private void removeUnmountedSelection() { for (NavigationView view : mNavigationViews) { @@ -3007,6 +3007,7 @@ private void removeUnmountedSelection() { /** * Method that applies the current theme to the activity + * * @hide */ void applyTheme() { @@ -3021,11 +3022,11 @@ void applyTheme() { mDrawerLayout.closeDrawer(Gravity.START); } - //- Layout + // - Layout View v = findViewById(R.id.navigation_layout); theme.setBackgroundDrawable(this, v, "background_drawable"); //$NON-NLS-1$ - //- ActionBar + // - ActionBar theme.setTitlebarDrawable(this, getActionBar(), "titlebar_drawable"); //$NON-NLS-1$ // Hackery to theme search view @@ -3056,7 +3057,7 @@ void applyTheme() { mCustomTitleView = (NavigationCustomTitleView) findViewById(R.id.navigation_title_flipper); mCustomTitleView.setVisibility(View.VISIBLE); - //- StatusBar + // - StatusBar v = findViewById(R.id.navigation_statusbar); if (orientation == Configuration.ORIENTATION_LANDSCAPE) { theme.setBackgroundDrawable(this, v, "titlebar_drawable"); //$NON-NLS-1$ @@ -3064,46 +3065,46 @@ void applyTheme() { theme.setBackgroundDrawable(this, v, "statusbar_drawable"); //$NON-NLS-1$ } v = findViewById(R.id.ab_overflow); - theme.setImageDrawable(this, (ImageView)v, "ab_overflow_drawable"); //$NON-NLS-1$ + theme.setImageDrawable(this, (ImageView) v, "ab_overflow_drawable"); //$NON-NLS-1$ v = findViewById(R.id.ab_actions); - theme.setImageDrawable(this, (ImageView)v, "ab_actions_drawable"); //$NON-NLS-1$ + theme.setImageDrawable(this, (ImageView) v, "ab_actions_drawable"); //$NON-NLS-1$ v = findViewById(R.id.ab_search); - theme.setImageDrawable(this, (ImageView)v, "ab_search_drawable"); //$NON-NLS-1$ + theme.setImageDrawable(this, (ImageView) v, "ab_search_drawable"); //$NON-NLS-1$ - //- Expanders + // - Expanders v = findViewById(R.id.ab_configuration); - theme.setImageDrawable(this, (ImageView)v, "expander_open_drawable"); //$NON-NLS-1$ + theme.setImageDrawable(this, (ImageView) v, "expander_open_drawable"); //$NON-NLS-1$ v = findViewById(R.id.ab_close); - theme.setImageDrawable(this, (ImageView)v, "expander_close_drawable"); //$NON-NLS-1$ + theme.setImageDrawable(this, (ImageView) v, "expander_close_drawable"); //$NON-NLS-1$ v = findViewById(R.id.ab_sort_mode); - theme.setImageDrawable(this, (ImageView)v, "ab_sort_mode_drawable"); //$NON-NLS-1$ + theme.setImageDrawable(this, (ImageView) v, "ab_sort_mode_drawable"); //$NON-NLS-1$ v = findViewById(R.id.ab_layout_mode); - theme.setImageDrawable(this, (ImageView)v, "ab_layout_mode_drawable"); //$NON-NLS-1$ + theme.setImageDrawable(this, (ImageView) v, "ab_layout_mode_drawable"); //$NON-NLS-1$ v = findViewById(R.id.ab_view_options); - theme.setImageDrawable(this, (ImageView)v, "ab_view_options_drawable"); //$NON-NLS-1$ + theme.setImageDrawable(this, (ImageView) v, "ab_view_options_drawable"); //$NON-NLS-1$ - //- SelectionBar + // - SelectionBar v = findViewById(R.id.navigation_selectionbar); theme.setBackgroundDrawable(this, v, "selectionbar_drawable"); //$NON-NLS-1$ v = findViewById(R.id.ab_selection_done); - theme.setImageDrawable(this, (ImageView)v, "ab_selection_done_drawable"); //$NON-NLS-1$ + theme.setImageDrawable(this, (ImageView) v, "ab_selection_done_drawable"); //$NON-NLS-1$ v = findViewById(R.id.navigation_status_selection_label); - theme.setTextColor(this, (TextView)v, "text_color"); //$NON-NLS-1$ + theme.setTextColor(this, (TextView) v, "text_color"); //$NON-NLS-1$ // - Navigation drawer v = findViewById(R.id.history_empty); - theme.setTextColor(this, (TextView)v, "text_color"); //$NON-NLS-1$ + theme.setTextColor(this, (TextView) v, "text_color"); //$NON-NLS-1$ - for (int i=0; i