summaryrefslogtreecommitdiffstats
path: root/platform/android/file_access_filesystem_jandroid.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Reduce code duplication in FileAccessBlueCube33102024-09-011-62/+0
|
* Update the storage access handler logic to support accessing / retrieving ↵Fredia Huya-Kouadio2024-08-261-22/+4
| | | | contents with the `assets:/` prefix
* Cleanup Android file errorsFredia Huya-Kouadio2024-04-221-3/+6
| | | | Follow up to https://github.com/godotengine/godot/pull/90403
* Merge pull request #90710 from m4gr3d/fix_jstring_leaksRémi Verschelde2024-04-221-0/+8
|\ | | | | | | Fix leakage of JNI object references
| * Fix leakage of JNI object referencesFredia Huya-Kouadio2024-04-151-0/+8
| | | | | | | | Fixes https://github.com/godotengine/godot/issues/87548
* | [FileAccess] Implement `resize` method.bruvzg2024-04-121-0/+23
|/
* Use platform-specific methods for FileAccess reading and writingBlueCube33102023-10-291-0/+51
|
* [Drivers,Platform] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-121-13/+13
|
* Style: Harmonize header includes in platform portsRémi Verschelde2023-06-081-1/+2
| | | | | | | | | | | | | | | | This applies our existing style guide, and adds a new rule to that style guide for modular components such as platform ports and modules: Includes from the platform port or module should be included with relative paths (relative to the root folder of the modular component, e.g. `platform/linuxbsd/`), in their own section before Godot's "core" includes. The `api` and `export` subfolders also need to be handled as self-contained (and thus use relative paths for their "local" includes) as they are all compiled for each editor platform, without necessarily having the api/export matching platform folder in the include path. E.g. the Linux editor build will compile `platform/android/{api,export}/*.cpp` and those need to use relative includes for it to work.
* Restore FileAccess.close method.bruvzg2023-02-161-0/+6
|
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Replace File/Directory with FileAccess/DirAccesskobewi2022-09-191-1/+1
|
* Fix issue preventing the Android Editor from displaying the project contentFredia Huya-Kouadio2022-08-151-0/+13
| | | | | The issue was causing by a bug within the logic for `FileAccessFilesystemJAndroid#eof_reached()` causing that value to remain false after the eof was reached. This in turn caused an infinite loop in the file scanner preventing the project's content from showing up.
* File: Re-add support to skip CR (`\r`) in `File::get_as_text`Rémi Verschelde2022-08-011-2/+4
| | | | | | | | | | | | This was removed in #63481, and we confirmed that it's better like this, but we add back the possibility to strip CR as an option, to optionally restore the previous behavior. For performance this is done directly in `String::parse_utf8`. Also fixes Android `FileAccess::get_line()` as this one _should_ strip CR. Supersedes #63717.
* Address remaining scoped storage regressionsFredia Huya-Kouadio2022-07-261-0/+46
| | | | | - Accelerate common path used to check the storage scope for a given path - Update the logic for the `get_as_text()` method - previous logic loads the content of a text file one byte at a time
* Add full support for Android scoped storage.Fredia Huya-Kouadio2022-07-051-0/+283
This was done by refactoring directory and file access handling for the Android platform so that any general filesystem access type go through the Android layer. This allows us to validate whether the access is unrestricted, or whether it falls under scoped storage and thus act appropriately.