Package org.renjin.eval.vfs

Examples of org.renjin.eval.vfs.FastJarFileProvider


  }

  @VisibleForTesting
  static FileSystemManager createFileSystemManager(LocalFileProvider localFileProvider) throws FileSystemException {
    try {
      FastJarFileProvider jarFileProvider = new FastJarFileProvider();

      // this provides a fake local file system rooted in the servlet context root.
      // this is necessary because on the actual appengine platform, any queries to the ancestors
      // of the servlet context (e.g. /base) will throw a security exception
View Full Code Here


  public static FileSystemManager getMinimalFileSystemManager() throws FileSystemException {
    DefaultFileSystemManager fsm = new DefaultFileSystemManager();
    fsm.setDefaultProvider(new UrlFileProvider());
    fsm.addProvider("file", new DefaultLocalFileProvider());
    fsm.addProvider("jar", new FastJarFileProvider());
    fsm.init();
    return fsm;
  }
View Full Code Here

TOP

Related Classes of org.renjin.eval.vfs.FastJarFileProvider

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.