summaryrefslogtreecommitdiffstats
path: root/sandbox/kgoodson/mappingFramework/sdo-snapshot/src/main/java/com/agfa/hap/sdo/mapper/DelegatingPartialDataObjectMapper.java
blob: 5976aa2b57fc3452ec1fb9dc5a5a75da3b5c6ff8 (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
/**
 *
 *  Licensed to the Apache Software Foundation (ASF) under one
 *  or more contributor license agreements.  See the NOTICE file
 *  distributed with this work for additional information
 *  regarding copyright ownership.  The ASF licenses this file
 *  to you 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 com.agfa.hap.sdo.mapper;

import java.util.Collection;
import java.util.Iterator;

import com.agfa.hap.sdo.DataMapper;
import com.agfa.hap.sdo.PartialDataObject;
import com.agfa.hap.sdo.Property;
import com.agfa.hap.sdo.SnapshotDefinition;
import com.agfa.hap.sdo.Type;

/**
 * @author awvjz
 * 
 * this datamapper wraps another datamapper and delegates to this second mapper in case the object it has to work with are not partialdataobjects
 *
 */
public class DelegatingPartialDataObjectMapper<T> implements DataMapper<T> {
	private DataMapper<T> delegate; 
	private PartialDataObjectMapper defaultMapper = new PartialDataObjectMapper();
	
	public DelegatingPartialDataObjectMapper(DataMapper<T> delegateDataMapper){	
		delegate = delegateDataMapper;
	}

	public T create(Type type) {
		T instance = delegate.create(type);
		if (instance == null){
			return (T) defaultMapper.create(type);
		}
		return instance;		
	}

	public Type getCorrespondingType(Class clazz) {
		Type type = null;
		try {
			type = delegate.getCorrespondingType(clazz);
		} catch (IllegalArgumentException e){
			//no type was found
		}
		if (type == null){
			return defaultMapper.getCorrespondingType(clazz);
		}
		return type;
	}


	public Object getProperty(T object, Property property) {
		if (object instanceof PartialDataObject){
			return defaultMapper.getProperty((PartialDataObject) object, property);
		}
		return delegate.getProperty(object, property);
	}


	public T newProxy(Type type, Object identity) {
		T proxy = delegate.newProxy(type, identity);
		if (proxy == null){
			return (T) defaultMapper.newProxy(type, identity);
		}
		return proxy;
	}


	public Iterator<? extends T> getObjects(T object, Property property) {
		if (object instanceof PartialDataObject){
			return (Iterator<? extends T>) defaultMapper.getObjects((PartialDataObject) object, property);
		}
		return delegate.getObjects(object, property);
	}


	public Type getType(T object) {
		if (object instanceof PartialDataObject){
			return defaultMapper.getType((PartialDataObject) object);			
		}
		return delegate.getType(object);
	}


	public boolean isProxy(T object) {
		if (object instanceof PartialDataObject){
			return defaultMapper.isProxy((PartialDataObject) object);			
		}
		return delegate.isProxy(object);
	}


	public void setProperty(T object, Property property, Object value) {
		if (object instanceof PartialDataObject){
			defaultMapper.setProperty((PartialDataObject) object, property, value);
		} else {
			delegate.setProperty(object, property, value);
		}
	}


	public void setUnavailable(T object, Property property) {
		if (object instanceof PartialDataObject){
			defaultMapper.setUnavailable((PartialDataObject) object, property);
		} else {
			delegate.setUnavailable(object, property);
		}		
	}

	public Collection<T> getProperties(Collection<T> object, Property bulkProperty, SnapshotDefinition def) {
		return delegate.getProperties(object, bulkProperty, def);
	}

	public boolean isBulkProperty(Class clazz, Property property) {
		if (PartialDataObject.class.isAssignableFrom(clazz)) {
			return false;
		}
		return delegate.isBulkProperty(clazz, property);
	}
	
	

}