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

com.hazelcast.config.PersistentMemoryDirectoryConfig Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
/*
 * Copyright (c) 2008-2023, Hazelcast, Inc. All Rights Reserved.
 *
 * 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
 *
 * 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 com.hazelcast.config;

import javax.annotation.Nonnull;
import java.util.Objects;

import static java.util.Objects.requireNonNull;

/**
 * Configuration class for directories that persistent memories are mounted at.
 */
public class PersistentMemoryDirectoryConfig {
    private static final int NUMA_NODE_UNSET = -1;

    private String directory;
    private int numaNode = NUMA_NODE_UNSET;

    /**
     * Creates an instance with the {@code directory} specified.
     *
     * @param directory The directory where the persistent memory is
     *                  mounted at
     * @throws NullPointerException if {@code directory} is {@code null}
     */
    public PersistentMemoryDirectoryConfig(@Nonnull String directory) {
        this.directory = requireNonNull(directory);
    }

    /**
     * Creates an instance with the {@code directory} and NUMA node specified.
     * 

* Note that setting {@code numaNode} to -1 on any of the configured * {@link PersistentMemoryDirectoryConfig} instances disables * NUMA-aware persistent memory allocation. * * @param directory The directory where the persistent memory is * mounted at * @param numaNode The NUMA node that the persistent memory mounted * to the given directory is attached to. * @throws NullPointerException if {@code directory} is {@code null} */ public PersistentMemoryDirectoryConfig(@Nonnull String directory, int numaNode) { this.directory = requireNonNull(directory); this.numaNode = numaNode; } /** * Constructs an instance by copying the provided {@link PersistentMemoryDirectoryConfig}. * * @param directoryConfig The configuration to copy * @throws NullPointerException if {@code directoryConfig} is {@code null} */ public PersistentMemoryDirectoryConfig(@Nonnull PersistentMemoryDirectoryConfig directoryConfig) { this.directory = requireNonNull(directoryConfig).directory; this.numaNode = directoryConfig.numaNode; } /** * Returns the directory of this {@link PersistentMemoryDirectoryConfig}. * * @return the directory */ @Nonnull public String getDirectory() { return directory; } /** * Returns the {@code directory} of this {@link PersistentMemoryDirectoryConfig}. * * @param directory the directory to set * @throws NullPointerException if {@code directory} is {@code null} */ public void setDirectory(@Nonnull String directory) { this.directory = requireNonNull(directory); } /** * Returns the NUMA node the persistent memory mounted to the given * directory is attached to. * * @return the NUMA node of the persistent memory */ public int getNumaNode() { return numaNode; } /** * Sets the NUMA node the persistent memory mounted to the given * directory is attached to. *

* Note that setting {@code numaNode} to -1 on any of the configured * {@link PersistentMemoryDirectoryConfig} instances disables * NUMA-aware persistent memory allocation. * * @param numaNode the NUMA node to set */ public void setNumaNode(int numaNode) { this.numaNode = numaNode; } /** * Returns if the NUMA node for the given persistent memory directory * is set. * * @return {@code true} if the NUMA node is set, {@code false} otherwise */ public boolean isNumaNodeSet() { return numaNode != NUMA_NODE_UNSET; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } PersistentMemoryDirectoryConfig that = (PersistentMemoryDirectoryConfig) o; if (numaNode != that.numaNode) { return false; } return Objects.equals(directory, that.directory); } @Override public int hashCode() { int result = directory != null ? directory.hashCode() : 0; result = 31 * result + numaNode; return result; } @Override public String toString() { return "PersistentMemoryDirectoryConfig{" + "directory='" + directory + '\'' + ", numaNode=" + numaNode + '}'; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy