Adding UI extensibility
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / aggregation / sync / HistoricalEntitySyncController.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.aggregation.sync;
24
25 import org.onap.aai.sparky.dal.ActiveInventoryAdapter;
26 import org.onap.aai.sparky.dal.ElasticSearchAdapter;
27 import org.onap.aai.sparky.sync.ElasticSearchSchemaFactory;
28 import org.onap.aai.sparky.sync.IndexIntegrityValidator;
29 import org.onap.aai.sparky.sync.SyncControllerImpl;
30 import org.onap.aai.sparky.sync.SyncControllerRegistrar;
31 import org.onap.aai.sparky.sync.SyncControllerRegistry;
32 import org.onap.aai.sparky.sync.config.ElasticSearchEndpointConfig;
33 import org.onap.aai.sparky.sync.config.ElasticSearchSchemaConfig;
34 import org.onap.aai.sparky.sync.config.NetworkStatisticsConfig;
35 import org.onap.aai.sparky.sync.config.SyncControllerConfig;
36
37 public class HistoricalEntitySyncController extends SyncControllerImpl
38     implements SyncControllerRegistrar {
39
40   private SyncControllerRegistry syncControllerRegistry;
41
42   public HistoricalEntitySyncController(SyncControllerConfig syncControllerConfig,
43       ActiveInventoryAdapter aaiAdapter, ElasticSearchAdapter esAdapter,
44       ElasticSearchSchemaConfig schemaConfig, ElasticSearchEndpointConfig endpointConfig,
45       int syncFrequencyInMinutes, NetworkStatisticsConfig aaiStatConfig,
46       NetworkStatisticsConfig esStatConfig) throws Exception {
47     super(syncControllerConfig);
48
49     // final String controllerName = "Historical Entity Count Synchronizer";
50
51     long taskFrequencyInMs = syncFrequencyInMinutes * 60 * 1000;
52
53     setDelayInMs(taskFrequencyInMs);
54     setSyncFrequencyInMs(taskFrequencyInMs);
55
56     IndexIntegrityValidator entityCounterHistoryValidator = new IndexIntegrityValidator(esAdapter,
57         schemaConfig, endpointConfig, ElasticSearchSchemaFactory.getIndexSchema(schemaConfig));
58
59     registerIndexValidator(entityCounterHistoryValidator);
60
61     HistoricalEntitySummarizer historicalSummarizer = new HistoricalEntitySummarizer(schemaConfig,
62         syncControllerConfig.getNumInternalSyncWorkers(),
63         syncControllerConfig.getNumSyncActiveInventoryWorkers(),
64         syncControllerConfig.getNumSyncElasticWorkers(), aaiStatConfig, esStatConfig);
65
66     historicalSummarizer.setAaiAdapter(aaiAdapter);
67     historicalSummarizer.setElasticSearchAdapter(esAdapter);
68
69     registerEntitySynchronizer(historicalSummarizer);
70
71   }
72
73   public SyncControllerRegistry getSyncControllerRegistry() {
74     return syncControllerRegistry;
75   }
76
77   public void setSyncControllerRegistry(SyncControllerRegistry syncControllerRegistry) {
78     this.syncControllerRegistry = syncControllerRegistry;
79   }
80
81   @Override
82   public void registerController() {
83     if (syncControllerRegistry != null) {
84       if (syncControllerConfig.isEnabled()) {
85         syncControllerRegistry.registerSyncController(this);
86       }
87     }
88
89   }
90 }