Package org.araneaframework.core

Source Code of org.araneaframework.core.StandardRelocatableServiceDecorator$RelocatableComponentImpl

/**
* Copyright 2006 Webmedia Group Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*  http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/

package org.araneaframework.core;

import java.io.Serializable;
import org.araneaframework.Environment;
import org.araneaframework.InputData;
import org.araneaframework.Message;
import org.araneaframework.OutputData;
import org.araneaframework.Path;
import org.araneaframework.Relocatable;
import org.araneaframework.Service;

/**
* A decorator for a service making it relocatable. A relocatable service can be
* moved from one parent to another.
*
* @author "Toomas Römer" <toomas@webmedia.ee>
* @author Jevgeni Kabanov (ekabanov@webmedia.ee)
*/
public class StandardRelocatableServiceDecorator extends BaseService implements Serializable, Relocatable.RelocatableService {
  //*******************************************************************
  // FIELDS
  //******************************************************************* 
  protected Service child;

  //*******************************************************************
  // PROTECTED CLASSES
  //*******************************************************************
  protected class RelocatableComponentImpl implements Relocatable.Interface {
    public void overrideEnvironment(Environment newEnv) throws Exception{
      _startWaitingCall();
     
      _waitNoCall();     
      synchronized (this) {
        _setEnvironment(newEnv);
      }
     
      _endWaitingCall();
    }
  }
 
  //*******************************************************************
  // PUBLIC METHODS
  //*******************************************************************
  public Relocatable.Interface _getRelocatable() {
    return new RelocatableComponentImpl();
  }
 
  /**
   * Constructs a new StandardRelocatableServiceDecorator and sets its child service to child.
   * @param child
   */
  public StandardRelocatableServiceDecorator(Service child) {
    this.child = child;
  }
 
  /**
   * Sets the child service of this component.
   * @param child
   */
  public void setChildService(Service child) {
    this.child = child;
  }
 
  //*******************************************************************
  // PROTECTED METHODS
  //*******************************************************************
  protected void init() throws Exception {
    child._getComponent().init(new Environment() {
      public Object getEntry(Object key) {
        return getEnvironment().getEntry(key);
      }
    });
  }
 
  protected void propagate(Message message) throws Exception {
    message.send(null, child);
  }
 
  protected void action(Path path, InputData input, OutputData output) throws Exception {
    child._getService().action(path, input, output);
  }
 
  protected void destroy() throws Exception {
    child._getComponent().destroy();
  }
}
TOP

Related Classes of org.araneaframework.core.StandardRelocatableServiceDecorator$RelocatableComponentImpl

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.