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