Examples of lookupFile()


Examples of org.infinispan.util.FileLookup.lookupFile()

      //1. resolve given path
      FileLookup fileLookup = FileLookupFactory.newInstance();
      InputStream is;
      if (localPathToSchema != null) {
         // Schema's are always stored in Infinispan
         is = fileLookup.lookupFile(localPathToSchema, null);
         if (is != null) {
            log.debugf("Using schema %s", localPathToSchema);
            return is;
         }
         if (log.isDebugEnabled()) {
View Full Code Here

Examples of org.infinispan.util.FileLookup.lookupFile()

                       localPathToSchema, SCHEMA_SYSTEM_PROPERTY, schemaPath());
         }
      }

      //2. resolve local schema path in infinispan distro
      is = fileLookup.lookupFile(schemaPath(), null);
      if (is != null) {
         log.debugf("Using schema %s", schemaPath());
         return is;
      }
      if (log.isDebugEnabled()) {
View Full Code Here

Examples of org.infinispan.util.FileLookup.lookupFile()

   private static InputStream findInputStream(String fileName, ClassLoader cl) throws FileNotFoundException {
      if (fileName == null)
         throw new NullPointerException("File name cannot be null!");
      FileLookup fileLookup = FileLookupFactory.newInstance();
      InputStream is = fileLookup.lookupFile(fileName, cl);
      if (is == null)
         throw new FileNotFoundException("File " + fileName
                 + " could not be found, either on the classpath or on the file system!");
      return is;
   }
View Full Code Here

Examples of org.infinispan.util.FileLookup.lookupFile()

    */
   public ConfigurationBuilderHolder parseFiles(List<String> filenames) {
       FileLookup fileLookup = FileLookupFactory.newInstance();
       List<InputStream> streams = new ArrayList<InputStream>(filenames.size());
       for (String filename : filenames) {
           streams.add(fileLookup.lookupFile(filename, cl));
       }
       return parse(streams);
   }
  
   public ConfigurationBuilderHolder parse(InputStream is) {
View Full Code Here

Examples of org.infinispan.util.FileLookup.lookupFile()

   }

   public void initialize(String fileName) throws IOException {
      if (fileName == null) throw new NullPointerException("File name cannot be null!");
      FileLookup fileLookup = new FileLookup();
      InputStream is = fileLookup.lookupFile(fileName);
      if (is == null)
         throw new FileNotFoundException("File " + fileName + " could not be found, either on the classpath or on the file system!");
      initialize(is);
   }
View Full Code Here

Examples of org.infinispan.util.FileLookup.lookupFile()

         configBeans.add(TypedProperties.class);
         configBeans.add(InfinispanConfiguration.class);

         XMLTreeOutputWalker tw = new XMLTreeOutputWalker(sb);
         FileLookup fl = new FileLookup();
         InputStream file = fl.lookupFile("schema/infinispan-config-" + Version.getMajorVersion() + ".xsd");
         XSOMParser reader = new XSOMParser();
         reader.parse(file);
         XSSchemaSet xss = reader.getResult();
         XSOMSchemaTreeWalker w = new XSOMSchemaTreeWalker(xss.getSchema(1), "infinispan");
         TreeNode root = w.getRoot();
View Full Code Here

Examples of org.infinispan.util.FileLookup.lookupFile()

      return parse(filename, new ConfigurationBuilderHolder());
   }
  
   public ConfigurationBuilderHolder parse(String filename, ConfigurationBuilderHolder holder) {
      FileLookup fileLookup = FileLookupFactory.newInstance();
      return parse(fileLookup.lookupFile(filename, cl), holder);
   }
  
   public ConfigurationBuilderHolder parse(InputStream is) {
      return parse(is, new ConfigurationBuilderHolder());
   }
View Full Code Here

Examples of org.infinispan.util.FileLookup.lookupFile()

      //1. resolve given path
      FileLookup fileLookup = FileLookupFactory.newInstance();
      InputStream is;
      if (localPathToSchema != null) {
         // Schema's are always stored in Infinispan
         is = fileLookup.lookupFile(localPathToSchema, null);
         if (is != null) {
            log.debugf("Using schema %s", localPathToSchema);
            return is;
         }
         if (log.isDebugEnabled()) {
View Full Code Here

Examples of org.infinispan.util.FileLookup.lookupFile()

                       localPathToSchema, SCHEMA_SYSTEM_PROPERTY, schemaPath());
         }
      }

      //2. resolve local schema path in infinispan distro
      is = fileLookup.lookupFile(schemaPath(), null);
      if (is != null) {
         log.debugf("Using schema %s", schemaPath());
         return is;
      }
      if (log.isDebugEnabled()) {
View Full Code Here

Examples of org.jboss.cache.util.FileLookup.lookupFile()


   public Map<String, Configuration> parseConfigs(String fileName) throws CloneNotSupportedException
   {
      FileLookup fileLookup = new FileLookup();
      InputStream is = fileLookup.lookupFile(fileName);
      if (is == null)
      {
         throw new ConfigurationException("Unable to find config file " + fileName + " either in classpath or on the filesystem!");
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.