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

io.aeron.cluster.ClusterBackupMediaDriver Maven / Gradle / Ivy

There is a newer version: 1.48.0
Show newest version
/*
 * Copyright 2014-2024 Real Logic Limited.
 *
 * Licensed 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
 *
 * https://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.aeron.cluster;

import io.aeron.archive.Archive;
import io.aeron.driver.MediaDriver;
import io.aeron.driver.status.SystemCounterDescriptor;
import org.agrona.CloseHelper;
import org.agrona.ErrorHandler;
import org.agrona.concurrent.status.AtomicCounter;

import static org.agrona.SystemUtil.loadPropertiesFiles;

/**
 * Cluster Backup media driver which is an aggregate of a {@link MediaDriver}, {@link Archive},
 * and a {@link ClusterBackup}.
 */
public class ClusterBackupMediaDriver implements AutoCloseable
{
    private final MediaDriver driver;
    private final Archive archive;
    private final ClusterBackup clusterBackup;

    ClusterBackupMediaDriver(final MediaDriver driver, final Archive archive, final ClusterBackup clusterBackup)
    {
        this.driver = driver;
        this.archive = archive;
        this.clusterBackup = clusterBackup;
    }

    /**
     * Launch the cluster backup media driver aggregate and await a shutdown signal.
     *
     * @param args command line argument which is a list for properties files as URLs or filenames.
     */
    public static void main(final String[] args)
    {
        loadPropertiesFiles(args);

        try (ClusterBackupMediaDriver driver = launch())
        {
            driver.clusterBackup().context().shutdownSignalBarrier().await();
            System.out.println("Shutdown ClusterBackupMediaDriver...");
        }
    }

    /**
     * Launch a new {@link ClusterBackupMediaDriver} with default contexts.
     *
     * @return a new {@link ClusterBackupMediaDriver} with default contexts.
     */
    public static ClusterBackupMediaDriver launch()
    {
        return launch(new MediaDriver.Context(), new Archive.Context(), new ClusterBackup.Context());
    }

    /**
     * Launch a new {@link ClusterBackupMediaDriver} with provided contexts.
     *
     * @param driverCtx        for configuring the {@link MediaDriver}.
     * @param archiveCtx       for configuring the {@link Archive}.
     * @param clusterBackupCtx for the configuration of the {@link ClusterBackup}.
     * @return a new {@link ClusterBackupMediaDriver} with the provided contexts.
     */
    public static ClusterBackupMediaDriver launch(
        final MediaDriver.Context driverCtx,
        final Archive.Context archiveCtx,
        final ClusterBackup.Context clusterBackupCtx)
    {
        MediaDriver driver = null;
        Archive archive = null;
        ClusterBackup clusterBackup = null;

        try
        {
            driver = MediaDriver.launch(driverCtx
                .spiesSimulateConnection(true));

            final int errorCounterId = SystemCounterDescriptor.ERRORS.id();
            final AtomicCounter errorCounter = null != archiveCtx.errorCounter() ?
                archiveCtx.errorCounter() : new AtomicCounter(driverCtx.countersValuesBuffer(), errorCounterId);

            final ErrorHandler errorHandler = null != archiveCtx.errorHandler() ?
                archiveCtx.errorHandler() : driverCtx.errorHandler();

            archive = Archive.launch(archiveCtx
                .aeronDirectoryName(driverCtx.aeronDirectoryName())
                .mediaDriverAgentInvoker(driver.sharedAgentInvoker())
                .errorHandler(errorHandler)
                .errorCounter(errorCounter));

            clusterBackup = ClusterBackup.launch(clusterBackupCtx
                .aeronDirectoryName(driverCtx.aeronDirectoryName()));

            return new ClusterBackupMediaDriver(driver, archive, clusterBackup);
        }
        catch (final Exception ex)
        {
            CloseHelper.quietCloseAll(clusterBackup, archive, driver);
            throw ex;
        }
    }

    /**
     * Get the {@link MediaDriver} used in the aggregate.
     *
     * @return the {@link MediaDriver} used in the aggregate.
     */
    public MediaDriver mediaDriver()
    {
        return driver;
    }

    /**
     * Get the {@link Archive} used in the aggregate.
     *
     * @return the {@link Archive} used in the aggregate.
     */
    public Archive archive()
    {
        return archive;
    }

    /**
     * Get the {@link ClusterBackup} used in the aggregate.
     *
     * @return the {@link ClusterBackup} used in the aggregate.
     */
    public ClusterBackup clusterBackup()
    {
        return clusterBackup;
    }

    /**
     * {@inheritDoc}
     */
    public void close()
    {
        CloseHelper.closeAll(clusterBackup, archive, driver);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy