aboutsummaryrefslogtreecommitdiffstats
path: root/ajsc-aai/src/main/java/org/openecomp/aai/ingestModel/CreateWidgetModels.java
blob: 62b325fdcea0384545fa0a93fed631b014a6dc91 (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
/*-
 * ============LICENSE_START=======================================================
 * org.openecomp.aai
 * ================================================================================
 * Copyright (C) 2017 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.openecomp.aai.ingestModel;

import java.io.File;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.util.ArrayList;
import java.util.Map;
import java.util.UUID;

import javax.xml.transform.stream.StreamSource;

import org.eclipse.persistence.dynamic.DynamicEntity;
import org.eclipse.persistence.jaxb.JAXBMarshaller;
import org.eclipse.persistence.jaxb.JAXBUnmarshaller;
import org.eclipse.persistence.jaxb.MarshallerProperties;
import org.eclipse.persistence.jaxb.dynamic.DynamicJAXBContext;
import org.openecomp.aai.domain.model.AAIResource;
import org.openecomp.aai.domain.model.AAIResources;
import org.openecomp.aai.logging.AAILogger;
import org.openecomp.aai.logging.LogLine;
import org.openecomp.aai.util.AAIConfig;
import org.openecomp.aai.util.AAIConstants;

import com.google.common.base.CaseFormat;

/**
 * The Class CreateWidgetModels.
 */
public class CreateWidgetModels
{

	AAILogger aaiLogger = new AAILogger(CreateWidgetModels.class.getName());
	
	LogLine logline = new LogLine();

	/**
	 * The main method.
	 *
	 * @param args the arguments
	 * @throws Exception the exception
	 */
	public static void main(String[] args) throws Exception {

		String _apiVersion = AAIConfig.get(AAIConstants.AAI_DEFAULT_API_VERSION_PROP);
		String widgetJsonDir = null;
		String modelVersion = null;
		if (args.length > 0) { 
			if (args[0] != null) {
				_apiVersion = args[0];
			}
			if (args[1] != null) { 
				widgetJsonDir = args[1];
			}
			if (args[2] != null) { 
				modelVersion = args[2];
			}
		}
		
		if (widgetJsonDir == null) { 
			System.err.println("You must specify a directory for widgetModelJson");
			System.exit(0);
		}
		if (modelVersion == null) { 
			System.err.println("You must specify a modelVersion");
			System.exit(0);
		}
		
		ArrayList<String> apiVersions = new ArrayList<String>();
		apiVersions.add(_apiVersion);
		final IngestModelMoxyOxm m = new IngestModelMoxyOxm();
		m.init(apiVersions, false);

		AAIResources aaiResources = IngestModelMoxyOxm.aaiResourceContainer.get(_apiVersion);
		
		DynamicJAXBContext jaxbContext = aaiResources.getJaxbContext();

		DynamicEntity meObject = jaxbContext.newDynamicEntity("inventory.aai.openecomp.org." + _apiVersion + ".Model");
		
		// iterate the collection of resources
		
		ArrayList<String> processedWidgets = new ArrayList<String>();
		 for (Map.Entry<String, AAIResource> aaiResEnt : aaiResources.getAaiResources().entrySet()) { 
			AAIResource aaiRes = aaiResEnt.getValue();
								
			if (aaiRes.getResourceType().equals("node")) {
				String resource = aaiRes.getSimpleName();
				
				if (processedWidgets.contains(resource)) {
					continue;
				}
				processedWidgets.add(resource);
				
				String widgetName = CaseFormat.UPPER_CAMEL.to(CaseFormat.LOWER_HYPHEN, resource);
				String filePathString = widgetJsonDir + "/" + widgetName + "-" + modelVersion + ".json";
				File f = new File(filePathString);
				
				String filePathString2 = widgetJsonDir + "/../widget-model-json-old/" + widgetName + "-" + modelVersion + ".json";
				File f2 = new File(filePathString2);
				
				if(!f.exists() && !f.isDirectory()) { 
				
					if (f2.exists()) { 
						System.out.println("Using old file for " + resource + ".");

						JAXBUnmarshaller unmarshaller = jaxbContext.createUnmarshaller();
						unmarshaller.setProperty("eclipselink.media-type", "application/json");
						unmarshaller.setProperty("eclipselink.json.include-root", false);
						Class<? extends DynamicEntity> resultClass = meObject.getClass();
						meObject = (DynamicEntity) unmarshaller.unmarshal(new StreamSource(f2), resultClass).getValue();
						// override, some of them are wrong
						meObject.set("modelVersion", modelVersion);
					} else { 
						
						System.out.println("Making new file for " + resource + ".");
						meObject.set("modelId", UUID.randomUUID().toString());
						meObject.set("modelNameVersionId", UUID.randomUUID().toString());
						meObject.set("modelVersion", modelVersion);
						meObject.set("modelType", "widget");
						meObject.set("modelName", widgetName);
					}
					// put it out as JSON

					JAXBMarshaller marshaller = jaxbContext.createMarshaller();
					marshaller.setProperty(JAXBMarshaller.JAXB_FORMATTED_OUTPUT, true);

					marshaller.setProperty("eclipselink.media-type", "application/json");
					marshaller.setProperty("eclipselink.json.include-root", false);
					marshaller.setProperty(MarshallerProperties.JSON_MARSHAL_EMPTY_COLLECTIONS, Boolean.FALSE) ;

					StringWriter writer = new StringWriter();
					marshaller.marshal(meObject, writer);
					PrintWriter out = new PrintWriter(f);
					out.println(writer.toString());
					out.close();

				} else { 
					System.out.println("File already exists for " + resource + ".  Skipping.");
				}
			}
		}
		System.exit(0);
	}

}