AAI-1523 Batch reformat aai-core
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / introspection / sideeffect / SideEffectRunnerHelper.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.introspection.sideeffect;
22
23 import java.io.UnsupportedEncodingException;
24 import java.lang.reflect.InvocationTargetException;
25 import java.net.URISyntaxException;
26 import java.util.List;
27 import java.util.Set;
28
29 import org.onap.aai.exceptions.AAIException;
30 import org.onap.aai.introspection.Introspector;
31 import org.onap.aai.introspection.Wanderer;
32 import org.onap.aai.serialization.db.DBSerializer;
33 import org.onap.aai.serialization.engines.TransactionalGraphEngine;
34
35 class SideEffectRunnerHelper implements Wanderer {
36
37     protected final TransactionalGraphEngine dbEngine;
38     protected final DBSerializer serializer;
39     protected final Set<Class<? extends SideEffect>> sideEffects;
40
41     protected SideEffectRunnerHelper(final TransactionalGraphEngine dbEngine, final DBSerializer serializer,
42             final Set<Class<? extends SideEffect>> sideEffects) {
43         this.dbEngine = dbEngine;
44         this.serializer = serializer;
45         this.sideEffects = sideEffects;
46     }
47
48     private void runSideEffects(Introspector obj) throws AAIException {
49         for (Class<? extends SideEffect> se : sideEffects) {
50             try {
51                 se.getConstructor(Introspector.class, TransactionalGraphEngine.class, DBSerializer.class)
52                         .newInstance(obj, dbEngine, serializer).execute();
53             } catch (UnsupportedEncodingException | InstantiationException | IllegalAccessException
54                     | IllegalArgumentException | InvocationTargetException | NoSuchMethodException | SecurityException
55                     | URISyntaxException e) {
56                 throw new AAIException("strange exception", e);
57             }
58         }
59     }
60
61     @Override
62     public void processPrimitive(String propName, Introspector obj) {
63         // TODO Auto-generated method stub
64
65     }
66
67     @Override
68     public void processPrimitiveList(String propName, Introspector obj) {
69         // TODO Auto-generated method stub
70
71     }
72
73     @Override
74     public void processComplexObj(Introspector obj) throws AAIException {
75
76         runSideEffects(obj);
77
78     }
79
80     @Override
81     public void modifyComplexList(List<Introspector> list, List<Object> listReference, Introspector parent,
82             Introspector child) {
83         // TODO Auto-generated method stub
84
85     }
86
87 }