2 * Copyright (c) 2016 Cisco and/or its affiliates.
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:
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package io.fd.honeycomb.infra.distro.initializer
19 import com.google.inject.Inject
20 import groovy.transform.ToString
21 import groovy.util.logging.Slf4j
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
30 import java.nio.file.Paths
34 abstract class PersistedFileInitializerProvider extends ProviderTrait<RestoringInitializer> {
37 SchemaService schemaService
39 HoneycombConfiguration cfgAttributes
42 DOMDataBroker domDataBroker
46 new RestoringInitializer(schemaService, Paths.get(getPersistPath()),
47 domDataBroker, RestoringInitializer.RestorationType.valueOf(restorationType), getDataStoreType())
50 abstract String getPersistPath()
51 abstract LogicalDatastoreType getDataStoreType()
52 abstract String getRestorationType()
54 static class PersistedContextInitializerProvider extends PersistedFileInitializerProvider {
55 String getPersistPath() { cfgAttributes.peristContextPath }
56 LogicalDatastoreType getDataStoreType() { LogicalDatastoreType.OPERATIONAL }
57 String getRestorationType() { cfgAttributes.persistedContextRestorationType }
60 static class PersistedConfigInitializerProvider extends PersistedFileInitializerProvider {
61 String getPersistPath() { cfgAttributes.peristConfigPath }
62 LogicalDatastoreType getDataStoreType() { LogicalDatastoreType.CONFIGURATION }
63 String getRestorationType() { cfgAttributes.persistedConfigRestorationType }