OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-2017 eyeo GmbH |
| 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. |
| 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. |
| 13 * |
| 14 * You should have received a copy of the GNU General Public License |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 16 */ |
| 17 |
| 18 package org.adblockplus.libadblockplus; |
| 19 |
| 20 public abstract class FileSystem implements Disposable |
| 21 { |
| 22 private final Disposer disposer; |
| 23 protected final long ptr; |
| 24 |
| 25 static |
| 26 { |
| 27 System.loadLibrary("adblockplus-jni"); |
| 28 registerNatives(); |
| 29 } |
| 30 |
| 31 public FileSystem() |
| 32 { |
| 33 this.ptr = ctor(this); |
| 34 this.disposer = new Disposer(this, new DisposeWrapper(this.ptr)); |
| 35 } |
| 36 |
| 37 public static final class StatResult |
| 38 { |
| 39 private boolean exists; |
| 40 |
| 41 public boolean exists() |
| 42 { |
| 43 return exists; |
| 44 } |
| 45 |
| 46 private boolean isDirectory; |
| 47 |
| 48 public boolean isDirectory() |
| 49 { |
| 50 return isDirectory; |
| 51 } |
| 52 |
| 53 private boolean isFile; |
| 54 |
| 55 public boolean isFile() |
| 56 { |
| 57 return isFile; |
| 58 } |
| 59 |
| 60 private long lastModified; |
| 61 |
| 62 public long getLastModified() |
| 63 { |
| 64 return lastModified; |
| 65 } |
| 66 |
| 67 public StatResult(boolean exists, boolean isDirectory, boolean isFile, long
lastModified) |
| 68 { |
| 69 this.exists = exists; |
| 70 this.isDirectory = isDirectory; |
| 71 this.isFile = isFile; |
| 72 this.lastModified = lastModified; |
| 73 } |
| 74 |
| 75 @Override |
| 76 public String toString() |
| 77 { |
| 78 return "StatResult{" + |
| 79 "exists=" + exists + |
| 80 ", isDirectory=" + isDirectory + |
| 81 ", isFile=" + isFile + |
| 82 ", lastModified=" + lastModified + |
| 83 '}'; |
| 84 } |
| 85 } |
| 86 |
| 87 /** |
| 88 * Reads from a file. |
| 89 * @param path File path. |
| 90 * @return File's binary data. |
| 91 */ |
| 92 public abstract byte[] read(String path); |
| 93 |
| 94 /** |
| 95 * Writes to a file. |
| 96 * @param path File path. |
| 97 * @param data File's binary data to write. |
| 98 */ |
| 99 public abstract void write(String path, byte[] data); |
| 100 |
| 101 /** |
| 102 * Moves a file (i.e.\ renames it). |
| 103 * @param fromPath Current path to the file. |
| 104 * @param toPath New path to the file. |
| 105 */ |
| 106 public abstract void move(String fromPath, String toPath); |
| 107 |
| 108 /** |
| 109 * Removes a file. |
| 110 * @param path File path. |
| 111 */ |
| 112 public abstract void remove(String path); |
| 113 |
| 114 /** |
| 115 * Retrieves information about a file. |
| 116 * @param path File path. |
| 117 * @return File information. |
| 118 */ |
| 119 public abstract StatResult stat(String path); |
| 120 |
| 121 /** |
| 122 * Returns the absolute path to a file. |
| 123 * @param path File path (can be relative or absolute). |
| 124 * @return Absolute file path. |
| 125 */ |
| 126 public abstract String resolve(String path); |
| 127 |
| 128 @Override |
| 129 public void dispose() |
| 130 { |
| 131 this.disposer.dispose(); |
| 132 } |
| 133 |
| 134 private final static class DisposeWrapper implements Disposable |
| 135 { |
| 136 private final long ptr; |
| 137 |
| 138 public DisposeWrapper(final long ptr) |
| 139 { |
| 140 this.ptr = ptr; |
| 141 } |
| 142 |
| 143 @Override |
| 144 public void dispose() |
| 145 { |
| 146 dtor(this.ptr); |
| 147 } |
| 148 } |
| 149 |
| 150 private final static native void registerNatives(); |
| 151 |
| 152 private final static native long ctor(Object callbackObject); |
| 153 |
| 154 private final static native void dtor(long ptr); |
| 155 } |
OLD | NEW |