All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.caucho.config.core.ResinProperties Maven / Gradle / Ivy

/*
 * Copyright (c) 1998-2018 Caucho Technology -- all rights reserved
 *
 * This file is part of Resin(R) Open Source
 *
 * Each copy or derived work must preserve the copyright notice and this
 * notice unmodified.
 *
 * Resin Open Source is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * Resin Open Source is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, or any warranty
 * of NON-INFRINGEMENT.  See the GNU General Public License for more
 * details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Resin Open Source; if not, write to the
 *
 *   Free Software Foundation, Inc.
 *   59 Temple Place, Suite 330
 *   Boston, MA 02111-1307  USA
 *
 * @author Scott Ferguson
 */

package com.caucho.config.core;

import com.caucho.config.Config;
import com.caucho.config.ConfigException;
import com.caucho.config.SchemaBean;
import com.caucho.config.annotation.NoAspect;
import com.caucho.config.type.FlowBean;
import com.caucho.config.types.FileSetType;
import com.caucho.loader.Environment;
import com.caucho.util.IoUtil;
import com.caucho.util.L10N;
import com.caucho.vfs.Depend;
import com.caucho.vfs.Path;
import com.caucho.vfs.ReadStream;

import javax.annotation.PostConstruct;

import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.ArrayList;
import java.util.logging.Level;
import java.util.logging.Logger;

/**
 * Imports properties values from a separate file.
 */
@NoAspect
public class ResinProperties extends ResinControl implements FlowBean
{
  private static final L10N L = new L10N(ResinProperties.class);
  private static final Logger log
    = Logger.getLogger(ResinProperties.class.getName());

  private Path _path;
  private FileSetType _fileSet;
  private boolean _isOptional;
  private boolean _isRecover;
  private String _mode = "[default]";

  /**
   * Sets the resin:properties.
   */
  public void setPath(Path path)
  {
    if (path == null)
      throw new NullPointerException(L.l("'path' may not be null for resin:properties"));
    
    _path = path;
  }

  /**
   * Sets the resin:properties fileset.
   */
  public void setFileset(FileSetType fileSet)
  {
    _fileSet = fileSet;
  }
  
  /**
   * Sets true if the path is optional.
   */
  public void setOptional(boolean optional)
  {
    _isOptional = optional;
  }
  
  public void setRecover(boolean isRecover)
  {
    _isRecover = isRecover;
  }
  
  public void setMode(String mode)
  {
    if (mode == null || "".equals(mode)) {
      _mode = "[default]";
    }
    else if (mode.startsWith("[")) {
      _mode = mode;
    }
    else {
      _mode = "[" + mode + "]";
    }
  }

  @PostConstruct
  public void init()
    throws Exception
  {
    if (_path == null) {
      if (_fileSet == null)
        throw new ConfigException(L.l("'path' attribute missing from resin:properties."));
    }

    ArrayList paths;

    if (_fileSet != null)
      paths = _fileSet.getPaths();
    else {
      paths = new ArrayList();
      paths.add(_path);
    }

    for (int i = 0; i < paths.size(); i++) {
      Path path = paths.get(i);

      try {
        log.config(L.l("resin:properties '{0}'", path.getNativePath()));

        Environment.addDependency(new Depend(path));
        
        readProperties(path);
      } catch (FileNotFoundException e) {
        if (! _isOptional)
          throw new ConfigException(L.l("Required file '{0}' can not be read for resin:import.",
                                        path.getNativePath()));
        
      } catch (IOException e) {
        log.log(Level.FINER, e.toString(), e);
      }
    }
  }
  
  private void readProperties(Path path)
    throws IOException
  {
    ReadStream is = null;
    String mode = "";
    
    try {
      is = path.openRead();
      
      String line;
      
      ClassLoader loader = Thread.currentThread().getContextClassLoader();
      ClassLoader systemLoader = ClassLoader.getSystemClassLoader();
      
      if (loader.getParent().equals(systemLoader))
        loader = systemLoader;
      
      while ((line = is.readLine()) != null) {
        while (line.endsWith("\\")) {
          line = line.substring(0, line.length() - 1);

          String contLine = is.readLine();
          
          if (contLine != null) {
            line += contLine;
          }
        }
        
        line = line.trim();
        
        int p = line.indexOf('#');
        
        if (p >= 0)
          line = line.substring(0, p);
        
        if (line.startsWith("#") || line.equals("")) {
          continue;
        }
        
        if (line.startsWith("[")) {
          mode = line;
          continue;
        }
        
        p = line.indexOf(':');
        int q = line.indexOf('=');
        
        if (p < 0 || q >= 0 && q < p) {
          p = q;
        }
        
        if (p < 0) {
          throw new ConfigException(L.l("invalid line in {0}\n  {1}",
                                        path, line));
        }
        
        if ("".equals(mode) || mode.equals(_mode)) {
          String key = line.substring(0, p).trim();
          String value = line.substring(p + 1).trim();
        
          Config.setProperty(key, value, loader);
        }
      }
    } finally {
      IoUtil.close(is);
    }
  }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy