Package org.knopflerfish.bundle.dirdeployer

Source Code of org.knopflerfish.bundle.dirdeployer.Config

/*
* Copyright (c) 2004-2010, KNOPFLERFISH project
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following
* conditions are met:
*
* - Redistributions of source code must retain the above copyright
*   notice, this list of conditions and the following disclaimer.
*
* - 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.
*
* - Neither the name of the KNOPFLERFISH project nor the names of its
*   contributors may be used to endorse or promote products derived
*   from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS 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
* COPYRIGHT OWNER OR 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.
*/

package org.knopflerfish.bundle.dirdeployer;

import java.util.*;
import java.io.File;

import org.osgi.framework.ServiceRegistration;
import org.osgi.service.cm.ManagedService;
import org.osgi.service.startlevel.StartLevel;

/**
* Configuration class for the directory deployer.
*
* This class first initalizes itself with values from
* system properties. If it is registered as a
* <tt>ManagedService</tt>, it also handles calls
* to the <tt>update</tt> method. The <tt>register</tt> method
* does this registration.
*/
public class Config implements ManagedService {

  // PID string used for service.pid
  static final String PID             = "org.knopflerfish.fileinstall";

  // Property names used both as system properties and as CM properties
  static final String PROP_DIRS       = PID +".dir";
  static final String PROP_INTERVAL   = PID +".poll";
  static final String PROP_STARTLEVEL = PID +".startlevel";
  static final String PROP_UNINSTALL  = PID +".uninstallOnStop";

  static final String DEFAULT_DIR = "./load";

  // directories to scan
  File[] dirs = new File[0];

  // sleep interval for scan thread
  long      interval = 1000;

  // if true, uninstall all bundles when scan thread stops
  boolean uninstallOnStop = true;

  // start level for installed bundles
  int     startLevel = 1;

  // framework registration
  ServiceRegistration reg;

  public Config() {
    // init with default values
    updated(getDefaults());
  }


  void register() {
    if(reg != null) {
      return;
    }

    Dictionary props = new Hashtable();
    props.put("service.pid", PID);

    reg = Activator.bc.registerService(ManagedService.class.getName(),
                                       this,
                                       props);

  }

  void unregister() {
    if(reg == null) {
      return;
    }

    reg.unregister();
    reg = null;
  }


  public void updated(Dictionary props) {

    if(props == null) {
      props = getDefaults();
    }

    String dirPaths = (String)props.get(PROP_DIRS);
    if(dirPaths != null) {
      StringTokenizer st = new StringTokenizer(dirPaths, ",");
      dirs = new File[st.countTokens()];

      int i = 0;
      while (st.hasMoreTokens()) {
        File dir = new File(st.nextToken().trim());
        dirs[i++] = dir;
      }
    } else {
      dirs = new File[0];
    }

    Integer iVal = (Integer)props.get(PROP_STARTLEVEL);
    if(iVal != null) {
      startLevel = iVal.intValue();
    }

    Long lVal = (Long)props.get(PROP_INTERVAL);
    if(lVal != null) {
      interval = lVal.longValue();
    }

    Boolean uVal = (Boolean) props.get(PROP_UNINSTALL);
    if(uVal != null) {
      uninstallOnStop = uVal.booleanValue();
    }
  }

  Dictionary getDefaults() {

    final Dictionary props = new Hashtable();

    final Object dirs = Activator.bc.getProperty(PROP_DIRS);
    props.put(PROP_DIRS, null==dirs ? DEFAULT_DIR : dirs);

    final Object startLevelO = Activator.bc.getProperty(PROP_STARTLEVEL);
    int startLevel = -1;
    if (null!=startLevelO) {
      try {
        startLevel = Integer.parseInt((String) startLevelO);
      } catch (NumberFormatException nfe){
      }
    }
    if (-1==startLevel) {
      // Ask the start level service for the default start level of
      // bundles
      StartLevel sl = (StartLevel) Activator.startLevelTracker.getService();
      if (null!=sl) {
        startLevel = sl.getInitialBundleStartLevel();
      } else {
        startLevel = 1; // Fallback to the default initial bundle start level
      }
    }
    props.put(PROP_STARTLEVEL, new Integer(startLevel));

    long intervall = 1000;
    final Object intervallO = Activator.bc.getProperty(PROP_INTERVAL);
    if (null!=intervallO) {
      try {
        intervall = Long.parseLong((String) intervallO);
      } catch (NumberFormatException nfe){
      }
    }
    props.put(PROP_INTERVAL, new Long(intervall));

    Boolean uninstallOnStop = Boolean.TRUE;
    final Object uninstallOnStopO = Activator.bc.getProperty(PROP_UNINSTALL);
    if (null!=uninstallOnStopO) {
      uninstallOnStop = new Boolean((String) uninstallOnStopO);
    }
    props.put(PROP_UNINSTALL, uninstallOnStop);

    return props;
  }
}
TOP

Related Classes of org.knopflerfish.bundle.dirdeployer.Config

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.