com.unboundid.ldap.sdk.unboundidds.extensions.CollectSupportDataArchiveFragmentIntermediateResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unboundid-ldapsdk Show documentation
Show all versions of unboundid-ldapsdk Show documentation
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 Standard Edition of the LDAP SDK, which is a
complete, general-purpose library for communicating with LDAPv3 directory
servers.
/*
* Copyright 2020-2023 Ping Identity Corporation
* All Rights Reserved.
*/
/*
* Copyright 2020-2023 Ping Identity Corporation
*
* 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.
*/
/*
* Copyright (C) 2020-2023 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.extensions;
import com.unboundid.asn1.ASN1Boolean;
import com.unboundid.asn1.ASN1Element;
import com.unboundid.asn1.ASN1Long;
import com.unboundid.asn1.ASN1OctetString;
import com.unboundid.asn1.ASN1Sequence;
import com.unboundid.ldap.sdk.Control;
import com.unboundid.ldap.sdk.IntermediateResponse;
import com.unboundid.ldap.sdk.LDAPException;
import com.unboundid.ldap.sdk.ResultCode;
import com.unboundid.util.Debug;
import com.unboundid.util.NotMutable;
import com.unboundid.util.NotNull;
import com.unboundid.util.Nullable;
import com.unboundid.util.StaticUtils;
import com.unboundid.util.ThreadSafety;
import com.unboundid.util.ThreadSafetyLevel;
import static com.unboundid.ldap.sdk.unboundidds.extensions.ExtOpMessages.*;
/**
* This class provides an implementation of an intermediate response that can
* provide the client with a portion of the support data archive generated in
* response to a {@link CollectSupportDataExtendedRequest}.
*
*
* 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 collect support data archive fragment intermediate response has an OID of
* 1.3.6.1.4.1.30221.2.6.66 and a value with the following encoding:
*
*
* CollectSupportDataArchiveDataIntermediateResponse ::= SEQUENCE {
* archiveFileName [0] OCTET STRING,
* totalArchiveSizeBytes [1] INTEGER,
* moreDataToReturn [2] BOOLEAN,
* fragmentData [3] OCTET STRING,
* ... }
*
*
* @see CollectSupportDataExtendedRequest
* @see CollectSupportDataExtendedResult
* @see CollectSupportDataOutputIntermediateResponse
*/
@NotMutable()
@ThreadSafety(level=ThreadSafetyLevel.COMPLETELY_THREADSAFE)
public final class CollectSupportDataArchiveFragmentIntermediateResponse
extends IntermediateResponse
{
/**
* The OID (1.3.6.1.4.1.30221.2.6.66) for the collect support data archive
* fragment intermediate response.
*/
@NotNull public static final String
COLLECT_SUPPORT_DATA_ARCHIVE_FRAGMENT_INTERMEDIATE_RESPONSE_OID =
"1.3.6.1.4.1.30221.2.6.66";
/**
* The BER type for the value element that holds the name (without any path
* information) that the server used for the support data archive.
*/
private static final byte TYPE_ARCHIVE_FILE_NAME = (byte) 0x80;
/**
* The BER type for the value element that holds the total size of the
* support data archive, in bytes.
*/
private static final byte TYPE_TOTAL_ARCHIVE_SIZE_BYTES = (byte) 0x81;
/**
* The BER type for the value element that indicates whether there is still
* more of the support data archive to be returned.
*/
private static final byte TYPE_MORE_DATA_TO_RETURN = (byte) 0x82;
/**
* The BER type for the value element that holds the data for this fragment of
* the support data archive.
*/
private static final byte TYPE_FRAGMENT_DATA = (byte) 0x83;
/**
* The serial version UID for this serializable class.
*/
private static final long serialVersionUID = 6989352662115346422L;
// Indicates whether there is still more of the support data archive to be
// returned to the client.
private final boolean moreDataToReturn;
// The data that comprises this fragment of the support data archive.
@NotNull private final byte[] fragmentData;
// The total size of the support data archive, in bytes.
private final long totalArchiveSizeBytes;
// The name (without any path information) that the server used for the
// support data archive file.
@NotNull private final String archiveFileName;
/**
* Creates a new collect support data archive fragment intermediate response
* object with the provided information.
*
* @param archiveFileName The name (without any path information) that
* the server used for the support data archive
* file. It must not be {@code null}.
* @param totalArchiveSizeBytes The size, in bytes, of the complete
* support data archive.
* @param moreDataToReturn Indicates whether there are more fragments
* to be returned to as part of the complete
* support data archive.
* @param fragmentData The data contained in this fragment of the
* support data archive. It must not be
* {@code null}.
* @param controls The set of controls to include in this
* intermediate response. It may be
* {@code null} or empty if no controls should
* be included.
*/
public CollectSupportDataArchiveFragmentIntermediateResponse(
@NotNull final String archiveFileName,
final long totalArchiveSizeBytes,
final boolean moreDataToReturn,
@NotNull final byte[] fragmentData,
@Nullable final Control... controls)
{
super(COLLECT_SUPPORT_DATA_ARCHIVE_FRAGMENT_INTERMEDIATE_RESPONSE_OID,
encodeValue(archiveFileName, totalArchiveSizeBytes, moreDataToReturn,
fragmentData),
controls);
this.archiveFileName = archiveFileName;
this.totalArchiveSizeBytes = totalArchiveSizeBytes;
this.moreDataToReturn = moreDataToReturn;
this.fragmentData = fragmentData;
}
/**
* Constructs an ASN.1 octet string suitable for use as the value of this
* collect support data archive fragment intermediate response.
*
* @param archiveFileName The name (without any path information) that
* the server used for the support data archive
* file. It must not be {@code null}.
* @param totalArchiveSizeBytes The size, in bytes, of the complete
* support data archive.
* @param moreDataToReturn Indicates whether there are more fragments
* to be returned to as part of the complete
* support data archive.
* @param fragmentData The data contained in this fragment of the
* support data archive. It must not be
* {@code null}.
*
* @return The ASN.1 octet string containing the encoded value.
*/
@NotNull()
private static ASN1OctetString encodeValue(
@NotNull final String archiveFileName,
final long totalArchiveSizeBytes,
final boolean moreDataToReturn,
@NotNull final byte[] fragmentData)
{
final ASN1Sequence valueSequence = new ASN1Sequence(
new ASN1OctetString(TYPE_ARCHIVE_FILE_NAME, archiveFileName),
new ASN1Long(TYPE_TOTAL_ARCHIVE_SIZE_BYTES, totalArchiveSizeBytes),
new ASN1Boolean(TYPE_MORE_DATA_TO_RETURN, moreDataToReturn),
new ASN1OctetString(TYPE_FRAGMENT_DATA, fragmentData));
return new ASN1OctetString(valueSequence.encode());
}
/**
* Creates a new collect support data archive fragment intermediate response
* that is decoded from the provided generic intermediate response.
*
* @param intermediateResponse The generic intermediate response to be
* decoded as a collect support data archive
* fragment intermediate response. It must not
* be {@code null}.
*
* @throws LDAPException If the provided intermediate response object cannot
* be decoded as a collect support data archive
* fragment intermediate response.
*/
public CollectSupportDataArchiveFragmentIntermediateResponse(
@NotNull final IntermediateResponse intermediateResponse)
throws LDAPException
{
super(intermediateResponse);
final ASN1OctetString value = intermediateResponse.getValue();
if (value == null)
{
throw new LDAPException(ResultCode.DECODING_ERROR,
ERR_CSD_FRAGMENT_IR_DECODE_NO_VALUE.get());
}
try
{
final ASN1Sequence valueSequence =
ASN1Sequence.decodeAsSequence(value.getValue());
final ASN1Element[] elements = valueSequence.elements();
archiveFileName =
ASN1OctetString.decodeAsOctetString(elements[0]).stringValue();
totalArchiveSizeBytes = ASN1Long.decodeAsLong(elements[1]).longValue();
moreDataToReturn =
ASN1Boolean.decodeAsBoolean(elements[2]).booleanValue();
fragmentData =
ASN1OctetString.decodeAsOctetString(elements[3]).getValue();
}
catch (final Exception e)
{
Debug.debugException(e);
throw new LDAPException(ResultCode.DECODING_ERROR,
ERR_CSD_FRAGMENT_IR_DECODE_ERROR.get(
StaticUtils.getExceptionMessage(e)),
e);
}
}
/**
* Retrieves the name (without any path information) that the server used for
* the support data archive file.
*
* @return The name (without any path information) that the server used for
* the support data archive file.
*/
@NotNull()
public String getArchiveFileName()
{
return archiveFileName;
}
/**
* Retrieves the total number of bytes contained in the complete support data
* archive.
*
* @return The total number of bytes contained in the complete support data
* archive.
*/
public long getTotalArchiveSizeBytes()
{
return totalArchiveSizeBytes;
}
/**
* Indicates whether there are one or more fragments still to be returned
* in the complete support data archive.
*
* @return {@code true} if there are still more fragments to be returned, or
* {@code false} if not.
*/
public boolean moreDataToReturn()
{
return moreDataToReturn;
}
/**
* Retrieves the data included in this fragment.
*
* @return The data included in this fragment.
*/
@NotNull()
public byte[] getFragmentData()
{
return fragmentData;
}
/**
* {@inheritDoc}
*/
@Override()
@NotNull()
public String getIntermediateResponseName()
{
return INFO_COLLECT_SUPPORT_DATA_FRAGMENT_IR_NAME.get();
}
/**
* {@inheritDoc}
*/
@Override()
@NotNull()
public String valueToString()
{
final StringBuilder buffer = new StringBuilder();
buffer.append("archiveFileName='");
buffer.append(archiveFileName);
buffer.append("' totalArchiveSizeBytes=");
buffer.append(totalArchiveSizeBytes);
buffer.append(" moreDataToReturn=");
buffer.append(moreDataToReturn);
buffer.append(" fragmentSizeBytes=");
buffer.append(fragmentData.length);
return buffer.toString();
}
/**
* {@inheritDoc}
*/
@Override()
public void toString(@NotNull final StringBuilder buffer)
{
buffer.append(
"CollectSupportDataArchiveFragmentIntermediateResponse(oid='");
buffer.append(getOID());
buffer.append("', archiveFileName='");
buffer.append(archiveFileName);
buffer.append("', totalArchiveSizeBytes=");
buffer.append(totalArchiveSizeBytes);
buffer.append(", moreDataToReturn=");
buffer.append(moreDataToReturn);
buffer.append(", fragmentSizeBytes=");
buffer.append(fragmentData.length);
final Control[] controls = getControls();
if (controls.length > 0)
{
buffer.append(", controls={");
for (int i=0; i < controls.length; i++)
{
if (i > 0)
{
buffer.append(", ");
}
buffer.append(controls[i]);
}
buffer.append('}');
}
buffer.append(')');
}
}