View Javadoc

1   /**
2    *    Copyright 2011 meltmedia
3    *
4    *    Licensed under the Apache License, Version 2.0 (the "License");
5    *    you may not use this file except in compliance with the License.
6    *    You may obtain a copy of the License at
7    *
8    *        http://www.apache.org/licenses/LICENSE-2.0
9    *
10   *    Unless required by applicable law or agreed to in writing, software
11   *    distributed under the License is distributed on an "AS IS" BASIS,
12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   *    See the License for the specific language governing permissions and
14   *    limitations under the License.
15   */
16  package org.xchain.namespaces.core;
17  
18  import org.apache.commons.jxpath.JXPathContext;
19  
20  import org.slf4j.Logger;
21  import org.slf4j.LoggerFactory;
22  
23  import org.xchain.Command;
24  import org.xchain.annotations.Attribute;
25  import org.xchain.annotations.AttributeType;
26  import org.xchain.annotations.Element;
27  
28  import org.xchain.framework.jxpath.Scope;
29  import org.xchain.framework.jxpath.ScopedQNameVariables;
30  
31  import java.util.List;
32  
33  import javax.xml.namespace.QName;
34  
35  /**
36   * <p>The <code>variable</code> command will declare and set a variable in the context.
37   * The <code>name</code> attribute is the QName of the variable.
38   * The <code>select</code>, <code>select-nodes</code>, or <code>select-single-node</code> attribute will be the value of the variable.
39   * The <code>scope</code> attribute will determine the scope of the variable.  A 'chain' scope variable will only exist if the current
40   * context.  A 'request' scope variable will exist for every context.  A request scope is assumed if no scope attribute is
41   * provided.</p>
42   *
43   * <code class="source">
44   * &lt;xchain:variable xmlns:xchain="http://www.xchain.org/core/1.0" name="/some/xpath" select="/some/xpath"/ scope="chain"/&gt;
45   * </code>
46   *
47   * @author Christian Trimble
48   * @author Devon Tackett
49   * @author Josh Kennedy
50   */
51  @Element(localName="variable")
52  public abstract class VariableCommand
53    implements Command
54  {
55    public static Logger log = LoggerFactory.getLogger(VariableCommand.class);
56  
57    /**
58     * The QName of the variable.
59     */
60    @Attribute(localName="name", type=AttributeType.QNAME)
61    public abstract QName getName( JXPathContext context )
62      throws Exception;
63    public abstract boolean hasName();
64  
65    /**
66     * The value of the variable. 
67     */
68    @Attribute(localName="select", type=AttributeType.JXPATH_VALUE)
69    public abstract Object getSelect( JXPathContext context )
70      throws Exception;
71    public abstract boolean hasSelect();
72  
73    /**
74     * The value of the variable. 
75     */  
76    @Attribute(localName="select-nodes", type=AttributeType.JXPATH_SELECT_NODES)
77    public abstract List getSelectNodes( JXPathContext context )
78      throws Exception;
79    public abstract boolean hasSelectNodes();
80  
81    /**
82     * The value of the variable. 
83     */  
84    @Attribute(localName="select-single-node", type=AttributeType.JXPATH_SELECT_SINGLE_NODE)
85    public abstract Object getSelectSingleNode( JXPathContext context )
86      throws Exception;
87    public abstract boolean hasSelectSingleNode();
88    
89    /**
90     * The scope of the variable.  Can either be the literal request, execution or chain. 
91     */
92    @Attribute(localName="scope", type=AttributeType.LITERAL, defaultValue="request")
93    public abstract Scope getScope(JXPathContext context)
94      throws Exception;
95  
96    public boolean execute( JXPathContext context )
97      throws Exception
98    {
99      QName variableName = getName(context);
100     Object variableValue = null;
101 
102     if( hasSelect() ) {
103       variableValue = getSelect(context);
104     }
105     else if( hasSelectNodes() ) {
106       variableValue = getSelectNodes(context);
107     }
108     else if( hasSelectSingleNode() ) {
109       variableValue = getSelectSingleNode(context);
110     }
111     else {
112       throw new Exception( "Variable '"+variableName+"' must have a select attribute (select, select-nodes, or select-single-node)" );
113     }
114 
115     // get the scope.
116     Scope scope = getScope(context);
117 
118     if( log.isDebugEnabled() ) {
119       log.debug("Setting variable name '"+variableName+"' to value '"+variableValue+"' in scope '"+scope+"'.");
120     }
121 
122     // declare the variable.
123     ((ScopedQNameVariables)context.getVariables()).declareVariable( variableName, variableValue, scope );
124 
125     // return false and allow other chains to execute.
126     return false;
127   }
128 }