use of org.apache.directory.api.asn1.ber.tlv.BerValue in project directory-ldap-api by apache.
the class StoredProcedureTest method testDecodeStoredProcedureOneParam.
@Test
public void testDecodeStoredProcedureOneParam() throws IntegerDecoderException {
Asn1Decoder storedProcedureDecoder = new StoredProcedureDecoder();
ByteBuffer stream = ByteBuffer.allocate(0x1D);
stream.put(new byte[] { 0x30, 0x1B, 0x04, 0x04, 'J', 'a', 'v', 'a', 0x04, 0x07, 'e', 'x', 'e', 'c', 'u', 't', 'e', 0x30, 0x0A, 0x30, 0x08, 0x04, 0x03, 'i', 'n', 't', 0x04, 0x01, 0x01 });
String decodedPdu = Strings.dumpBytes(stream.array());
stream.flip();
// Allocate a StoredProcedure Container
StoredProcedureContainer storedProcedureContainer = new StoredProcedureContainer();
// Decode a StoredProcedure message
try {
storedProcedureDecoder.decode(stream, storedProcedureContainer);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
StoredProcedureRequestDecorator storedProcedure = storedProcedureContainer.getStoredProcedure();
assertEquals("Java", storedProcedure.getLanguage());
assertEquals("execute", storedProcedure.getProcedureSpecification());
assertEquals(1, storedProcedure.size());
assertEquals("int", Strings.utf8ToString((byte[]) storedProcedure.getParameterType(0)));
assertEquals(1, IntegerDecoder.parse(new BerValue((byte[]) storedProcedure.getParameterValue(0))));
// Check the encoding
try {
ByteBuffer bb = storedProcedure.encodeInternal();
String encodedPdu = Strings.dumpBytes(bb.array());
assertEquals(encodedPdu, decodedPdu);
} catch (EncoderException ee) {
ee.printStackTrace();
fail(ee.getMessage());
}
}
use of org.apache.directory.api.asn1.ber.tlv.BerValue in project directory-ldap-api by apache.
the class AbstractReadInteger method action.
/**
* {@inheritDoc}
*/
@Override
public final void action(E container) throws DecoderException {
TLV tlv = container.getCurrentTLV();
// The Length should not be null
if (tlv.getLength() == 0) {
String msg = I18n.err(I18n.ERR_01101_NULL_LENGTH);
LOG.error(msg);
// This will generate a PROTOCOL_ERROR
throw new DecoderException(msg);
}
BerValue value = tlv.getValue();
try {
int number = IntegerDecoder.parse(value, minValue, maxValue);
if (IS_DEBUG) {
LOG.debug(I18n.msg(I18n.MSG_01100_INTEGER_VALUE, number));
}
setIntegerValue(number, container);
} catch (IntegerDecoderException ide) {
LOG.error(I18n.err(I18n.ERR_01102_INVALID_INTEGER, Strings.dumpBytes(value.getData()), ide.getLocalizedMessage()));
// This will generate a PROTOCOL_ERROR
throw new DecoderException(ide.getMessage(), ide);
}
}
use of org.apache.directory.api.asn1.ber.tlv.BerValue in project directory-ldap-api by apache.
the class Asn1Decoder method isTLVDecoded.
/**
* Check if the TLV tree is fully decoded
*
* @param container The container
* @return <code>true</code> if the TLV has been decoded
*/
private boolean isTLVDecoded(Asn1Container container) {
TLV current = container.getCurrentTLV();
TLV parent = current.getParent();
while (parent != null) {
if (parent.getExpectedLength() != 0) {
return false;
}
parent = parent.getParent();
}
BerValue value = current.getValue();
if ((value != null) && (value.getData() != null)) {
return current.getExpectedLength() == value.getData().length;
} else {
return current.getExpectedLength() == 0;
}
}
use of org.apache.directory.api.asn1.ber.tlv.BerValue in project directory-ldap-api by apache.
the class StoreControlCriticality method action.
/**
* {@inheritDoc}
*/
public void action(ControlsContainer container) throws DecoderException {
TLV tlv = container.getCurrentTLV();
// Get the current control
Control control = container.getCurrentControl();
// Store the criticality
// We get the value. If it's a 0, it's a FALSE. If it's
// a FF, it's a TRUE. Any other value should be an error,
// but we could relax this constraint. So if we have
// something
// which is not 0, it will be interpreted as TRUE, but we
// will generate a warning.
BerValue value = tlv.getValue();
try {
control.setCritical(BooleanDecoder.parse(value));
} catch (BooleanDecoderException bde) {
LOG.error(I18n.err(I18n.ERR_04100_BAD_CONTROL_CRITICALITY, Strings.dumpBytes(value.getData()), bde.getMessage()));
// This will generate a PROTOCOL_ERROR
throw new DecoderException(bde.getMessage(), bde);
}
// We can have an END transition
container.setGrammarEndAllowed(true);
if (IS_DEBUG) {
LOG.debug("Control criticality : {}", control.isCritical());
}
}
use of org.apache.directory.api.asn1.ber.tlv.BerValue in project directory-ldap-api by apache.
the class StoreControlValue method action.
/**
* {@inheritDoc}
*/
@Override
public void action(ControlsContainer container) {
TLV tlv = container.getCurrentTLV();
CodecControl<?> control = container.getCurrentControl();
// Get the current control
BerValue value = tlv.getValue();
// Store the value - have to handle the special case of a 0 length value
if (tlv.getLength() == 0) {
control.setValue(Strings.EMPTY_BYTES);
} else {
control.setValue(value.getData());
}
// We can have an END transition
container.setGrammarEndAllowed(true);
if (IS_DEBUG) {
LOG.debug("Control value : {}", Strings.dumpBytes(control.getValue()));
}
}
Aggregations