3392b3cfa0675392ff0c4cfc061bfeabbbd4c979
[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 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 package org.onap.aai.sparky.autosuggestion.sync;
24
25 import org.onap.aai.sparky.config.oxm.OxmEntityLookup;
26 import org.onap.aai.sparky.config.oxm.SuggestionEntityLookup;
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 AutoSuggestionSyncController extends SyncControllerImpl implements SyncControllerRegistrar {
43
44   private SyncControllerRegistry syncControllerRegistry;
45     
46   public AutoSuggestionSyncController(SyncControllerConfig syncControllerConfig,
47       ActiveInventoryAdapter aaiAdapter, ElasticSearchAdapter esAdapter,
48       ElasticSearchSchemaConfig schemaConfig, ElasticSearchEndpointConfig endpointConfig,
49       NetworkStatisticsConfig aaiStatConfig, NetworkStatisticsConfig esStatConfig,
50       OxmEntityLookup oxmEntityLookup, SuggestionEntityLookup suggestionEntityLookup,
51       FiltersConfig filtersConfig) throws Exception {
52     super(syncControllerConfig);
53
54     // final String controllerName = "Auto Suggestion Synchronizer";
55
56     IndexIntegrityValidator autoSuggestionIndexValidator = new IndexIntegrityValidator(esAdapter,
57         schemaConfig, endpointConfig, ElasticSearchSchemaFactory.getIndexSchema(schemaConfig));
58
59     registerIndexValidator(autoSuggestionIndexValidator);
60
61     AutosuggestionSynchronizer suggestionSynchronizer = new AutosuggestionSynchronizer(schemaConfig,
62         syncControllerConfig.getNumInternalSyncWorkers(),
63         syncControllerConfig.getNumSyncActiveInventoryWorkers(),
64         syncControllerConfig.getNumSyncElasticWorkers(), aaiStatConfig, esStatConfig,
65         oxmEntityLookup, suggestionEntityLookup, filtersConfig);
66
67     suggestionSynchronizer.setAaiAdapter(aaiAdapter);
68     suggestionSynchronizer.setElasticSearchAdapter(esAdapter);
69
70     registerEntitySynchronizer(suggestionSynchronizer);
71
72     IndexCleaner autosuggestIndexCleaner =
73         new ElasticSearchIndexCleaner(esAdapter, endpointConfig, schemaConfig);
74
75     registerIndexCleaner(autosuggestIndexCleaner);
76
77   }
78
79   public SyncControllerRegistry getSyncControllerRegistry() {
80     return syncControllerRegistry;
81   }
82
83
84
85   public void setSyncControllerRegistry(SyncControllerRegistry syncControllerRegistry) {
86     this.syncControllerRegistry = syncControllerRegistry;
87   }
88
89
90
91   @Override
92   public void registerController() {
93
94     if ( syncControllerRegistry != null ) {
95       if ( syncControllerConfig.isEnabled()) { 
96         syncControllerRegistry.registerSyncController(this);
97       }
98     }
99     
100   }
101 }