mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 19:15:16 +00:00
f67eb5f9f3
// FREEBIE
42 lines
1.2 KiB
Java
42 lines
1.2 KiB
Java
package org.thoughtcrime.securesms.util;
|
|
|
|
|
|
import android.os.Build;
|
|
import android.os.MemoryFile;
|
|
import android.os.ParcelFileDescriptor;
|
|
|
|
import java.io.FileDescriptor;
|
|
import java.io.IOException;
|
|
import java.lang.reflect.Field;
|
|
import java.lang.reflect.InvocationTargetException;
|
|
import java.lang.reflect.Method;
|
|
|
|
public class MemoryFileUtil {
|
|
|
|
public static ParcelFileDescriptor getParcelFileDescriptor(MemoryFile file) throws IOException {
|
|
try {
|
|
Method method = MemoryFile.class.getDeclaredMethod("getFileDescriptor");
|
|
FileDescriptor fileDescriptor = (FileDescriptor) method.invoke(file);
|
|
|
|
Field field = fileDescriptor.getClass().getDeclaredField("descriptor");
|
|
field.setAccessible(true);
|
|
|
|
int fd = field.getInt(fileDescriptor);
|
|
|
|
if (Build.VERSION.SDK_INT >= 13) {
|
|
return ParcelFileDescriptor.adoptFd(fd);
|
|
} else {
|
|
return ParcelFileDescriptor.dup(fileDescriptor);
|
|
}
|
|
} catch (IllegalAccessException e) {
|
|
throw new IOException(e);
|
|
} catch (InvocationTargetException e) {
|
|
throw new IOException(e);
|
|
} catch (NoSuchMethodException e) {
|
|
throw new IOException(e);
|
|
} catch (NoSuchFieldException e) {
|
|
throw new IOException(e);
|
|
}
|
|
}
|
|
}
|