Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.36 KB | None | 0 0
  1. package pl.asie.computronics.cc;
  2.  
  3. import dan200.computercraft.api.filesystem.IMount;
  4. import dan200.computercraft.core.filesystem.JarMount;
  5.  
  6. import java.io.File;
  7. import java.io.FileInputStream;
  8. import java.io.FileNotFoundException;
  9. import java.io.IOException;
  10. import java.io.InputStream;
  11. import java.net.MalformedURLException;
  12. import java.net.URISyntaxException;
  13. import java.net.URL;
  14. import java.util.List;
  15.  
  16. /**
  17.  * @author Vexatos
  18.  */
  19. public class ComputronicsFileMount implements IMount {
  20.  
  21.     private final File root;
  22.  
  23.     protected ComputronicsFileMount(File root) {
  24.         this.root = root;
  25.     }
  26.  
  27.     @Override
  28.     public boolean exists(String path) throws IOException {
  29.         return new File(root, path).exists();
  30.     }
  31.  
  32.     @Override
  33.     public boolean isDirectory(String path) throws IOException {
  34.         return new File(root, path).isDirectory();
  35.     }
  36.  
  37.     @Override
  38.     public void list(String path, List<String> contents) throws IOException {
  39.         if(!root.exists() || !root.isDirectory()) {
  40.             throw new IOException("Not a directory");
  41.         }
  42.         String[] paths = root.list();
  43.         for(String s : paths) {
  44.             if((new File(root, s)).exists()) {
  45.                 contents.add(s);
  46.             }
  47.         }
  48.     }
  49.  
  50.     @Override
  51.     public long getSize(String path) throws IOException {
  52.         File file = new File(root, path);
  53.         if(file.exists()) {
  54.             return file.isDirectory() ? 0L : file.length();
  55.         }
  56.         throw new FileNotFoundException(path);
  57.     }
  58.  
  59.     @Override
  60.     public InputStream openForRead(String path) throws IOException {
  61.         File file = new File(root, path);
  62.         if(!file.exists() || file.isDirectory()) {
  63.             throw new FileNotFoundException(path);
  64.         }
  65.         return new FileInputStream(file);
  66.     }
  67.  
  68.     /**
  69.      * @author Sangar, Vexatos
  70.      */
  71.     public static IMount createMount(Class clazz, String domain, String root) {
  72.         try {
  73.             String innerPath = ("/assets/" + domain + "/" + (root.trim() + "/")).replace("//", "/");
  74.             String codeSource = clazz.getProtectionDomain().getCodeSource().getLocation().getPath();
  75.  
  76.             String codeUrl;
  77.             boolean isArchive;
  78.             if(codeSource.contains(".zip!") || codeSource.contains(".jar!")) {
  79.                 codeUrl = codeSource.substring(0, codeSource.lastIndexOf('!'));
  80.                 isArchive = true;
  81.             } else {
  82.                 codeUrl = codeSource;
  83.                 isArchive = false;
  84.             }
  85.  
  86.             URL url;
  87.             try {
  88.                 url = new URL(codeUrl);
  89.             } catch(MalformedURLException e) {
  90.                 try {
  91.                     url = new URL("file://" + codeUrl);
  92.                 } catch(MalformedURLException e1) {
  93.                     url = null;
  94.                 }
  95.             }
  96.             File file;
  97.             if(url != null) {
  98.                 try {
  99.                     file = new File(url.toURI());
  100.                 } catch(URISyntaxException e) {
  101.                     file = new File(url.getPath());
  102.                 }
  103.             } else {
  104.                 file = new File(codeSource);
  105.             }
  106.  
  107.             if(isArchive) {
  108.                 return new JarMount(file, innerPath);
  109.             } else {
  110.                 if(!file.exists() || file.isDirectory()) {
  111.                     return null;
  112.                 }
  113.                 File parent = new File(new File(file.getParent()), innerPath);
  114.                 if(parent.exists() && parent.isDirectory()) {
  115.                     return new ComputronicsFileMount(file);
  116.                 } else {
  117.                     String[] paths = System.getProperty("java.class.path").split(System.getProperty("path.separator"));
  118.                     for(String s : paths) {
  119.                         if(s != null) {
  120.                             File f = new File(new File(s), innerPath);
  121.                             if(f.exists() && f.isDirectory()) {
  122.                                 return new ComputronicsFileMount(file);
  123.                             }
  124.                         }
  125.                     }
  126.                 }
  127.             }
  128.             return null;
  129.         } catch(IOException e) {
  130.             return null;
  131.         }
  132.     }
  133. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement