aboutsummaryrefslogtreecommitdiffstats
path: root/appc-client/code-generator/src/main/resources/templates/open-api/yang-to-open-api.ftl
blob: e92ee3b055b34f1ef0c320d17edb7c6c4adbb1f2 (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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
<#--
 ============LICENSE_START=======================================================
 ONAP : APPC
 ================================================================================
 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 ================================================================================
 Copyright (C) 2017 Amdocs
 =============================================================================
 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.
 
 ECOMP is a trademark and service mark of AT&T Intellectual Property.
 ============LICENSE_END=========================================================
-->
<#setting number_format="computer">
<#global _ = "    ">
<#global __ = _ + _>
<#global ___ = __ + _>
<#global ____ = ___ + _>
<#global _____ = ____ + _>
<#global ______ = _____ + _>
<#global _______ = ______ + _>
<#global ________ = _______ + _>
<#global _________ = ________ + _>
<#global __________ = _________ + _>
<#--
=================================================================
    Function definitions
=================================================================
-->
<#function toCamelNotation text>
    <#local temp = text?upper_case>
    <#-- Preserve abbreviations (e.g. UUID) - only replace hyphens with underscores, if any -->
    <#if text == temp>
        <#return temp?replace("-", "_ ")>
    <#else>
        <#return text?replace("-", " ")?capitalize?replace(" ", "")>
    </#if>
</#function>
<#function toRpcInput rpcName>
    <#return toCamelNotation(rpcName) + "Input">
</#function>
<#function toRpcOutput rpcName>
    <#return toCamelNotation(rpcName) + "Output">
</#function>
<#function toJsonType type>
    <#if type == "string" || type == "enumeration">
        <#return "string">
    <#elseif type == "uint16" || type == "uint32">
        <#return "integer">
    <#elseif type == "boolean">
         <#return "boolean">
    <#else>
        <#stop "UNSUPPORTED TYPE - ${type}">
    </#if>
</#function>
<#function encode text>
    <#local temp = text?replace('(\r|\n)+', '', 'r')?replace('( )+', ' ', 'rm')>
    <#return temp>
</#function>
<#--
  Similar to Java's Class.isAssignableFrom(Class)
-->
<#function isAssignableFrom class typeName>
    <#list class.interfaces as interfaceClass>
        <#if interfaceClass.name == typeName || isAssignableFrom(interfaceClass, typeName)>
            <#return true>
        </#if>
    </#list>
    <#return false>
</#function>
<#function isContainerNode node>
    <#return isAssignableFrom(node.class, "org.opendaylight.yangtools.yang.model.api.DataNodeContainer")>
</#function>
<#function isLeafNode node>
    <#return isAssignableFrom(node.class, "org.opendaylight.yangtools.yang.model.api.LeafSchemaNode")>
</#function>
<#function isEnumType type>
    <#return isAssignableFrom(type.class, "org.opendaylight.yangtools.yang.model.api.type.EnumTypeDefinition")>
</#function>
<#function isStringType type>
    <#return isAssignableFrom(type.class, "org.opendaylight.yangtools.yang.model.api.type.StringTypeDefinition")>
</#function>
<#function isExtendedType type>
    <#if type.baseType??>
        <#return true>
    </#if>
    <#return false>
</#function>
<#function isGlobalTypeDef obj>
    <#list module.typeDefinitions as typeDef>
        <#if typeDef.QName.localName == obj.type.QName.localName>
            <#return true>
        </#if>
    </#list>
    <#return false>
</#function>
<#function getMandatoryProperties obj>
    <#local result = {}>
    <#list obj.childNodes as property>
        <#if property.constraints.mandatory>
            <#local result = result + {property.QName.localName : ""}>
        </#if>
    </#list>
    <#return result>
</#function>
<#function gatherModuleTypes module>
    <#local result = {}>
    <#list module.rpcs as rpc>
        <#local result = gatherNestedTypes(rpc.input, result)>
        <#local result = gatherNestedTypes(rpc.output, result)>
    </#list>
    <#return result>
</#function>
<#function gatherNestedTypes container result>
    <#list container.childNodes as property>
        <#if isContainerNode(property)>
            <#local name = property.QName.localName>
            <#if !result[name]??>
                <#local result = result + {name : property}>
                <#local result = gatherNestedTypes(property, result)>
            </#if>
        </#if>
    </#list>
    <#return result>
</#function>
<#--
=================================================================
    Macro definitions
=================================================================
-->
<#-- 
    Macro to generate description property, if any.
-->
<#macro description obj indent = "">
<#if obj.description??>
${indent},
${indent}"description" : "${encode(obj.description)}"<#else>${indent}</#if>
</#macro>
<#--
    Macro to generate enum of valid values
-->
<#macro enum yangType indent = "">
<#if isEnumType(yangType)>
${indent},
${indent}"enum" : [
${indent}${_}<#list yangType.values as enum>"${enum.name}"<#if enum?has_next>, </#if></#list>
${indent}]
</#if>
</#macro>
<#--
    Macro to print out schema constraints (min/max/pattern/etc.) if any. Used for custom types defined either globaly via 'typedef'
    statement or locally (in-line withing a leaf node definition).
 -->
<#macro constraints yangType indent = "">
<#if yangType.patternConstraints?has_content>
${indent},
${indent}"pattern" : "${yangType.patternConstraints?first.regularExpression?replace('\\\\', '\\\\\\\\', 'r')}"
</#if>
<#if yangType.lengthConstraints?has_content>
${indent},
${indent}"minLength" : ${yangType.lengthConstraints?first.min},
${indent}"maxLength"  : ${yangType.lengthConstraints?first.max}
</#if>
<@enum yangType = yangType.baseType indent = indent />
</#macro>
<#--
    Macro to generate a property within an outer object
 -->
<#macro property name prop indent = "">
${indent}"${name}": {
<#if isContainerNode(prop)>
${indent}${_}"$ref" : "#/definitions/${toCamelNotation(prop.QName.localName)}"
<#elseif isExtendedType(prop.type) && isGlobalTypeDef(prop)>
${indent}${_}"$ref" : "#/definitions/${toCamelNotation(prop.type.QName.localName)}"
<#elseif isExtendedType(prop.type)>
${indent}${_}"type" : "${toJsonType(prop.type.QName.localName)}"
<@description obj = prop indent = indent + _ />
<@constraints yangType = prop.type indent = indent + _ />
<#else><#--  leaf node -->
${indent}${_}"type" : "${toJsonType(prop.type.QName.localName)}"
<@description obj = prop indent = indent + _ />
<@enum yangType = prop.type indent = indent + _ />
</#if>
${indent}}</#macro>
<#--
    Macro generates declaration of a container node modeled in YANG schema
-->
<#macro container name node indent = "">
${indent}"${name}" : {
${indent}${_}"type" : "object"
<@description obj = node indent = indent + _ />
${indent}${_},
${indent}${_}"properties" : {
<#list node.childNodes as child>
<@property name = child.QName.localName prop = child indent = indent + __ /><#if child?has_next>,</#if>
</#list>
${indent}${_}}<#--  end of properties -->
<#local mandatoryProperties = getMandatoryProperties(node)>
<#if mandatoryProperties?size != 0>
,
${indent}${_}"required" : [<#list mandatoryProperties?keys as p>"${p}"<#if p?has_next> ,</#if></#list>]
</#if>
${indent}}<#--  end of container -->
</#macro>
<#--
    Macro generates declaration of JSON object for a custom type defined in YANG schema via 'typedef' statement.
-->
<#macro typedef name yangType indent = "">
${indent}"${name}" : {
<#local jsonType = toJsonType(yangType.baseType.QName.localName)>
${indent}${_}"type" : "${jsonType}"
<@description obj = yangType indent = indent + _ />
<@constraints yangType = yangType indent = indent + _ />
${indent}}<#--  end of container -->
</#macro>
<#--
=================================================================
    Content body
=================================================================
-->
<#assign moduleName = module.name>
{
${_}"swagger": "2.0",
${_}"info": {
${__}"version": "${module.QNameModule.formattedRevision}"
<@description obj = module indent = __ />,
<#if module.contact??>
${__}"contact": {
${_____}"name" : "${module.contact}"
${__}},
</#if>

${__}"title": "${moduleName}"
${_}},
${_}"basePath": "/restconf",
${_}"tags": [{"name": "${moduleName}"}],
${_}"schemes": [ "https", "http" ],
${_}"paths": {
<#list module.rpcs as rpc>
<#assign rpcName = rpc.QName.localName>
${__}"/operations/${moduleName}:${rpcName}": {
${___}"post": {
${____}"tags": ["${moduleName}"],
${____}"summary": ""
<@description obj = rpc indent = ____ />,
${____}"operationId": "${rpcName}",
${____}"consumes": ["application/json"],
${____}"produces": ["application/json"],
${____}"parameters": [{
${_____}"in": "body",
${_____}"name": "input",
${_____}"required": true,
${_____}"schema": {
${______}"type" : "object",
${______}"properties" : {
${_______}"input" : {
${________}"$ref": "#/definitions/${toRpcInput(rpcName)}"
${_______}}
${______}}
${_____}}
${____}}],
${____}"responses": {
${_____}"200": {
${______}"description": "Successful operation",
${______}"schema": {
${_______}"type" : "object",
${_______}"properties" : {
${________}"output" : {
${_________}"$ref": "#/definitions/${toRpcOutput(rpcName)}"
${________}}
${_______}}
${______}}
${_____}},
${_____}"401": {"description" : "Unauthorized"},
${_____}"500": {"description" : "Internal server error"}
${____}}
${___}}
${__}}<#if rpc?has_next>,</#if>
</#list>
${_}},
${_}"definitions": {
<#--
    Definition per custom type defined via 'typedef'
-->
<#list module.typeDefinitions as typeDef>
<@typedef name = toCamelNotation(typeDef.QName.localName) yangType = typeDef indent = __ />
<#if typeDef?has_next>${__},</#if>
</#list>
<#--
    Definition per container explicitly defined in YANG schema
-->
<#assign definitions = gatherModuleTypes(module)>
<#if module.typeDefinitions?size != 0 && definitions?size != 0>${__},</#if>
<#list definitions?keys as definition>
<@container name = toCamelNotation(definition) node = definitions[definition] indent = __ /><#if definition?has_next>${__},</#if>
</#list>
<#if definitions?size != 0 && module.rpcs?size != 0>${__},</#if>
<#--
    Definition per PRC input/output parameter block implicitly defined in YANG schema
-->
<#list module.rpcs as rpc>
<#assign rpcName = rpc.QName.localName>
<@container name = toRpcInput(rpcName) node = rpc.input indent = __ />${__},
<@container name = toRpcOutput(rpcName) node = rpc.output indent = __ /><#if rpc?has_next>${__},</#if>
</#list>
${_}}<#-- end of "definitions" -->
} <#--  end of file  -->