Merge "Remove duplicated code"
[aai/sparky-be.git] / sparkybe-onap-service / src / main / java / org / onap / aai / sparky / topology / sync / GeoSyncController.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.sparky.topology.sync;
22
23 import org.onap.aai.sparky.config.oxm.GeoEntityLookup;
24 import org.onap.aai.sparky.config.oxm.OxmEntityLookup;
25 import org.onap.aai.sparky.dal.ActiveInventoryAdapter;
26 import org.onap.aai.sparky.dal.ElasticSearchAdapter;
27 import org.onap.aai.sparky.sync.ElasticSearchIndexCleaner;
28 import org.onap.aai.sparky.sync.ElasticSearchSchemaFactory;
29 import org.onap.aai.sparky.sync.IndexCleaner;
30 import org.onap.aai.sparky.sync.IndexIntegrityValidator;
31 import org.onap.aai.sparky.sync.SyncControllerImpl;
32 import org.onap.aai.sparky.sync.SyncControllerRegistrar;
33 import org.onap.aai.sparky.sync.SyncControllerRegistry;
34 import org.onap.aai.sparky.sync.config.ElasticSearchEndpointConfig;
35 import org.onap.aai.sparky.sync.config.ElasticSearchSchemaConfig;
36 import org.onap.aai.sparky.sync.config.NetworkStatisticsConfig;
37 import org.onap.aai.sparky.sync.config.SyncControllerConfig;
38
39 public class GeoSyncController extends SyncControllerImpl implements SyncControllerRegistrar {
40
41   private SyncControllerRegistry syncControllerRegistry;
42
43   public GeoSyncController(SyncControllerConfig syncControllerConfig,
44       ActiveInventoryAdapter aaiAdapter, ElasticSearchAdapter esAdapter,
45       ElasticSearchSchemaConfig schemaConfig, ElasticSearchEndpointConfig endpointConfig,
46       NetworkStatisticsConfig aaiStatConfig, NetworkStatisticsConfig esStatConfig,
47       GeoEntityLookup geoEntityLookup, OxmEntityLookup oxmEntityLookup,
48       ElasticSearchSchemaFactory elasticSearchSchemaFactory) throws Exception {
49     super(syncControllerConfig);
50
51     // final String controllerName = "Inventory Geo Synchronizer";
52     
53     IndexIntegrityValidator indexValidator = new IndexIntegrityValidator(esAdapter, schemaConfig,
54         endpointConfig, elasticSearchSchemaFactory.getIndexSchema(schemaConfig));
55
56     registerIndexValidator(indexValidator);
57
58     GeoSynchronizer synchronizer =
59         new GeoSynchronizer(schemaConfig, syncControllerConfig.getNumInternalSyncWorkers(),
60             syncControllerConfig.getNumSyncActiveInventoryWorkers(),
61             syncControllerConfig.getNumSyncElasticWorkers(), aaiStatConfig, esStatConfig,
62             geoEntityLookup, oxmEntityLookup);
63
64     synchronizer.setAaiAdapter(aaiAdapter);
65     synchronizer.setElasticSearchAdapter(esAdapter);
66
67     registerEntitySynchronizer(synchronizer);
68
69
70     IndexCleaner indexCleaner =
71         new ElasticSearchIndexCleaner(esAdapter, endpointConfig, schemaConfig);
72
73     registerIndexCleaner(indexCleaner);
74
75   }
76
77   public SyncControllerRegistry getSyncControllerRegistry() {
78     return syncControllerRegistry;
79   }
80
81   public void setSyncControllerRegistry(SyncControllerRegistry syncControllerRegistry) {
82     this.syncControllerRegistry = syncControllerRegistry;
83   }
84
85   @Override
86   public void registerController() {
87
88     if ( syncControllerRegistry != null ) {
89       if ( syncControllerConfig.isEnabled()) { 
90         syncControllerRegistry.registerSyncController(this);
91       }
92     }
93   }
94
95
96
97 }