summaryrefslogtreecommitdiffstats
path: root/tags/java-M1-20060522/java/das/rdb/src/main/java/org/apache/tuscany/das/rdb/graphbuilder/impl/GraphBuilderMetadata.java
blob: 6247dea757fc1ee17ac38a78a64871428b3b8e5f (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
/**
 *
 *  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.graphbuilder.impl;

import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;

import org.apache.tuscany.das.rdb.ResultSetShape;
import org.apache.tuscany.das.rdb.config.Config;
import org.apache.tuscany.das.rdb.graphbuilder.schema.ESchemaMaker;
import org.apache.tuscany.das.rdb.util.DebugUtil;

import commonj.sdo.Type;


/**
 */
public class GraphBuilderMetadata {

	private Config mappingModel;
	private final Collection resultSets = new ArrayList();
	private boolean debug = false;
	private Type schema;


	public GraphBuilderMetadata(Collection results, Type schema, Config model, ResultSetShape shape) throws SQLException {
		this.mappingModel = model;
		this.schema = schema;
		
		Iterator i = results.iterator();
		while (i.hasNext()) {
			ResultSet rs = (ResultSet) i.next();
			ResultMetadata resultMetadata = new ResultMetadata(rs, mappingModel, shape);
			resultSets.add(resultMetadata);
		}

		DebugUtil.debugln(getClass(), debug, "Mapping model: " + mappingModel);
	}
	

	public Collection getResultMetadata() {
		return this.resultSets;
	}
	

	public boolean hasMappingModel() {
		return mappingModel == null ? false : true;
	}


	/**
	 * @return
	 */
	
	public Collection getRelationships() {
		if (!hasMappingModel())  {
			DebugUtil.debugln(getClass(), debug, "No relationships to return");
			return Collections.EMPTY_LIST;
		}
		
		return mappingModel.getRelationship();
	}


	/**
	 * @return
	 */
	public Type getSchema() {
		if ( this.schema == null ) {
			ESchemaMaker schemaMaker = new ESchemaMaker(this);
			return schemaMaker.createTypes();
		} else {
			return this.schema;
		}
	}

	public Config getMapping() {
		return this.mappingModel;
	}
}