summaryrefslogtreecommitdiffstats
path: root/tags/java-stable-20060304/das/rdb/src/main/java/org/apache/tuscany/das/rdb/impl/CommandImpl.java
blob: 5272a0b911edf6417fa3547c51a0929e8389d125 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/**
 *
 *  Copyright 2005 The Apache Software Foundation or its licensors, as applicable.
 *
 *  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.apache.tuscany.das.rdb.impl;

import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.sql.Connection;
import java.util.List;

import org.apache.tuscany.das.rdb.Command;
import org.apache.tuscany.das.rdb.Key;
import org.apache.tuscany.das.rdb.Parameter;
import org.apache.tuscany.das.rdb.ResultSetShape;
import org.apache.tuscany.das.rdb.config.wrapper.MappingWrapper;

import commonj.sdo.DataObject;
import commonj.sdo.Type;
import commonj.sdo.helper.XSDHelper;

public abstract class CommandImpl implements Command {

	protected Statement statement;

	protected Parameters parameters = new Parameters();

	protected MappingWrapper mappingModel = new MappingWrapper();

	protected static final boolean debug = false;

	protected ResultSetShape resultSetShape;

	public CommandImpl(String sqlString) {
		statement = new Statement(sqlString);

		try {
			URL url = getClass().getResource("/xml/sdoJava.xsd");
			if (url == null)
				throw new RuntimeException(
					"Could not find resource: xml/sdoJava.xsd");
		
			InputStream inputStream = url.openStream();
			XSDHelper.INSTANCE.define(inputStream, url.toString());
			inputStream.close();
		} catch ( IOException ex ) {
			throw new RuntimeException(ex);
		}

	}

	public abstract void execute();

	public abstract DataObject executeQuery();

	public void setParameterValue(String name, Object value) {
		parameters.setParameter(name, value);
	}

	public void setParameterValue(int index, Object value) {
		parameters.setParameter(index, value);
	}

	public void setParameterType(String name, Type dataType) {
		parameters.setParameterWithType(name, dataType);
	}

	public void setParameterType(int index, Type dataType) {
		parameters.setParameterWithType(index, dataType);
	}

	public void addParameter(int index, Type sdoType) {
		addParameter(index, Parameter.IN, sdoType);
	}

	public void addParameter(int index, int direction, Type sdoType) {
		parameters.findOrCreateParameterWithIndex(index, direction, sdoType);
	}

	public void addParameter(String name, Type sdoType) {
		addParameter(name, Parameter.IN, sdoType);
	}

	public void addParameter(String name, int direction, Type sdoType) {
		parameters.setParameterWithType(name, sdoType);
	}

	public void addParameter(Parameter param) {
		parameters.add(param);
	}

	public Parameter getParameter(String name) {
		return parameters.get(name);
	}

	public Parameter getParameter(int index) {
		return parameters.get(index);

	}

	public List getParameters() {
		return parameters.parameterList();
	}

	public Object getParameterValue(String name) {
		Parameter p = parameters.get(name);
		if (p == null)
			throw new RuntimeException("Parameter with name " + name
					+ " not found");

		return p;
	}

	public Object getParameterValue(int index) {
		return parameters.parameterWithIndex(index).getValue();
	}

	public void setConnection(Connection connection) {
		setConnection(new ConnectionImpl(connection));
	}

	public void setConnection(Connection connection, boolean manageTransaction) {
		ConnectionImpl c = new ConnectionImpl(connection);
		c.setManageTransactions(manageTransaction);
		setConnection(c);
	}

	public void setConnection(ConnectionImpl connection) {
		statement.setConnection(connection);
	}

	protected ConnectionImpl getConnection() {
		return statement.getConnection();
	}

	public void addRelationship(String parentName, String childName) {
		mappingModel.addRelationship(parentName, childName);
	}

	public void addRelationship(Key parentKey, Key childKey) {
		mappingModel.addRelationship(parentKey, childKey);
	}

	public void addPrimaryKey(String pk) {
		mappingModel.addPrimaryKey(pk);
	}

	public void addPrimaryKey(Key pk) {
		mappingModel.addPrimaryKey(pk);
	}

	public void setResultSetShape(ResultSetShape shape) {
		this.resultSetShape = shape;
	}

	public void addConverter(String name, String converter) {
		mappingModel.addConverter(name, converter);
	}

	public void close() {
		statement.close();
	}

}