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

com.unboundid.ldap.sdk.unboundidds.monitors.DiskSpaceUsageMonitorEntry Maven / Gradle / Ivy

Go to download

The UnboundID LDAP SDK for Java is a fast, comprehensive, and easy-to-use Java API for communicating with LDAP directory servers and performing related tasks like reading and writing LDIF, encoding and decoding data using base64 and ASN.1 BER, and performing secure communication. This package contains the Commercial Edition of the LDAP SDK, which includes all of the general-purpose functionality contained in the Standard Edition, plus additional functionality specific to UnboundID server products.

There is a newer version: 3.2.1
Show newest version
/*
 * Copyright 2008-2016 UnboundID Corp.
 * All Rights Reserved.
 */
/*
 * Copyright (C) 2015-2016 UnboundID Corp.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License (GPLv2 only)
 * or the terms of the GNU Lesser General Public License (LGPLv2.1 only)
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, see .
 */
package com.unboundid.ldap.sdk.unboundidds.monitors;



import java.util.ArrayList;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;

import com.unboundid.ldap.sdk.Entry;
import com.unboundid.util.NotMutable;
import com.unboundid.util.ThreadSafety;
import com.unboundid.util.ThreadSafetyLevel;

import static com.unboundid.ldap.sdk.unboundidds.monitors.MonitorMessages.*;



/**
 * 
* NOTE: This class is part of the Commercial Edition of the UnboundID * LDAP SDK for Java. It is not available for use in applications that * include only the Standard Edition of the LDAP SDK, and is not supported for * use in conjunction with non-UnboundID products. *
* This class defines a monitor entry that provides information about the disk * space usage of the Directory Server. *

* The server should present at most one disk space usage monitor entry. It * can be retrieved using the * {@link MonitorManager#getDiskSpaceUsageMonitorEntry} method. The * {@link DiskSpaceUsageMonitorEntry#getDiskSpaceInfo} method may be used * to retrieve information about the components which may consume significant * amounts of disk space, and the * {@link DiskSpaceUsageMonitorEntry#getCurrentState} method may be used to * obtain the current state of the server. Alternately, this information may be * accessed using the generic API. See the {@link MonitorManager} class * documentation for an example that demonstrates the use of the generic API for * accessing monitor data. */ @NotMutable() @ThreadSafety(level=ThreadSafetyLevel.COMPLETELY_THREADSAFE) public final class DiskSpaceUsageMonitorEntry extends MonitorEntry { /** * The structural object class used in disk space usage monitor entries. */ static final String DISK_SPACE_USAGE_MONITOR_OC = "ds-disk-space-usage-monitor-entry"; /** * The name of the attribute that contains information about the current disk * space state for the server. */ private static final String ATTR_CURRENT_STATE = "current-disk-space-state"; /** * The prefix used for attributes that provide information about the name of * a disk space consumer. */ private static final String ATTR_PREFIX_CONSUMER_NAME = "disk-space-consumer-name-"; /** * The prefix used for attributes that provide information about the path of * a disk space consumer. */ private static final String ATTR_PREFIX_CONSUMER_PATH = "disk-space-consumer-path-"; /** * The prefix used for attributes that provide information about total bytes * for a disk space consumer. */ private static final String ATTR_PREFIX_CONSUMER_TOTAL_BYTES = "disk-space-consumer-total-bytes-"; /** * The prefix used for attributes that provide information about usable bytes * for a disk space consumer. */ private static final String ATTR_PREFIX_CONSUMER_USABLE_BYTES = "disk-space-consumer-usable-bytes-"; /** * The prefix used for attributes that provide information about usable * percent for a disk space consumer. */ private static final String ATTR_PREFIX_CONSUMER_USABLE_PERCENT = "disk-space-consumer-usable-percent-"; /** * The serial version UID for this serializable class. */ private static final long serialVersionUID = -4717940564786806566L; // The list of disk space info objects parsed from this monitor entry. private final List diskSpaceInfo; // The current disk space usage state for the server. private final String currentState; /** * Creates a new disk space usage monitor entry from the provided entry. * * @param entry The entry to be parsed as a disk space usage monitor entry. * It must not be {@code null}. */ public DiskSpaceUsageMonitorEntry(final Entry entry) { super(entry); currentState = getString(ATTR_CURRENT_STATE); int i=1; final ArrayList list = new ArrayList(5); while (true) { final String name = getString(ATTR_PREFIX_CONSUMER_NAME + i); if (name == null) { break; } final String path = getString(ATTR_PREFIX_CONSUMER_PATH + i); final Long totalBytes = getLong(ATTR_PREFIX_CONSUMER_TOTAL_BYTES + i); final Long usableBytes = getLong(ATTR_PREFIX_CONSUMER_USABLE_BYTES + i); final Long usablePercent = getLong(ATTR_PREFIX_CONSUMER_USABLE_PERCENT + i); list.add(new DiskSpaceInfo(name, path, totalBytes, usableBytes, usablePercent)); i++; } diskSpaceInfo = Collections.unmodifiableList(list); } /** * Retrieves the current disk space state for the Directory Server. It may * be one of "normal", "low space warning", "low space error", or "out of * space error". * * @return The current disk space state for the Directory Server, or * {@code null} if that information is not available. */ public String getCurrentState() { return currentState; } /** * Retrieves a list of information about the disk space consumers defined in * the Directory Server. * * @return A list of information about the disk space consumers defined in * the Directory Server. */ public List getDiskSpaceInfo() { return diskSpaceInfo; } /** * {@inheritDoc} */ @Override() public String getMonitorDisplayName() { return INFO_DISK_SPACE_USAGE_MONITOR_DISPNAME.get(); } /** * {@inheritDoc} */ @Override() public String getMonitorDescription() { return INFO_DISK_SPACE_USAGE_MONITOR_DESC.get(); } /** * {@inheritDoc} */ @Override() public Map getMonitorAttributes() { final LinkedHashMap attrs = new LinkedHashMap(); if (currentState != null) { addMonitorAttribute(attrs, ATTR_CURRENT_STATE, INFO_DISK_SPACE_USAGE_DISPNAME_CURRENT_STATE.get(), INFO_DISK_SPACE_USAGE_DESC_CURRENT_STATE.get(), currentState); } if (! diskSpaceInfo.isEmpty()) { int i=1; for (final DiskSpaceInfo info : diskSpaceInfo) { if (info.getConsumerName() != null) { addMonitorAttribute(attrs, ATTR_PREFIX_CONSUMER_NAME + i, INFO_DISK_SPACE_USAGE_DISPNAME_DISK_SPACE_CONSUMER_PREFIX.get() + i + INFO_DISK_SPACE_USAGE_DISPNAME_NAME_SUFFIX.get(), INFO_DISK_SPACE_USAGE_DESC_NAME.get(), info.getConsumerName()); } if (info.getPath() != null) { addMonitorAttribute(attrs, ATTR_PREFIX_CONSUMER_PATH + i, INFO_DISK_SPACE_USAGE_DISPNAME_DISK_SPACE_CONSUMER_PREFIX.get() + i + INFO_DISK_SPACE_USAGE_DISPNAME_PATH_SUFFIX.get(), INFO_DISK_SPACE_USAGE_DESC_PATH.get(), info.getPath()); } if (info.getTotalBytes() != null) { addMonitorAttribute(attrs, ATTR_PREFIX_CONSUMER_TOTAL_BYTES + i, INFO_DISK_SPACE_USAGE_DISPNAME_DISK_SPACE_CONSUMER_PREFIX.get() + i + INFO_DISK_SPACE_USAGE_DISPNAME_TOTAL_BYTES_SUFFIX.get(), INFO_DISK_SPACE_USAGE_DESC_TOTAL_BYTES.get(), info.getTotalBytes()); } if (info.getUsableBytes() != null) { addMonitorAttribute(attrs, ATTR_PREFIX_CONSUMER_USABLE_BYTES + i, INFO_DISK_SPACE_USAGE_DISPNAME_DISK_SPACE_CONSUMER_PREFIX.get() + i + INFO_DISK_SPACE_USAGE_DISPNAME_USABLE_BYTES_SUFFIX.get(), INFO_DISK_SPACE_USAGE_DESC_USABLE_BYTES.get(), info.getUsableBytes()); } if (info.getUsableBytes() != null) { addMonitorAttribute(attrs, ATTR_PREFIX_CONSUMER_USABLE_PERCENT + i, INFO_DISK_SPACE_USAGE_DISPNAME_DISK_SPACE_CONSUMER_PREFIX.get() + i + INFO_DISK_SPACE_USAGE_DISPNAME_USABLE_PERCENT_SUFFIX.get(), INFO_DISK_SPACE_USAGE_DESC_USABLE_PERCENT.get(), info.getUsablePercent()); } i++; } } return Collections.unmodifiableMap(attrs); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy