aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/sdc/toscaparser/api/elements/InterfacesDef.java
blob: ceb8fb998bfaff56a824272f625977a38acba447 (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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */

package org.onap.sdc.toscaparser.api.elements;

import org.onap.sdc.toscaparser.api.common.JToscaValidationIssue;
import org.onap.sdc.toscaparser.api.utils.ThreadLocalsHolder;
import org.onap.sdc.toscaparser.api.EntityTemplate;

import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.Map;

public class InterfacesDef extends StatefulEntityType {

	public static final String LIFECYCLE = "tosca.interfaces.node.lifecycle.Standard";
	public static final String CONFIGURE = "tosca.interfaces.relationship.Configure";
	public static final String LIFECYCLE_SHORTNAME = "Standard";
	public static final String CONFIGURE_SHORTNAME = "Configure";

	public static final String SECTIONS[] = {
			LIFECYCLE, CONFIGURE, LIFECYCLE_SHORTNAME,CONFIGURE_SHORTNAME
	};

	public static final String IMPLEMENTATION = "implementation";
	public static final String DESCRIPTION = "description";
	public static final String INPUTS = "inputs";

	public static final String INTERFACE_DEF_RESERVED_WORDS[] = {
			"type", "inputs", "derived_from", "version", "description"};

	private EntityType ntype;
	private EntityTemplate nodeTemplate;

	private String operationName;
	private Object operationDef;
	private Object implementation;
	private LinkedHashMap<String,Object> inputs;
	private String description;

	@SuppressWarnings("unchecked")
	public InterfacesDef(EntityType inodeType,
			String interfaceType,
			EntityTemplate inodeTemplate,
			String iname,
			Object ivalue) {
		// void
		super();

		ntype = inodeType;
		nodeTemplate = inodeTemplate;
		type = interfaceType;
		operationName = iname;
		operationDef = ivalue;
		implementation = null;
		inputs = null;
		defs = new LinkedHashMap<String,Object>();

		if(interfaceType.equals(LIFECYCLE_SHORTNAME)) {
			interfaceType = LIFECYCLE;
		}
		if(interfaceType.equals(CONFIGURE_SHORTNAME)) {
			interfaceType = CONFIGURE;
		}

		// only NodeType has getInterfaces "hasattr(ntype,interfaces)"
		// while RelationshipType does not
		if(ntype instanceof NodeType) {
			if(((NodeType)ntype).getInterfaces() != null &&
					((NodeType)ntype).getInterfaces().values().contains(interfaceType)) {
				LinkedHashMap<String,Object> nii = (LinkedHashMap<String,Object>)
						((NodeType)ntype).getInterfaces().get(interfaceType);
				interfaceType = (String)nii.get("type");
			}
		}
		if(inodeType != null) {
			if(nodeTemplate != null && nodeTemplate.getCustomDef() != null &&
					nodeTemplate.getCustomDef().containsKey(interfaceType)) {
				defs = (LinkedHashMap<String,Object>)
						nodeTemplate.getCustomDef().get(interfaceType);
			}
			else {
				defs = (LinkedHashMap<String,Object>)TOSCA_DEF.get(interfaceType);
			}
		}

		if(ivalue != null) {
			if(ivalue instanceof LinkedHashMap) {
				for(Map.Entry<String,Object> me: ((LinkedHashMap<String,Object>)ivalue).entrySet()) {
					if(me.getKey().equals(IMPLEMENTATION)) {
						implementation = me.getValue();
					}
					else if(me.getKey().equals(INPUTS)) {
						inputs = (LinkedHashMap<String,Object>)me.getValue();
					}
					else if(me.getKey().equals(DESCRIPTION)) {
						description = (String)me.getValue();
					}
					else {
						ThreadLocalsHolder.getCollector().appendValidationIssue(new JToscaValidationIssue("JE123", String.format(
								"UnknownFieldError: \"interfaces\" of template \"%s\" contain unknown field \"%s\"",
								nodeTemplate.getName(),me.getKey())));
					}
				}
			}
		}
	}

	public ArrayList<String> getLifecycleOps() {
		if(defs != null) {
			if(type.equals(LIFECYCLE)) {
				return _ops();
			}
		}
		return null;
	}

	public ArrayList<String> getInterfaceOps() {
		if(defs != null) {
			ArrayList<String> ops = _ops();
			ArrayList<String> idrw = new ArrayList<>();
			for(int i=0; i<InterfacesDef.INTERFACE_DEF_RESERVED_WORDS.length; i++) {
				idrw.add(InterfacesDef.INTERFACE_DEF_RESERVED_WORDS[i]);
			}
			ops.removeAll(idrw);
			return ops;
		}
		return null;
	}

	public ArrayList<String> getConfigureOps() {
		if(defs != null) {
			if(type.equals(CONFIGURE)) {
				return _ops();
			}
		}
		return null;
	}

	private ArrayList<String> _ops() {
		return new ArrayList<String>(defs.keySet());
	}

	// getters/setters

	public LinkedHashMap<String,Object> getInputs() {
		return inputs;
	}

	public void setInput(String name,Object value) {
		inputs.put(name, value);
	}

	public Object getImplementation(){
		return  implementation;
	}

	public void setImplementation(Object implementation){
		this.implementation = implementation;
	}

	public String getDescription() {
		return description;
	}

	public void setDescription(String description) {
		this.description = description;
	}

	public String getOperationName() {
		return operationName;
	}

	public void setOperationName(String operationName) {
		this.operationName = operationName;
	}
}



/*python

#    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.

from toscaparser.common.exception import ValidationIssueCollector
from toscaparser.common.exception import UnknownFieldError
from toscaparser.elements.statefulentitytype import StatefulEntityType

SECTIONS = (LIFECYCLE, CONFIGURE, LIFECYCLE_SHORTNAME,
            CONFIGURE_SHORTNAME) = \
           ('tosca.interfaces.node.lifecycle.Standard',
            'tosca.interfaces.relationship.Configure',
            'Standard', 'Configure')

INTERFACEVALUE = (IMPLEMENTATION, INPUTS) = ('implementation', 'inputs')

INTERFACE_DEF_RESERVED_WORDS = ['type', 'inputs', 'derived_from', 'version',
                                'description']


class InterfacesDef(StatefulEntityType):
    '''TOSCA built-in interfaces type.'''

    def __init__(self, node_type, interfacetype,
                 node_template=None, name=None, value=None):
        self.ntype = node_type
        self.node_template = node_template
        self.type = interfacetype
        self.name = name
        self.value = value
        self.implementation = None
        self.inputs = None
        self.defs = {}
        if interfacetype == LIFECYCLE_SHORTNAME:
            interfacetype = LIFECYCLE
        if interfacetype == CONFIGURE_SHORTNAME:
            interfacetype = CONFIGURE
        if hasattr(self.ntype, 'interfaces') \
           and self.ntype.interfaces \
           and interfacetype in self.ntype.interfaces:
            interfacetype = self.ntype.interfaces[interfacetype]['type']
        if node_type:
            if self.node_template and self.node_template.custom_def \
               and interfacetype in self.node_template.custom_def:
                self.defs = self.node_template.custom_def[interfacetype]
            else:
                self.defs = self.TOSCA_DEF[interfacetype]
        if value:
            if isinstance(self.value, dict):
                for i, j in self.value.items():
                    if i == IMPLEMENTATION:
                        self.implementation = j
                    elif i == INPUTS:
                        self.inputs = j
                    else:
                        what = ('"interfaces" of template "%s"' %
                                self.node_template.name)
                        ValidationIssueCollector.appendException(
                            UnknownFieldError(what=what, field=i))
            else:
                self.implementation = value

    @property
    def lifecycle_ops(self):
        if self.defs:
            if self.type == LIFECYCLE:
                return self._ops()

    @property
    def configure_ops(self):
        if self.defs:
            if self.type == CONFIGURE:
                return self._ops()

    def _ops(self):
        ops = []
        for name in list(self.defs.keys()):
            ops.append(name)
        return ops
*/