summaryrefslogtreecommitdiff
path: root/java/org/gnu/emacs/EmacsSafThread.java
diff options
context:
space:
mode:
authorPo Lu <luangruo@yahoo.com>2023-08-08 16:17:10 +0800
committerPo Lu <luangruo@yahoo.com>2023-08-08 16:17:10 +0800
commit440f017658aabe90668c9f6afbd38c1d892c1f6d (patch)
tree751f4e601a18a6141d69b7bf547f4813440919eb /java/org/gnu/emacs/EmacsSafThread.java
parent27113c22f77b7a409c33b956a1a8d8be2d5bc673 (diff)
Avoid caching file status when they are about to change
* java/org/gnu/emacs/EmacsSafThread.java (EmacsSafThread) (cacheFileStatus): New argument NO_CACHE. (cacheDirectoryFromCursor, statDocument1): * java/org/gnu/emacs/EmacsService.java (EmacsService) (statDocument): Plumb that argument through each of these wrapper functions. * src/android.c (android_init_emacs_service): Adjust JNI function signatures to agree with statDocument1. * src/androidvfs.c (android_saf_stat): Plumb that argument through here. (android_saf_tree_stat, android_saf_file_open): And don't cache file status if a write is imminent.
Diffstat (limited to 'java/org/gnu/emacs/EmacsSafThread.java')
-rw-r--r--java/org/gnu/emacs/EmacsSafThread.java25
1 files changed, 17 insertions, 8 deletions
diff --git a/java/org/gnu/emacs/EmacsSafThread.java b/java/org/gnu/emacs/EmacsSafThread.java
index 421e82c5759..1b62662b4fc 100644
--- a/java/org/gnu/emacs/EmacsSafThread.java
+++ b/java/org/gnu/emacs/EmacsSafThread.java
@@ -437,11 +437,14 @@ public final class EmacsSafThread extends HandlerThread
/* Cache file status for DOCUMENTID within TOPLEVEL. Value is the
new cache entry. CURSOR is the cursor from where to retrieve the
file status, in the form of the columns COLUMN_FLAGS,
- COLUMN_SIZE, COLUMN_MIME_TYPE and COLUMN_LAST_MODIFIED. */
+ COLUMN_SIZE, COLUMN_MIME_TYPE and COLUMN_LAST_MODIFIED.
+
+ If NO_CACHE, don't cache the file status; just return the
+ entry. */
private StatCacheEntry
cacheFileStatus (String documentId, CacheToplevel toplevel,
- Cursor cursor)
+ Cursor cursor, boolean no_cache)
{
StatCacheEntry entry;
int flagsIndex, columnIndex, typeIndex;
@@ -482,7 +485,8 @@ public final class EmacsSafThread extends HandlerThread
entry.mtime = cursor.getLong (mtimeIndex);
/* Finally, add this entry to the cache and return. */
- toplevel.statCache.put (documentId, entry);
+ if (!no_cache)
+ toplevel.statCache.put (documentId, entry);
return entry;
}
@@ -546,7 +550,7 @@ public final class EmacsSafThread extends HandlerThread
directory listing is being requested, it's very likely
that a series of calls for file status will follow. */
- cacheFileStatus (id, toplevel, cursor);
+ cacheFileStatus (id, toplevel, cursor, false);
/* If this constituent is a directory, don't cache any
information about it. It cannot be cached without
@@ -1217,7 +1221,7 @@ public final class EmacsSafThread extends HandlerThread
private long[]
statDocument1 (String uri, String documentId,
- CancellationSignal signal)
+ CancellationSignal signal, boolean noCache)
{
Uri uriObject, tree;
String[] projection;
@@ -1266,7 +1270,8 @@ public final class EmacsSafThread extends HandlerThread
if (!cursor.moveToFirst ())
return null;
- cache = cacheFileStatus (documentId, toplevel, cursor);
+ cache = cacheFileStatus (documentId, toplevel, cursor,
+ noCache);
}
finally
{
@@ -1332,18 +1337,22 @@ public final class EmacsSafThread extends HandlerThread
last modification to this file in milliseconds since 00:00,
January 1st, 1970.
+ If NOCACHE, refrain from placing the file status within the
+ status cache.
+
OperationCanceledException and other typical exceptions may be
signaled upon receiving async input or other errors. */
public long[]
- statDocument (final String uri, final String documentId)
+ statDocument (final String uri, final String documentId,
+ final boolean noCache)
{
return (long[]) runObjectFunction (new SafObjectFunction () {
@Override
public Object
runObject (CancellationSignal signal)
{
- return statDocument1 (uri, documentId, signal);
+ return statDocument1 (uri, documentId, signal, noCache);
}
});
}