Package org.objectstyle.woenvironment.env

Source Code of org.objectstyle.woenvironment.env.WOVariables

/* ====================================================================
*
* The ObjectStyle Group Software License, Version 1.0
*
* Copyright (c) 2002 - 2006 The ObjectStyle Group
* and individual authors of the software.  All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
*    notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
*    notice, this list of conditions and the following disclaimer in
*    the documentation and/or other materials provided with the
*    distribution.
*
* 3. The end-user documentation included with the redistribution, if
*    any, must include the following acknowlegement: 
*       "This product includes software developed by the
*        ObjectStyle Group (http://objectstyle.org/)."
*    Alternately, this acknowlegement may appear in the software itself,
*    if and wherever such third-party acknowlegements normally appear.
*
* 4. The names "ObjectStyle Group" and "Cayenne"
*    must not be used to endorse or promote products derived
*    from this software without prior written permission. For written
*    permission, please contact andrus@objectstyle.org.
*
* 5. Products derived from this software may not be called "ObjectStyle"
*    nor may "ObjectStyle" appear in their names without prior written
*    permission of the ObjectStyle Group.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED.  IN NO EVENT SHALL THE OBJECTSTYLE GROUP OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the ObjectStyle Group.  For more
* information on the ObjectStyle Group, please see
* <http://objectstyle.org/>.
*
*/
package org.objectstyle.woenvironment.env;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import java.util.Properties;

import org.objectstyle.woenvironment.plist.ToHellWithProperties;
import org.objectstyle.woenvironment.util.FileStringScanner;

/**
* @author uli
*
*/
public class WOVariables {
  public static final String USER_ROOT = "wo.user.root";

  public static final String USER_FRAMEWORKS = "wo.user.frameworks";

  public static final String LOCAL_ROOT = "wo.local.root";

  public static final String LOCAL_FRAMEWORKS = "wo.local.frameworks";

  public static final String SYSTEM_ROOT = "wo.system.root";

  public static final String SYSTEM_FRAMEWORKS = "wo.system.frameworks";

  public static final String NETWORK_ROOT = "wo.network.root";

  public static final String NETWORK_FRAMEWORKS = "wo.network.frameworks";

  public static final String EXTERNAL_BUILD_ROOT = "wo.external.root";

  public static final String EXTERNAL_BUILD_FRAMEWORKS = "wo.external.frameworks";

  public static final String APPS_ROOT = "wo.apps.root";

  public static final String API_ROOT_KEY = "wo.api.root";

  public static final String BOOTSTRAP_JAR_KEY = "wo.bootstrapjar";

  public static final String WEBOBJECTS_EXTENSIONS = "wo.extensions";

  public static final String WOLIPS_PROPERTIES = "wolips.properties";

  // private static final String WOLIPS_PROPERTIES_FILE_NAME =
  // "wolips.properties";

  private static Map<File, CachedProperties> _cachedProperties = new HashMap<File, CachedProperties>();

  private Properties _wolipsPropertiesDefaults;

  private Properties _wolipsProperties;

  private File _wolipsPropertiesFile;

  public WOVariables(WOVariables variables, Map<Object, Object> existingProperties) {
    init(variables, existingProperties);
  }

  public WOVariables(Map<Object, Object> existingProperties) {
    init(null, existingProperties);
  }
 
  public File getWOLipsPropertiesFile() {
    return _wolipsPropertiesFile;
  }

  protected File getWOLipsPropertiesFile(String name) {
    File wolipsPropertiesFile = new File(name);
    if (!wolipsPropertiesFile.isAbsolute()) {
      if (isWindows()) {
        wolipsPropertiesFile = new File(System.getenv("APPDATA") + "\\WOLips\\" + name);
      }
      else {
        wolipsPropertiesFile = new File(userHomeFolder(), "Library/Application Support/WOLips/" + name);
      }
    }
    return wolipsPropertiesFile;
  }

  public void init(WOVariables variables, Map<Object, Object> existingProperties) {
    _wolipsPropertiesDefaults = new Properties();
   
    if (variables == null) {
      _wolipsProperties = new ToHellWithProperties();

      String wolipsPropertiesPath;

      if (existingProperties != null) {
        wolipsPropertiesPath = (String) existingProperties.get(WOVariables.WOLIPS_PROPERTIES);
        if (wolipsPropertiesPath == null) {
          wolipsPropertiesPath = (String) existingProperties.get("wolips.global.properties");
        }
      }
      else {
        wolipsPropertiesPath = System.getProperty(WOVariables.WOLIPS_PROPERTIES);
      }
     
      if (wolipsPropertiesPath == null) {
        wolipsPropertiesPath = System.getenv(WOVariables.WOLIPS_PROPERTIES);
      }


      File wolipsPropertiesFile = null;
      if (wolipsPropertiesPath != null) {
        wolipsPropertiesFile = getWOLipsPropertiesFile(wolipsPropertiesPath);
        if (!isValidWOlipsPropertiesFile(wolipsPropertiesFile)) {
          wolipsPropertiesFile = null;
        }
      }
      else {
        String environmentName = null;
        String woVersion = null;
        if (existingProperties != null) {
          environmentName = (String) existingProperties.get("wolips.environment");
          woVersion = (String) existingProperties.get("wo.version");
        }
        if (woVersion != null) {
          if (environmentName != null) {
            wolipsPropertiesPath = "wolips." + environmentName + "." + woVersion + ".properties";
          }
          else {
            wolipsPropertiesPath = "wolips." + woVersion + ".properties";
          }
          wolipsPropertiesFile = getWOLipsPropertiesFile(wolipsPropertiesPath);
          if (!isValidWOlipsPropertiesFile(wolipsPropertiesFile)) {
            wolipsPropertiesFile = null;
          }
        }

        if (wolipsPropertiesFile == null) {
          if (environmentName != null) {
            wolipsPropertiesPath = "wolips." + environmentName + ".properties";
            wolipsPropertiesFile = getWOLipsPropertiesFile(wolipsPropertiesPath);
            if (!isValidWOlipsPropertiesFile(wolipsPropertiesFile)) {
              wolipsPropertiesPath = "wolips.properties";
              wolipsPropertiesFile = getWOLipsPropertiesFile(wolipsPropertiesPath);
            }
          }
          else {
            wolipsPropertiesPath = "wolips.properties";
            wolipsPropertiesFile = getWOLipsPropertiesFile(wolipsPropertiesPath);
          }
        }
      }
      _wolipsPropertiesFile = wolipsPropertiesFile;

      if (isValidWOlipsPropertiesFile(_wolipsPropertiesFile)) {
        CachedProperties cachedProperties;
        synchronized (_cachedProperties) {
          cachedProperties = _cachedProperties.get(_wolipsPropertiesFile);
          if (cachedProperties == null) {
            cachedProperties = new CachedProperties(_wolipsPropertiesFile);
            _cachedProperties.put(_wolipsPropertiesFile, cachedProperties);
          }
        }
        cachedProperties.reloadIfNecessary();
        _wolipsProperties = new ToHellWithProperties();
        Properties backingProperties = cachedProperties.properties();
        synchronized(backingProperties) {
          _wolipsProperties.putAll(backingProperties);
        }
      }
      else if (_wolipsProperties == null || _wolipsProperties.isEmpty()) {
        createDefaultProperties();
        if (wolipsPropertiesPath != null) {
          _wolipsPropertiesFile = getWOLipsPropertiesFile(wolipsPropertiesPath);
        }
        save();
       
        /*
        if (existingProperties != null) {
          String wolipsPropertiesName = (String)existingProperties.get("wolips.properties");
          if (wolipsPropertiesName != null && "wolips.properties".equals(wolipsPropertiesName)) {
            _wolipsPropertiesFile = getWOLipsPropertiesFile(wolipsPropertiesName);
            save();
          }
        }
        else {
          _wolipsPropertiesFile = getWOLipsPropertiesFile("wolips.properties");
          save();
        }
        */
      }
    }
    else {
      _wolipsProperties = new ToHellWithProperties();
      _wolipsProperties.putAll(variables._wolipsProperties);
    }

    if (existingProperties != null) {
      for (Map.Entry<Object, Object> entry : existingProperties.entrySet()) {
        if (entry.getKey() instanceof String && entry.getValue() instanceof String) {
          _wolipsProperties.setProperty((String) entry.getKey(), (String) entry.getValue());
        }
      }
    }
   
    setDefaults();
  }

  public void setDefaults() {
    setDefaults(_wolipsPropertiesDefaults);
  }
 
  protected void setDefaults(Properties properties) {
    String nextRoot = System.getenv("NEXT_ROOT");
    String userHome = System.getProperty("user.home");
    if (userHome == null) {
      userHome = ".";
    }
    if (isWindows()) {
      properties.setProperty(WOVariables.API_ROOT_KEY, "/Developer/ADC%20Reference%20Library/documentation/WebObjects/Reference/API/");
      if (nextRoot != null) {
        properties.setProperty(WOVariables.APPS_ROOT, nextRoot + "\\Applications");
        properties.setProperty(WOVariables.BOOTSTRAP_JAR_KEY, nextRoot + "\\Library\\Application\\wotaskd.woa\\WOBootstrap.jar");
        properties.setProperty(WOVariables.LOCAL_ROOT, nextRoot + "\\Local");
        properties.setProperty(WOVariables.LOCAL_FRAMEWORKS, nextRoot + "\\Local\\Library\\Frameworks");
        properties.setProperty(WOVariables.SYSTEM_ROOT, nextRoot);
        properties.setProperty(WOVariables.SYSTEM_FRAMEWORKS, nextRoot + "\\Library\\Frameworks");
        properties.setProperty(WOVariables.NETWORK_ROOT, nextRoot + "\\Network");
        properties.setProperty(WOVariables.NETWORK_FRAMEWORKS, nextRoot + "\\Network\\Library\\Frameworks");
        properties.setProperty(WOVariables.WEBOBJECTS_EXTENSIONS, nextRoot + "\\Extensions");
      }
      properties.setProperty(WOVariables.USER_ROOT, userHome);
      properties.setProperty(WOVariables.USER_FRAMEWORKS, userHome + "\\Library\\Frameworks");
    }
    else {
      properties.setProperty(WOVariables.API_ROOT_KEY, "/Developer/Documentation/DocSets/com.apple.ADC_Reference_Library.WebObjectsReference.docset/Contents/Resources/Documents/documentation/InternetWeb/Reference/WO542Reference");
      properties.setProperty(WOVariables.APPS_ROOT, "/Library/WebObjects/Applications");
      properties.setProperty(WOVariables.BOOTSTRAP_JAR_KEY, "/System/Library/WebObjects/JavaApplications/wotaskd.woa/WOBootstrap.jar");
      properties.setProperty(WOVariables.LOCAL_ROOT, "/");
      properties.setProperty(WOVariables.LOCAL_FRAMEWORKS, "/Library/Frameworks");
      properties.setProperty(WOVariables.SYSTEM_ROOT, "/System");
      properties.setProperty(WOVariables.SYSTEM_FRAMEWORKS, "/System/Library/Frameworks");
      properties.setProperty(WOVariables.NETWORK_ROOT, "/Network");
      properties.setProperty(WOVariables.NETWORK_FRAMEWORKS, "/Network/Library/Frameworks");
      properties.setProperty(WOVariables.USER_ROOT, userHome);
      properties.setProperty(WOVariables.USER_FRAMEWORKS, userHome + "/Library/Frameworks");
      properties.setProperty(WOVariables.WEBOBJECTS_EXTENSIONS, "/Library/WebObjects/Extensions");
    }
  }
 
  public void createDefaultProperties() {
    _wolipsProperties = new ToHellWithProperties();
    setDefaults(_wolipsProperties);
  }

  public boolean isValidWOlipsPropertiesFile(File wolipsPropertiesFile) {
    return wolipsPropertiesFile != null && wolipsPropertiesFile.exists() && !wolipsPropertiesFile.isDirectory();
  }

  public File wolipsPropertiesFile() {
    return _wolipsPropertiesFile;
  }

  /**
   * Where you store your XCode or ant generated stuff.
   *
   * @return String
   */
  public String externalBuildRoot() {
    return resolvedPath(_wolipsProperties.getProperty(WOVariables.EXTERNAL_BUILD_ROOT));
  }

  public String externalBuildFrameworkPath() {
    String externalBuildFrameworkPath = _wolipsProperties.getProperty(WOVariables.EXTERNAL_BUILD_FRAMEWORKS);
    if (externalBuildFrameworkPath == null) {
      String externalBuildRoot = externalBuildRoot();
      if (externalBuildRoot != null) {
        externalBuildFrameworkPath = new File(new File(externalBuildRoot, "Library"), "Frameworks").toString();
      }
    }
    return resolvedPath(externalBuildFrameworkPath);
  }

  public String localRoot() {
    return resolvedPath(_wolipsProperties.getProperty(WOVariables.LOCAL_ROOT));
  }

  public String localFrameworkPath() {
    String localFrameworkPath = _wolipsProperties.getProperty(WOVariables.LOCAL_FRAMEWORKS);
    if (localFrameworkPath == null) {
      String localRoot = localRoot();
      if (localRoot != null) {
        localFrameworkPath = new File(new File(localRoot, "Library"), "Frameworks").toString();
      }
    }
    return resolvedPath(localFrameworkPath);
  }

  public String systemRoot() {
    return resolvedPath(_wolipsProperties.getProperty(WOVariables.SYSTEM_ROOT));
  }

  public String systemFrameworkPath() {
    String systemFrameworkPath = _wolipsProperties.getProperty(WOVariables.SYSTEM_FRAMEWORKS);
    if (systemFrameworkPath == null) {
      String systemRoot = systemRoot();
      if (systemRoot != null) {
        systemFrameworkPath = new File(new File(systemRoot, "Library"), "Frameworks").toString();
      }
    }
    return resolvedPath(systemFrameworkPath);
  }

  public String networkRoot() {
    return resolvedPath(_wolipsProperties.getProperty(WOVariables.NETWORK_ROOT));
  }

  public String networkFrameworkPath() {
    String networkFrameworkPath = _wolipsProperties.getProperty(WOVariables.NETWORK_FRAMEWORKS);
    if (networkFrameworkPath == null) {
      String networkRoot = networkRoot();
      if (networkRoot != null) {
        networkFrameworkPath = new File(new File(networkRoot, "Library"), "Frameworks").toString();
      }
    }
    return resolvedPath(networkFrameworkPath);
  }

  public String appsRoot() {
    return resolvedPath(_wolipsProperties.getProperty(WOVariables.APPS_ROOT));
  }

  public String boostrapJar() {
    return resolvedPath(_wolipsProperties.getProperty(WOVariables.BOOTSTRAP_JAR_KEY));
  }

  /**
   * Method referenceApi. WOVariables.REFERENCE_API_KEY defined in
   * wolips.properties (key: <code>wo.dir.reference.api</code>)
   *
   * @return String
   */
  public String referenceApi() {
    return resolvedPath(_wolipsProperties.getProperty(WOVariables.API_ROOT_KEY));
  }

  /**
   * Returns the home directory for the current user.
   *
   * @return
   */
  public String userHomeFolder() {
    String userHome = System.getProperty("user.home");
    if (userHome == null) {
      userHome = System.getenv("USERPROFILE");
    }
    if (userHome == null) {
      System.out.println("WOVariables.userHome: No user home directory found.");
    }
    return userHome;
  }

  /**
   * Method userHome
   *
   * @return String
   */
  public String userRoot() {
    return resolvedPath(_wolipsProperties.getProperty(WOVariables.USER_ROOT));
  }

  /**
   * Method userHome
   *
   * @return String
   */
  public String userFrameworkPath() {
    return resolvedPath(_wolipsProperties.getProperty(WOVariables.USER_FRAMEWORKS));
  }

  /**
   * Method woProjectFileName.
   *
   * @return String
   */
  public static String woProjectFileName() {
    return "PB.project";
  }

  /**
   * Method webServerResourcesDirName.
   *
   * @return String
   */
  public static String webServerResourcesDirName() {
    return "WebServerResources";
  }

  /**
   * Method encodePathForFile.
   *
   * @param aFile
   * @return String
   */
  public String encodePathForFile(File aFile) {
    return encodePath(aFile.getPath());
  }

  public String encodePath(String path) {
    String userHome = null;
    String systemRoot = null;
    String localRoot = null;
    String aPath = null;
    try {
      localRoot = localRoot();
      userHome = userRoot();
      systemRoot = systemRoot();
      int localRootLength = 0;
      int userHomeLength = 0;
      int systemRootLength = 0;
      if (localRoot != null) {
        localRootLength = localRoot.length();
      }
      if (userHome != null) {
        userHomeLength = userHome.length();
      }
      if (systemRoot != null) {
        systemRootLength = systemRoot.length();
      }
      // aPath = aFile.getCanonicalPath();
      // u.k. the CanonicalPath will resolve links this will
      // result in path with /Versions/a in it
      aPath = convertWindowsPath(path);
      // aPrefix = getAppRootPath();
      // if((aPrefix != null) && (aPrefix.length() > 1) &&
      // (aPath.startsWith(aPrefix))) {
      // return "APPROOT" + aPath.substring(aPrefix.length());
      // }
      if (localRoot != null && aPath.startsWith(localRoot)) {
        boolean otherRoot = false;
        if (localRootLength < userHomeLength && aPath.startsWith(userHome)) {
          otherRoot = true;
        }
        if (localRootLength < systemRootLength && aPath.startsWith(systemRoot)) {
          otherRoot = true;
        }
        if (!otherRoot) {
          if (localRootLength == 1) {// MacOSX
            return "LOCALROOT" + aPath;
          }
          return "LOCALROOT" + aPath.substring(localRootLength);
        }
      }
      if (userHome != null && aPath.startsWith(userHome)) {
        boolean otherRoot = false;
        if (userHomeLength < systemRootLength && aPath.startsWith(systemRoot)) {
          otherRoot = true;
        }
        if (!otherRoot) {
          return "HOMEROOT" + aPath.substring(userHomeLength);
        }
      }
      if (systemRoot != null && aPath.startsWith(systemRoot)) {
        return "WOROOT" + aPath.substring(systemRootLength);
      }
      return aPath;
    }
    catch (Exception anException) {
      System.out.println("Exception occurred during encoding of the path " + anException);
    }
    finally {
      localRoot = null;
      userHome = null;
      systemRoot = null;
      aPath = null;
    }
    return null;
  }

  private String convertWindowsPath(String path) {
    if (path == null || path.length() == 0) {
      return null;
    }
    return FileStringScanner.replace(path, "\\", "/");
  }

  private String resolvedPath(String path) {
    if (path == null || path.length() == 0) {
      return null;
    }
      File filepath = new File(path);
      if (!filepath.isAbsolute()) {
          filepath = new File(_wolipsPropertiesFile.getParentFile(), path);
      }
    return filepath.toString();
  }

  public String getProperty(String aKey) {
    String value = (_wolipsProperties != null ? _wolipsProperties.getProperty(aKey) : null);
    if (value == null) {
      value = getDefault(aKey);
    }
    return value;
  }
 
  public void setProperty(String key, String value) {
    if ("wolips.properties".equals(key)) {
      File wolipsPropertiesFile = new File(value);
      if (wolipsPropertiesFile.isAbsolute()) {
        _wolipsPropertiesFile = wolipsPropertiesFile;
      }
      else {
        _wolipsPropertiesFile = getWOLipsPropertiesFile(value);
      }
    }
    else {
      _wolipsProperties.setProperty(key, value);
    }
  }
 
  public void setDefault(String key, String value) {
    _wolipsPropertiesDefaults.setProperty(key, value);
  }
 
  public String getDefault(String key) {
    return _wolipsPropertiesDefaults.getProperty(key);
  }
 
  public void save() {
    if (_wolipsPropertiesFile == null) {
      System.out.println("WOVariables.save: There is no wolips properties file set, skipping save.");
    }
    else {
      try {
        File wolipsPropertiesFolder = _wolipsPropertiesFile.getParentFile();
        if (!wolipsPropertiesFolder.exists()) {
          if (!wolipsPropertiesFolder.mkdirs()) {
            throw new IOException("Failed to create the folder '" + wolipsPropertiesFolder + "'.");
          }
        }
        if (wolipsPropertiesFolder.canWrite()) {
          FileOutputStream wolipsPropertiesStream = new FileOutputStream(_wolipsPropertiesFile);
          try {
            _wolipsProperties.store(wolipsPropertiesStream, null);
          }
          finally {
            wolipsPropertiesStream.close();
          }
          synchronized (_cachedProperties) {
            _cachedProperties.remove(_wolipsPropertiesFile);
          }
        }
        else {
          throw new IOException("Failed to save the properties to '" + _wolipsPropertiesFile + "'.");
        }
      }
      catch (IOException e) {
        throw new RuntimeException("Failed to write " + _wolipsPropertiesFile + ".", e);
      }
    }
  }

  public static boolean isWindows() {
    return System.getProperty("os.name").toLowerCase().contains("windows");
  }

  public static class CachedProperties {
    private File _propertiesFile;
    private long _lastLoaded;
    private Properties _properties;

    public CachedProperties(File propertiesFile) {
      _propertiesFile = propertiesFile;
      _properties = new ToHellWithProperties();
    }

    public void reloadIfNecessary() {
      if (_propertiesFile.exists()) {
        long lastModified = _propertiesFile.lastModified();
        if (_lastLoaded != lastModified) {
          reload();
          _lastLoaded = lastModified;
        }
      }
    }

    public Properties properties() {
      return _properties;
    }

    public void reload() {
      try {
        _properties = new ToHellWithProperties();
        _properties.load(new FileInputStream(_propertiesFile));
      }
      catch (IOException e) {
        throw new RuntimeException("Failed to load " + _propertiesFile + ".", e);
      }
    }
  }
}
TOP

Related Classes of org.objectstyle.woenvironment.env.WOVariables

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.