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