log4j implemented for the producer subsystem
[mir.git] / source / mir / producer / reader / ScriptedProducerNodeDefinition.java
1 /*
2  * Copyright (C) 2001, 2002  The Mir-coders group
3  *
4  * This file is part of Mir.
5  *
6  * Mir is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Mir is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Mir; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * In addition, as a special exception, The Mir-coders gives permission to link
21  * the code of this program with the com.oreilly.servlet library, any library
22  * licensed under the Apache Software License, The Sun (tm) Java Advanced
23  * Imaging library (JAI), The Sun JIMI library (or with modified versions of
24  * the above that use the same license as the above), and distribute linked
25  * combinations including the two.  You must obey the GNU General Public
26  * License in all respects for all of the code used other than the above
27  * mentioned libraries.  If you modify this file, you may extend this exception
28  * to your version of the file, but you are not obligated to do so.  If you do
29  * not wish to do so, delete this exception statement from your version.
30  */
31
32 package mir.producer.reader;
33
34 import java.util.*;
35 import java.io.*;
36
37 import mir.producer.*;
38 import mir.log.*;
39
40 public class ScriptedProducerNodeDefinition {
41   private Map integerParameters;               // name -> default value
42   private Map stringParameters;               // name -> default value
43   private Set nodeParameters;
44   private ProducerNode body;
45   private String name;
46
47   public static String SCRIPTED_PRODUCERNODE_RUNTIMEDATA_KEY = "$SCRIPTRUNTIMEDATA";
48   public static String SCRIPTED_PRODUCERNODE_RUNTIMESTACK_KEY = "stack";
49
50   public ScriptedProducerNodeDefinition(String aName) {
51     name = aName;
52     integerParameters = new HashMap();
53     stringParameters = new HashMap();
54     nodeParameters = new HashSet();
55     body = new CompositeProducerNode();
56   }
57
58   public void addStringParameter(String aName, String aDefaultValue) {
59     stringParameters.put(aName, aDefaultValue);
60   }
61
62   public void addIntegerParameter(String aName, String aDefaultValue) {
63     integerParameters.put(aName, aDefaultValue);
64   }
65
66   public void addNodeParameter(String aName) {
67     nodeParameters.add(aName);
68   }
69
70   public void setBody(ProducerNode aBody) {
71     body = aBody;
72   }
73
74   protected Map getStringParameters() {
75     return stringParameters;
76   }
77
78   protected Map getIntegerParameters() {
79     return integerParameters;
80   }
81
82   protected Set getNodeParameters() {
83     return nodeParameters;
84   }
85
86   protected ProducerNode getBody() {
87     return body;
88   }
89
90   public String getName() {
91     return name;
92   }
93
94   public Set getRequiredAttributes() {
95     return getAttributesSelection(true);
96   }
97
98   public Set getOptionalAttributes() {
99     return getAttributesSelection(false);
100   }
101
102   public Set getAttributesSelection(boolean aRequired) {
103     Set result = new HashSet();
104     Iterator i = stringParameters.entrySet().iterator();
105
106     while (i.hasNext()) {
107       Map.Entry entry = (Map.Entry) i.next();
108
109       if ((entry.getValue() == null) == aRequired ) {
110         result.add(entry.getKey());
111       }
112     }
113
114     i = integerParameters.entrySet().iterator();
115
116     while (i.hasNext()) {
117       Map.Entry entry = (Map.Entry) i.next();
118
119       if ((entry.getValue() == null) == aRequired ) {
120         result.add(entry.getKey());
121       }
122     }
123
124     return result;
125   }
126
127
128   protected static class NodeParameterProducerNode implements ProducerNode {
129     private String parameterName;
130     private String definitionName;
131
132     public NodeParameterProducerNode(String aDefinitionName, String aParameterName) {
133       definitionName = aDefinitionName;
134       parameterName = aParameterName;
135     }
136
137     public void produce(Map aValues, String aVerb, LoggerWrapper aLogger) throws ProducerExc, ProducerFailure {
138       ProducerNode producerNode;
139
140       Map runTimeData = (Map) ((Map) aValues.get(SCRIPTED_PRODUCERNODE_RUNTIMEDATA_KEY)).get(definitionName);
141       Map parameters = (Map) ((Stack) runTimeData.get( SCRIPTED_PRODUCERNODE_RUNTIMESTACK_KEY )).peek();
142
143       producerNode = (ProducerNode) parameters.get(parameterName);
144
145       if (producerNode != null)
146         producerNode.produce(aValues, aVerb, aLogger);
147     }
148
149     public Set buildVerbSet() {
150       return new HashSet();
151     }
152   }
153 }