1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
37
38
39
40
41
42
43
44
45
46
47
48
49
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
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
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
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
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
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
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
123 ((ScopedQNameVariables)context.getVariables()).declareVariable( variableName, variableValue, scope );
124
125
126 return false;
127 }
128 }