Merge "Remove duplicated code"
[aai/sparky-be.git] / sparkybe-onap-service / src / main / java / org / onap / aai / sparky / aggregation / sync / HistoricalEntitySyncController.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.aggregation.sync;
22
23 import org.onap.aai.sparky.config.oxm.SearchableEntityLookup;
24 import org.onap.aai.sparky.dal.ActiveInventoryAdapter;
25 import org.onap.aai.sparky.dal.ElasticSearchAdapter;
26 import org.onap.aai.sparky.sync.ElasticSearchSchemaFactory;
27 import org.onap.aai.sparky.sync.IndexIntegrityValidator;
28 import org.onap.aai.sparky.sync.SyncControllerImpl;
29 import org.onap.aai.sparky.sync.SyncControllerRegistrar;
30 import org.onap.aai.sparky.sync.SyncControllerRegistry;
31 import org.onap.aai.sparky.sync.config.ElasticSearchEndpointConfig;
32 import org.onap.aai.sparky.sync.config.ElasticSearchSchemaConfig;
33 import org.onap.aai.sparky.sync.config.NetworkStatisticsConfig;
34 import org.onap.aai.sparky.sync.config.SyncControllerConfig;
35
36 import java.util.concurrent.TimeUnit;
37
38 public class HistoricalEntitySyncController extends SyncControllerImpl
39     implements SyncControllerRegistrar {
40
41   private SyncControllerRegistry syncControllerRegistry;
42
43   public HistoricalEntitySyncController(SyncControllerConfig syncControllerConfig,
44       ActiveInventoryAdapter aaiAdapter, ElasticSearchAdapter esAdapter,
45       ElasticSearchSchemaConfig schemaConfig, ElasticSearchEndpointConfig endpointConfig,
46       int syncFrequencyInMinutes, NetworkStatisticsConfig aaiStatConfig,
47       NetworkStatisticsConfig esStatConfig, SearchableEntityLookup searchableEntityLookup,
48       ElasticSearchSchemaFactory elasticSearchSchemaFactory) throws Exception {
49     super(syncControllerConfig);
50
51     // final String controllerName = "Historical Entity Count Synchronizer";
52
53     long taskFrequencyInMs = getTaskFrequencyInMs(syncFrequencyInMinutes);
54
55     setDelayInMs(taskFrequencyInMs);
56     setSyncFrequencyInMs(taskFrequencyInMs);
57
58     IndexIntegrityValidator entityCounterHistoryValidator = new IndexIntegrityValidator(esAdapter,
59         schemaConfig, endpointConfig, elasticSearchSchemaFactory.getIndexSchema(schemaConfig));
60
61     registerIndexValidator(entityCounterHistoryValidator);
62
63     HistoricalEntitySummarizer historicalSummarizer = new HistoricalEntitySummarizer(schemaConfig,
64         syncControllerConfig.getNumInternalSyncWorkers(),
65         syncControllerConfig.getNumSyncActiveInventoryWorkers(),
66         syncControllerConfig.getNumSyncElasticWorkers(),aaiStatConfig, esStatConfig,searchableEntityLookup);
67
68     historicalSummarizer.setAaiAdapter(aaiAdapter);
69     historicalSummarizer.setElasticSearchAdapter(esAdapter);
70
71     registerEntitySynchronizer(historicalSummarizer);
72
73   }
74
75   static long getTaskFrequencyInMs(int syncFrequencyInMinutes) {
76     return TimeUnit.MINUTES.toMillis(Integer.toUnsignedLong(syncFrequencyInMinutes));
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     if ( syncControllerRegistry != null ) {
90       if ( syncControllerConfig.isEnabled()) { 
91         syncControllerRegistry.registerSyncController(this);
92       }
93     }
94
95   }
96 }