bb7015e0176737b6544adbc9aea6f9bc72fbbf4f
[honeycomb.git] /
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package io.fd.honeycomb.infra.distro.initializer
18
19 import com.google.inject.Inject
20 import groovy.transform.ToString
21 import groovy.util.logging.Slf4j
22
23 import io.fd.honeycomb.data.init.RestoringInitializer
24 import io.fd.honeycomb.infra.distro.ProviderTrait
25 import io.fd.honeycomb.infra.distro.cfgattrs.HoneycombConfiguration
26 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType
27 import org.opendaylight.controller.md.sal.dom.api.DOMDataBroker
28 import org.opendaylight.controller.sal.core.api.model.SchemaService
29
30 import java.nio.file.Paths
31
32 @Slf4j
33 @ToString
34 abstract class PersistedFileInitializerProvider extends ProviderTrait<RestoringInitializer> {
35
36     @Inject
37     SchemaService schemaService
38     @Inject
39     HoneycombConfiguration cfgAttributes
40
41     @Inject
42     DOMDataBroker domDataBroker
43
44     @Override
45     def create() {
46         new RestoringInitializer(schemaService, Paths.get(getPersistPath()),
47                 domDataBroker, RestoringInitializer.RestorationType.valueOf(restorationType), getDataStoreType())
48     }
49
50     abstract String getPersistPath()
51     abstract LogicalDatastoreType getDataStoreType()
52     abstract String getRestorationType()
53
54     static class PersistedContextInitializerProvider extends PersistedFileInitializerProvider {
55         String getPersistPath() { cfgAttributes.peristContextPath }
56         LogicalDatastoreType getDataStoreType() { LogicalDatastoreType.OPERATIONAL }
57         String getRestorationType() { cfgAttributes.persistedContextRestorationType }
58     }
59
60     static class PersistedConfigInitializerProvider extends PersistedFileInitializerProvider {
61         String getPersistPath() { cfgAttributes.peristConfigPath }
62         LogicalDatastoreType getDataStoreType() { LogicalDatastoreType.CONFIGURATION }
63         String getRestorationType() { cfgAttributes.persistedConfigRestorationType }
64     }
65 }