Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2009-2019 Ping Identity Corporation
* All Rights Reserved.
*/
/*
* Copyright (C) 2015-2019 Ping Identity Corporation
*
* 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.DN;
import com.unboundid.ldap.sdk.Entry;
import com.unboundid.util.Debug;
import com.unboundid.util.NotMutable;
import com.unboundid.util.StaticUtils;
import com.unboundid.util.ThreadSafety;
import com.unboundid.util.ThreadSafetyLevel;
import static com.unboundid.ldap.sdk.unboundidds.monitors.MonitorMessages.*;
/**
* This class defines a monitor entry that provides information about the state
* of a replication server, including the base DNs for replicated content, the
* generation ID for each of those base DNs, the replication server ID, and the
* port number on which the replication server is listening.
*
*
* NOTE: This class, and other classes within the
* {@code com.unboundid.ldap.sdk.unboundidds} package structure, are only
* supported for use against Ping Identity, UnboundID, and
* Nokia/Alcatel-Lucent 8661 server products. These classes provide support
* for proprietary functionality or for external specifications that are not
* considered stable or mature enough to be guaranteed to work in an
* interoperable way with other types of LDAP servers.
*
*
* The server should present at most one replication server monitor entry. It
* can be retrieved using the
* {@link MonitorManager#getReplicationServerMonitorEntry} method. This entry
* provides specific methods for accessing information about the replication
* 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 ReplicationServerMonitorEntry
extends MonitorEntry
{
/**
* The structural object class used in replication server monitor entries.
*/
static final String REPLICATION_SERVER_MONITOR_OC =
"ds-replication-server-monitor-entry";
/**
* The name of the attribute that contains the base DNs for the replicated
* data.
*/
private static final String ATTR_BASE_DN = "base-dn";
/**
* The name of the attribute that contains the generation IDs that correspond
* to the replicated base DNs.
*/
private static final String ATTR_BASE_DN_GENERATION_ID =
"base-dn-generation-id";
/**
* The name of the attribute that contains the server ID for the replication
* server.
*/
private static final String ATTR_REPLICATION_SERVER_ID =
"replication-server-id";
/**
* The name of the attribute that contains the port number on which the
* replication server listens for communication from other servers.
*/
private static final String ATTR_REPLICATION_SERVER_PORT =
"replication-server-port";
/**
* The name of the attribute that indicates whether SSL encryption is
* available for use.
*/
private static final String ATTR_SSL_AVAILABLE =
"ssl-encryption-available";
/**
* The serial version UID for this serializable class.
*/
private static final long serialVersionUID = 7488640967498574690L;
// Indicates whether SSL encryption is available.
private final Boolean sslEncryptionAvailable;
// The base DNs for the replicated data.
private final List baseDNs;
// The port number on which the replication server listens for communication
// from other servers.
private final Long replicationServerPort;
// A map of the generation IDs for each of the replicated base DNs.
private final Map generationIDs;
// The replication server ID for the replication server.
private final String replicationServerID;
/**
* Creates a new replication server monitor entry from the provided entry.
*
* @param entry The entry to be parsed as a replication server monitor
* entry. It must not be {@code null}.
*/
public ReplicationServerMonitorEntry(final Entry entry)
{
super(entry);
baseDNs = getStrings(ATTR_BASE_DN);
replicationServerID = getString(ATTR_REPLICATION_SERVER_ID);
replicationServerPort = getLong(ATTR_REPLICATION_SERVER_PORT);
sslEncryptionAvailable = getBoolean(ATTR_SSL_AVAILABLE);
final List baseDNsAndIDs = getStrings(ATTR_BASE_DN_GENERATION_ID);
final Map idMap = new LinkedHashMap<>(
StaticUtils.computeMapCapacity(baseDNsAndIDs.size()));
for (final String s : baseDNsAndIDs)
{
try
{
final int lastSpacePos = s.lastIndexOf(' ');
final DN dn = new DN(s.substring(0, lastSpacePos));
idMap.put(dn, s.substring(lastSpacePos+1));
}
catch (final Exception e)
{
Debug.debugException(e);
}
}
generationIDs = Collections.unmodifiableMap(idMap);
}
/**
* Retrieves the base DNs for replicated content managed by this replication
* server.
*
* @return The base DNs for replicated content managed by this replication
* server, or an empty list if it was not included in the monitor
* entry.
*/
public List getBaseDNs()
{
return baseDNs;
}
/**
* Retrieves a map of generation IDs for the available base DNs.
*
* @return A map of generation IDs for the available base DNs, or an empty
* map if it was not included in the monitor entry.
*/
public Map getGenerationIDs()
{
return generationIDs;
}
/**
* Retrieves the generation ID for the specified base DN.
*
* @param baseDN The base DN for which to retrieve the generation ID.
*
* @return The generation ID for the specified base DN, or {@code null} if
* there no generation ID is available for the provided base DN, or
* the provided base DN is not a valid DN.
*/
public String getGenerationID(final String baseDN)
{
try
{
return getGenerationID(new DN(baseDN));
}
catch (final Exception e)
{
Debug.debugException(e);
return null;
}
}
/**
* Retrieves the generation ID for the specified base DN.
*
* @param baseDN The base DN for which to retrieve the generation ID.
*
* @return The generation ID for the specified base DN, or {@code null} if
* there no generation ID is available for the provided base DN.
*/
public String getGenerationID(final DN baseDN)
{
return generationIDs.get(baseDN);
}
/**
* Retrieves the server ID for the replication server.
*
* @return The server ID for the replication server, or {@code null} if it
* was not included in the monitor entry.
*/
public String getReplicationServerID()
{
return replicationServerID;
}
/**
* Retrieves the port number for the replication server.
*
* @return The port number for the replication server, or {@code null} if it
* was not included in the monitor entry.
*/
public Long getReplicationServerPort()
{
return replicationServerPort;
}
/**
* Indicates whether the replication server provides support for SSL
* encryption.
*
* @return {@code true} if the replication server supports SSL encryption,
* {@code false} if it does not, or {@code null} if that information
* was not included in the monitor entry.
*/
public Boolean sslEncryptionAvailable()
{
return sslEncryptionAvailable;
}
/**
* {@inheritDoc}
*/
@Override()
public String getMonitorDisplayName()
{
return INFO_REPLICATION_SERVER_MONITOR_DISPNAME.get();
}
/**
* {@inheritDoc}
*/
@Override()
public String getMonitorDescription()
{
return INFO_REPLICATION_SERVER_MONITOR_DESC.get();
}
/**
* {@inheritDoc}
*/
@Override()
public Map getMonitorAttributes()
{
final LinkedHashMap attrs =
new LinkedHashMap<>(StaticUtils.computeMapCapacity(10));
if (! baseDNs.isEmpty())
{
addMonitorAttribute(attrs,
ATTR_BASE_DN,
INFO_REPLICATION_SERVER_DISPNAME_BASE_DN.get(),
INFO_REPLICATION_SERVER_DESC_BASE_DN.get(),
baseDNs);
}
if (! generationIDs.isEmpty())
{
final ArrayList idStrings =
new ArrayList<>(generationIDs.size());
for (final Map.Entry e : generationIDs.entrySet())
{
idStrings.add(e.getKey().toNormalizedString() + ' ' + e.getValue());
}
addMonitorAttribute(attrs,
ATTR_BASE_DN_GENERATION_ID,
INFO_REPLICATION_SERVER_DISPNAME_BASE_DN_GENERATION_ID.get(),
INFO_REPLICATION_SERVER_DESC_BASE_DN_GENERATION_ID.get(),
idStrings);
}
if (replicationServerID != null)
{
addMonitorAttribute(attrs,
ATTR_REPLICATION_SERVER_ID,
INFO_REPLICATION_SERVER_DISPNAME_REPLICATION_SERVER_ID.get(),
INFO_REPLICATION_SERVER_DESC_REPLICATION_SERVER_ID.get(),
replicationServerID);
}
if (replicationServerPort != null)
{
addMonitorAttribute(attrs,
ATTR_REPLICATION_SERVER_PORT,
INFO_REPLICATION_SERVER_DISPNAME_REPLICATION_SERVER_PORT.get(),
INFO_REPLICATION_SERVER_DESC_REPLICATION_SERVER_PORT.get(),
replicationServerPort);
}
if (sslEncryptionAvailable != null)
{
addMonitorAttribute(attrs,
ATTR_SSL_AVAILABLE,
INFO_REPLICATION_SERVER_DISPNAME_SSL_AVAILABLE.get(),
INFO_REPLICATION_SERVER_DESC_SSL_AVAILABLE.get(),
sslEncryptionAvailable);
}
return Collections.unmodifiableMap(attrs);
}
}