All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.streamthoughts.kafka.connect.filepulse.state.StateBackingStoreAccess Maven / Gradle / Ivy

/*
 * Copyright 2021 StreamThoughts.
 *
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.streamthoughts.kafka.connect.filepulse.state;

import io.streamthoughts.kafka.connect.filepulse.source.FileObject;
import io.streamthoughts.kafka.connect.filepulse.state.internal.OpaqueMemoryResource;
import io.streamthoughts.kafka.connect.filepulse.storage.StateBackingStore;
import org.apache.kafka.connect.errors.ConnectException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.function.Supplier;

/**
 * The {@code StateBackingStoreAccess} holds an access to a shared {@link StateBackingStore} instance.
 */
public final class StateBackingStoreAccess implements
        Supplier>>,
        AutoCloseable {

    private static final Logger LOG = LoggerFactory.getLogger(StateBackingStoreAccess.class);

    private final String name;
    private final OpaqueMemoryResource> sharedStore;

    public StateBackingStoreAccess(final String name,
                                   final Supplier> supplier,
                                   final boolean doStart) {
        this.name = name;
        this.sharedStore = initSharedStateBackingStore(name, supplier, doStart);
    }

    private OpaqueMemoryResource> initSharedStateBackingStore(
            final String name,
            final Supplier> supplier,
            final boolean doStart) {
        try {
            LOG.info("Retrieving access to shared backing store");
            return FileObjectStateBackingStoreManager.INSTANCE
                    .getOrCreateSharedStore(
                            name,
                            () -> {
                                final StateBackingStore store = supplier.get();
                                // Always invoke the start() method when store is created from Task
                                // because this means the connector is running on a remote worker.
                                if (doStart) {
                                    store.start();
                                }
                                return store;
                            },
                            new Object()
                    );
        } catch (Exception exception) {
            throw new ConnectException(
                    "Failed to create shared StateBackingStore for group '" + name + "'.",
                    exception
            );
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void close() {
        try {
            if (sharedStore != null) {
                sharedStore.close();
            }
        } catch (Exception exception) {
            LOG.error("Failed to shared StateBackingStore '{}'", name);
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public OpaqueMemoryResource> get() {
        return sharedStore;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy