Update license and poms
[aai/sparky-be.git] / sparkybe-onap-service / src / main / java / org / onap / aai / sparky / autosuggestion / sync / VnfAliasSyncController.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.autosuggestion.sync;
22
23 import org.onap.aai.sparky.dal.ActiveInventoryAdapter;
24 import org.onap.aai.sparky.dal.ElasticSearchAdapter;
25 import org.onap.aai.sparky.search.filters.config.FiltersConfig;
26 import org.onap.aai.sparky.sync.ElasticSearchIndexCleaner;
27 import org.onap.aai.sparky.sync.ElasticSearchSchemaFactory;
28 import org.onap.aai.sparky.sync.IndexCleaner;
29 import org.onap.aai.sparky.sync.IndexIntegrityValidator;
30 import org.onap.aai.sparky.sync.SyncControllerImpl;
31 import org.onap.aai.sparky.sync.SyncControllerRegistrar;
32 import org.onap.aai.sparky.sync.SyncControllerRegistry;
33 import org.onap.aai.sparky.sync.config.ElasticSearchEndpointConfig;
34 import org.onap.aai.sparky.sync.config.ElasticSearchSchemaConfig;
35 import org.onap.aai.sparky.sync.config.NetworkStatisticsConfig;
36 import org.onap.aai.sparky.sync.config.SyncControllerConfig;
37
38 public class VnfAliasSyncController extends SyncControllerImpl implements SyncControllerRegistrar {
39
40   private SyncControllerRegistry syncControllerRegistry;
41   
42   public VnfAliasSyncController(SyncControllerConfig syncControllerConfig,
43       ActiveInventoryAdapter aaiAdapter, ElasticSearchAdapter esAdapter,
44       ElasticSearchSchemaConfig schemaConfig, ElasticSearchEndpointConfig endpointConfig,
45       NetworkStatisticsConfig aaiStatConfig, NetworkStatisticsConfig esStatConfig,
46       FiltersConfig filtersConfig,
47       ElasticSearchSchemaFactory elasticSearchSchemaFactory) throws Exception {
48     super(syncControllerConfig);
49     
50     // final String controllerName = "VNFs Alias Suggestion Synchronizer";
51
52     IndexIntegrityValidator indexValidator = new IndexIntegrityValidator(esAdapter, schemaConfig,
53         endpointConfig, elasticSearchSchemaFactory.getIndexSchema(schemaConfig));
54
55     registerIndexValidator(indexValidator);
56
57     VnfAliasSuggestionSynchronizer synchronizer = new VnfAliasSuggestionSynchronizer(schemaConfig,
58         syncControllerConfig.getNumInternalSyncWorkers(),
59         syncControllerConfig.getNumSyncActiveInventoryWorkers(),
60         syncControllerConfig.getNumSyncElasticWorkers(), aaiStatConfig, esStatConfig, filtersConfig);
61
62     synchronizer.setAaiAdapter(aaiAdapter);
63     synchronizer.setElasticSearchAdapter(esAdapter);
64
65     registerEntitySynchronizer(synchronizer);
66
67
68     IndexCleaner indexCleaner =
69         new ElasticSearchIndexCleaner(esAdapter, endpointConfig, schemaConfig);
70
71     registerIndexCleaner(indexCleaner);
72
73   }
74
75   public SyncControllerRegistry getSyncControllerRegistry() {
76     return syncControllerRegistry;
77   }
78
79   public void setSyncControllerRegistry(SyncControllerRegistry syncControllerRegistry) {
80     this.syncControllerRegistry = syncControllerRegistry;
81   }
82
83   @Override
84   public void registerController() {
85     
86     if ( syncControllerRegistry != null ) {
87       if ( syncControllerConfig.isEnabled()) { 
88         syncControllerRegistry.registerSyncController(this);
89       }
90     }
91     
92   }
93   
94   
95 }