1d66a8a58a5b80802dccd84a658001033e13821c
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / ingestModel / CreateWidgetModels.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *    http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.aai.ingestModel;
22
23 import java.io.File;
24 import java.io.PrintWriter;
25 import java.util.ArrayList;
26 import java.util.List;
27 import java.util.Map.Entry;
28 import java.util.Set;
29 import java.util.UUID;
30
31 import javax.xml.transform.stream.StreamSource;
32
33 import org.onap.aai.introspection.Introspector;
34 import org.onap.aai.introspection.Loader;
35 import org.onap.aai.introspection.LoaderFactory;
36 import org.onap.aai.introspection.ModelType;
37 import org.onap.aai.setup.SchemaVersion;
38 import org.onap.aai.util.AAIConfig;
39 import org.onap.aai.util.AAIConstants;
40 import org.springframework.context.annotation.AnnotationConfigApplicationContext;
41
42 /**
43  * The Class CreateWidgetModels.
44  */
45 public class CreateWidgetModels {
46     /**
47      * The main method.
48      *
49      * @param args the arguments
50      * @throws Exception the exception
51      */
52     public static void main(String[] args) throws Exception {
53
54         String _apiVersion = AAIConfig.get(AAIConstants.AAI_DEFAULT_API_VERSION_PROP);
55         String widgetJsonDir = null;
56         String modelVersion = null;
57         if (args.length > 0) {
58             if (args[0] != null) {
59                 _apiVersion = args[0];
60             }
61             if (args[1] != null) {
62                 widgetJsonDir = args[1];
63             }
64             if (args[2] != null) {
65                 modelVersion = args[2];
66             }
67         }
68
69         if (widgetJsonDir == null) {
70             System.err.println("You must specify a directory for widgetModelJson");
71             System.exit(0);
72         }
73         if (modelVersion == null) {
74             System.err.println("You must specify a modelVersion");
75             System.exit(0);
76         }
77
78         AnnotationConfigApplicationContext ctx =
79                 new AnnotationConfigApplicationContext("org.onap.aai.config", "org.onap.aai.setup");
80
81         LoaderFactory loaderFactory = ctx.getBean(LoaderFactory.class);
82         Loader loader = loaderFactory.createLoaderForVersion(ModelType.MOXY, new SchemaVersion(_apiVersion));
83
84         // iterate the collection of resources
85
86         ArrayList<String> processedWidgets = new ArrayList<String>();
87         for (Entry<String, Introspector> aaiResEnt : loader.getAllObjects().entrySet()) {
88             Introspector meObject = loader.introspectorFromName("model");
89             // no need for a ModelVers DynamicEntity
90
91             Introspector aaiRes = aaiResEnt.getValue();
92
93             if (!(aaiRes.isContainer() || aaiRes.getName().equals("aai-internal"))) {
94                 String resource = aaiRes.getName();
95
96                 if (processedWidgets.contains(resource)) {
97                     continue;
98                 }
99
100                 Set<String> introspectorProperties = aaiRes.getProperties();
101
102                 if (!(introspectorProperties.contains("model-version-id")
103                         && introspectorProperties.contains("model-invariant-id"))) {
104                     System.out.println(aaiRes.getDbName() + " does not contain model properties so skipping");
105                 }
106                 processedWidgets.add(resource);
107
108                 String widgetName = resource;
109                 String filePathString = widgetJsonDir + "/" + widgetName + "-" + modelVersion + ".json";
110                 File f = new File(filePathString);
111
112                 String filePathString2 =
113                         widgetJsonDir + "/../widget-model-json-old/" + widgetName + "-" + modelVersion + ".json";
114                 File f2 = new File(filePathString2);
115
116                 if (!f.exists() && !f.isDirectory()) {
117
118                     if (f2.exists()) {
119                         System.out.println("Using old file for " + resource + ".");
120
121                         meObject = loader.unmarshal("model", new StreamSource(f2).getReader().toString());
122                         // override, some of them are wrong
123                         meObject.setValue("model-version", modelVersion);
124                     } else {
125                         System.out.println("Making new file for " + resource + ".");
126                         meObject.setValue("model-invariant-id", UUID.randomUUID().toString());
127                         meObject.setValue("model-type", "widget");
128                         Introspector mevObject = loader.introspectorFromName("model-ver");
129                         Introspector mevsObject = loader.introspectorFromName("model-vers");
130                         mevObject.setValue("model-version-id", UUID.randomUUID().toString());
131                         mevObject.setValue("model-version", modelVersion);
132                         mevObject.setValue("model-Name", widgetName);
133                         // make a list of dynamic Entities
134                         List<Object> mevsList = new ArrayList<>();
135                         // add this one, it will be the only one in the list in this case
136                         mevsList.add(mevObject.getUnderlyingObject());
137                         mevsObject.setValue("model-ver", mevsList);
138                         // Have to figure out how to add my mev object to the mevsObject,
139                         // the modelVers is a list of dynamic entities so we can just attach the array here
140                         meObject.setValue("model-vers", mevsObject.getUnderlyingObject());
141                     }
142
143                     // put it out as JSON
144
145                     PrintWriter out = new PrintWriter(f);
146                     out.println(meObject.marshal(true));
147                     out.close();
148
149                 } else {
150                     System.out.println("File already exists for " + resource + ".  Skipping.");
151                 }
152             }
153         }
154         System.exit(0);
155     }
156 }