mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-16 14:25:02 -05:00
+++ Support GVFS URIs as valid DnD files by translating the URI to the .gvfs mountpoint filepath
This commit is contained in:
parent
42c6a3703f
commit
879deaa643
31
source/net/sourceforge/filebot/gio/GIOLibrary.java
Normal file
31
source/net/sourceforge/filebot/gio/GIOLibrary.java
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
package net.sourceforge.filebot.gio;
|
||||||
|
|
||||||
|
import static java.util.Collections.*;
|
||||||
|
|
||||||
|
import java.lang.reflect.Method;
|
||||||
|
|
||||||
|
import com.sun.jna.FunctionMapper;
|
||||||
|
import com.sun.jna.Library;
|
||||||
|
import com.sun.jna.Native;
|
||||||
|
import com.sun.jna.NativeLibrary;
|
||||||
|
import com.sun.jna.Pointer;
|
||||||
|
import com.sun.jna.WString;
|
||||||
|
|
||||||
|
interface GIOLibrary extends Library {
|
||||||
|
|
||||||
|
GIOLibrary INSTANCE = (GIOLibrary) Native.loadLibrary("gio-2.0",
|
||||||
|
GIOLibrary.class);
|
||||||
|
|
||||||
|
void g_type_init();
|
||||||
|
|
||||||
|
Pointer g_vfs_get_default();
|
||||||
|
|
||||||
|
Pointer g_vfs_get_file_for_uri(Pointer gvfs, String uri);
|
||||||
|
|
||||||
|
Pointer g_file_get_path(Pointer gfile);
|
||||||
|
|
||||||
|
void g_free(Pointer gpointer);
|
||||||
|
|
||||||
|
void g_object_unref(Pointer gobject);
|
||||||
|
|
||||||
|
}
|
41
source/net/sourceforge/filebot/gio/GVFS.java
Normal file
41
source/net/sourceforge/filebot/gio/GVFS.java
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
package net.sourceforge.filebot.gio;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.net.URI;
|
||||||
|
|
||||||
|
import com.sun.jna.Platform;
|
||||||
|
import com.sun.jna.Pointer;
|
||||||
|
|
||||||
|
public class GVFS {
|
||||||
|
|
||||||
|
private static Pointer gvfs;
|
||||||
|
|
||||||
|
private synchronized static Pointer getDefaultVFS() {
|
||||||
|
if (gvfs == null) {
|
||||||
|
GIOLibrary.INSTANCE.g_type_init();
|
||||||
|
gvfs = GIOLibrary.INSTANCE.g_vfs_get_default();
|
||||||
|
}
|
||||||
|
return gvfs;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static File getPathForURI(URI uri) {
|
||||||
|
Pointer gfile = GIOLibrary.INSTANCE.g_vfs_get_file_for_uri(
|
||||||
|
getDefaultVFS(), uri.toString());
|
||||||
|
Pointer chars = GIOLibrary.INSTANCE.g_file_get_path(gfile);
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (chars != null)
|
||||||
|
return new File(chars.getString(0));
|
||||||
|
else
|
||||||
|
return null;
|
||||||
|
} finally {
|
||||||
|
GIOLibrary.INSTANCE.g_object_unref(gfile);
|
||||||
|
GIOLibrary.INSTANCE.g_free(chars);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isSupported() {
|
||||||
|
return Platform.isLinux() || Platform.isFreeBSD();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -1,7 +1,5 @@
|
|||||||
|
|
||||||
package net.sourceforge.filebot.ui.transfer;
|
package net.sourceforge.filebot.ui.transfer;
|
||||||
|
|
||||||
|
|
||||||
import java.awt.datatransfer.DataFlavor;
|
import java.awt.datatransfer.DataFlavor;
|
||||||
import java.awt.datatransfer.Transferable;
|
import java.awt.datatransfer.Transferable;
|
||||||
import java.awt.datatransfer.UnsupportedFlavorException;
|
import java.awt.datatransfer.UnsupportedFlavorException;
|
||||||
@ -18,12 +16,12 @@ import java.util.Scanner;
|
|||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
|
import net.sourceforge.filebot.gio.GVFS;
|
||||||
|
|
||||||
public class FileTransferable implements Transferable {
|
public class FileTransferable implements Transferable {
|
||||||
|
|
||||||
public static final DataFlavor uriListFlavor = createUriListFlavor();
|
public static final DataFlavor uriListFlavor = createUriListFlavor();
|
||||||
|
|
||||||
|
|
||||||
private static DataFlavor createUriListFlavor() {
|
private static DataFlavor createUriListFlavor() {
|
||||||
try {
|
try {
|
||||||
return new DataFlavor("text/uri-list;class=java.nio.CharBuffer");
|
return new DataFlavor("text/uri-list;class=java.nio.CharBuffer");
|
||||||
@ -33,22 +31,19 @@ public class FileTransferable implements Transferable {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private final File[] files;
|
private final File[] files;
|
||||||
|
|
||||||
|
|
||||||
public FileTransferable(File... files) {
|
public FileTransferable(File... files) {
|
||||||
this.files = files;
|
this.files = files;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public FileTransferable(Collection<File> files) {
|
public FileTransferable(Collection<File> files) {
|
||||||
this.files = files.toArray(new File[0]);
|
this.files = files.toArray(new File[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Object getTransferData(DataFlavor flavor) throws UnsupportedFlavorException {
|
public Object getTransferData(DataFlavor flavor)
|
||||||
|
throws UnsupportedFlavorException {
|
||||||
if (flavor.isFlavorJavaFileListType())
|
if (flavor.isFlavorJavaFileListType())
|
||||||
return Arrays.asList(files);
|
return Arrays.asList(files);
|
||||||
else if (flavor.equals(uriListFlavor))
|
else if (flavor.equals(uriListFlavor))
|
||||||
@ -57,7 +52,6 @@ public class FileTransferable implements Transferable {
|
|||||||
throw new UnsupportedFlavorException(flavor);
|
throw new UnsupportedFlavorException(flavor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return line separated list of file URIs
|
* @return line separated list of file URIs
|
||||||
*/
|
*/
|
||||||
@ -73,64 +67,75 @@ public class FileTransferable implements Transferable {
|
|||||||
return sb.toString();
|
return sb.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public DataFlavor[] getTransferDataFlavors() {
|
public DataFlavor[] getTransferDataFlavors() {
|
||||||
return new DataFlavor[] { DataFlavor.javaFileListFlavor, uriListFlavor };
|
return new DataFlavor[] { DataFlavor.javaFileListFlavor, uriListFlavor };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isDataFlavorSupported(DataFlavor flavor) {
|
public boolean isDataFlavorSupported(DataFlavor flavor) {
|
||||||
return isFileListFlavor(flavor);
|
return isFileListFlavor(flavor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public static boolean isFileListFlavor(DataFlavor flavor) {
|
public static boolean isFileListFlavor(DataFlavor flavor) {
|
||||||
return flavor.isFlavorJavaFileListType() || flavor.equals(uriListFlavor);
|
return flavor.isFlavorJavaFileListType()
|
||||||
|
|| flavor.equals(uriListFlavor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public static boolean hasFileListFlavor(Transferable tr) {
|
public static boolean hasFileListFlavor(Transferable tr) {
|
||||||
return tr.isDataFlavorSupported(DataFlavor.javaFileListFlavor) || tr.isDataFlavorSupported(FileTransferable.uriListFlavor);
|
return tr.isDataFlavorSupported(DataFlavor.javaFileListFlavor)
|
||||||
|
|| tr.isDataFlavorSupported(FileTransferable.uriListFlavor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
public static List<File> getFilesFromTransferable(Transferable tr) throws IOException, UnsupportedFlavorException {
|
public static List<File> getFilesFromTransferable(Transferable tr)
|
||||||
if (tr.isDataFlavorSupported(DataFlavor.javaFileListFlavor)) {
|
throws IOException, UnsupportedFlavorException {
|
||||||
// file list flavor
|
if (tr.isDataFlavorSupported(FileTransferable.uriListFlavor)) {
|
||||||
return (List<File>) tr.getTransferData(DataFlavor.javaFileListFlavor);
|
// file URI list flavor (Linux)
|
||||||
} else if (tr.isDataFlavorSupported(FileTransferable.uriListFlavor)) {
|
Readable transferData = (Readable) tr
|
||||||
// file URI list flavor
|
.getTransferData(FileTransferable.uriListFlavor);
|
||||||
Readable transferData = (Readable) tr.getTransferData(FileTransferable.uriListFlavor);
|
|
||||||
|
|
||||||
Scanner scanner = new Scanner(transferData);
|
Scanner scanner = new Scanner(transferData);
|
||||||
|
|
||||||
List<File> files = new ArrayList<File>();
|
List<File> files = new ArrayList<File>();
|
||||||
|
|
||||||
while (scanner.hasNextLine()) {
|
while (scanner.hasNextLine()) {
|
||||||
String uri = scanner.nextLine();
|
String line = scanner.nextLine();
|
||||||
|
|
||||||
if (uri.startsWith("#")) {
|
if (line.startsWith("#")) {
|
||||||
// the line is a comment (as per RFC 2483)
|
// the line is a comment (as per RFC 2483)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
File file = new File(new URI(uri));
|
URI uri = new URI(line);
|
||||||
|
File file = null;
|
||||||
|
|
||||||
if (!file.exists())
|
try {
|
||||||
|
// file URIs
|
||||||
|
file = new File(uri);
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
// try handle other GVFS URI schemes
|
||||||
|
if (GVFS.isSupported()) {
|
||||||
|
file = GVFS.getPathForURI(uri);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!file.exists()) {
|
||||||
throw new FileNotFoundException(file.toString());
|
throw new FileNotFoundException(file.toString());
|
||||||
|
}
|
||||||
|
|
||||||
files.add(file);
|
files.add(file);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
// URISyntaxException, IllegalArgumentException, FileNotFoundException
|
// URISyntaxException, IllegalArgumentException,
|
||||||
Logger.getLogger(FileTransferable.class.getName()).log(Level.WARNING, "Invalid file uri: " + uri);
|
// FileNotFoundException
|
||||||
|
Logger.getLogger(FileTransferable.class.getName()).log(
|
||||||
|
Level.WARNING, "Invalid file uri: " + line);
|
||||||
}
|
}
|
||||||
|
return files;
|
||||||
}
|
}
|
||||||
|
} else if (tr.isDataFlavorSupported(DataFlavor.javaFileListFlavor)) {
|
||||||
return files;
|
// file list flavor
|
||||||
|
return (List<File>) tr
|
||||||
|
.getTransferData(DataFlavor.javaFileListFlavor);
|
||||||
}
|
}
|
||||||
|
|
||||||
// cannot get files from transferable
|
// cannot get files from transferable
|
||||||
|
Loading…
Reference in New Issue
Block a user