mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-02 08:25:02 -04:00
Cache xattr values so that metadata works as expected at least for the current session even if xattr is not supported by the filesystem and thus metadata can't be persisted
This commit is contained in:
parent
dc22249794
commit
d70e82401e
@ -15,6 +15,10 @@ public interface Resource<R> {
|
||||
return new TransformedResource<R, T>(this, function);
|
||||
}
|
||||
|
||||
static <T> Resource<T> lazy(Resource<T> resource) {
|
||||
return resource.memoize();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class MemoizedResource<R> implements Resource<R> {
|
||||
|
@ -9,6 +9,7 @@ import java.util.Locale;
|
||||
import net.filebot.Cache;
|
||||
import net.filebot.Cache.Compute;
|
||||
import net.filebot.CacheType;
|
||||
import net.filebot.Resource;
|
||||
import net.filebot.WebServices;
|
||||
import net.filebot.web.Episode;
|
||||
import net.filebot.web.Movie;
|
||||
@ -53,17 +54,21 @@ public class XattrMetaInfo {
|
||||
|
||||
public synchronized Object getMetaInfo(File file) {
|
||||
return getCachedValue(xattrMetaInfoCache, file, key -> {
|
||||
Object metadata = new MetaAttributes(file).getObject();
|
||||
Object metadata = xattr(file).getObject();
|
||||
return isMetaInfo(metadata) ? metadata : null;
|
||||
});
|
||||
}
|
||||
|
||||
public synchronized String getOriginalName(File file) {
|
||||
return (String) getCachedValue(xattrOriginalNameCache, file, key -> {
|
||||
return new MetaAttributes(file).getOriginalName();
|
||||
return xattr(file).getOriginalName();
|
||||
});
|
||||
}
|
||||
|
||||
private MetaAttributes xattr(File file) throws Exception {
|
||||
return new MetaAttributes(file);
|
||||
}
|
||||
|
||||
private Object getCachedValue(Cache cache, File file, Compute<?> compute) {
|
||||
// try in-memory cache of previously stored xattr metadata
|
||||
try {
|
||||
@ -86,11 +91,13 @@ public class XattrMetaInfo {
|
||||
}
|
||||
|
||||
// set creation date to episode / movie release date
|
||||
Resource<MetaAttributes> xattr = Resource.lazy(() -> xattr(file));
|
||||
|
||||
if (useCreationDate) {
|
||||
try {
|
||||
long t = getTimeStamp(model);
|
||||
if (t > 0) {
|
||||
new MetaAttributes(file).setCreationDate(t);
|
||||
xattr.get().setCreationDate(t);
|
||||
}
|
||||
} catch (Throwable e) {
|
||||
debug.warning("Failed to set creation date: " + e.getMessage());
|
||||
@ -98,20 +105,21 @@ public class XattrMetaInfo {
|
||||
}
|
||||
|
||||
// store metadata object and original name as xattr
|
||||
if (useExtendedFileAttributes) {
|
||||
try {
|
||||
MetaAttributes attr = new MetaAttributes(file);
|
||||
if (isMetaInfo(model)) {
|
||||
xattrMetaInfoCache.put(file, model);
|
||||
attr.setObject(model);
|
||||
try {
|
||||
if (isMetaInfo(model)) {
|
||||
xattrMetaInfoCache.put(file, model);
|
||||
if (useExtendedFileAttributes) {
|
||||
xattr.get().setObject(model);
|
||||
}
|
||||
if (original != null && original.length() > 0 && getOriginalName(file) == null) {
|
||||
xattrOriginalNameCache.put(file, original);
|
||||
attr.setOriginalName(original);
|
||||
}
|
||||
} catch (Throwable e) {
|
||||
debug.warning("Failed to set xattr: " + e.getMessage());
|
||||
}
|
||||
if (original != null && original.length() > 0 && getOriginalName(file) == null) {
|
||||
xattrOriginalNameCache.put(file, original);
|
||||
if (useExtendedFileAttributes) {
|
||||
xattr.get().setOriginalName(original);
|
||||
}
|
||||
}
|
||||
} catch (Throwable e) {
|
||||
debug.warning("Failed to set xattr: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
@ -122,7 +130,7 @@ public class XattrMetaInfo {
|
||||
|
||||
if (useExtendedFileAttributes) {
|
||||
try {
|
||||
new MetaAttributes(file).clear();
|
||||
xattr(file).clear();
|
||||
} catch (Throwable e) {
|
||||
debug.warning("Failed to clear xattr: " + e.getMessage());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user