in ldap/extras/codec/src/main/java/org/apache/directory/api/ldap/extras/controls/syncrepl_impl/SyncRequestValueGrammar.java [73:271]
private SyncRequestValueGrammar()
{
setName( SyncRequestValueGrammar.class.getName() );
// Create the transitions table
super.transitions = new GrammarTransition[SyncRequestValueStatesEnum.LAST_SYNC_REQUEST_VALUE_STATE.ordinal()][256];
/**
* Transition from initial state to SyncRequestValue sequence
* SyncRequestValue ::= SEQUENCE OF {
* ...
*
* Initialize the syncRequestValue object
*/
super.transitions[SyncRequestValueStatesEnum.START_STATE.ordinal()][UniversalTag.SEQUENCE.getValue()] =
new GrammarTransition<SyncRequestValueContainer>(
SyncRequestValueStatesEnum.START_STATE,
SyncRequestValueStatesEnum.SYNC_REQUEST_VALUE_SEQUENCE_STATE,
UniversalTag.SEQUENCE.getValue(),
null,
FollowUp.OPTIONAL );
/**
* Transition from SyncRequestValue sequence to Change types
* SyncRequestValue ::= SEQUENCE OF {
* mode ENUMERATED {
* -- 0 unused
* refreshOnly (1),
* -- 2 reserved
* refreshAndPersist (3)
* },
* ...
*
* Stores the mode value
*/
super.transitions[SyncRequestValueStatesEnum.SYNC_REQUEST_VALUE_SEQUENCE_STATE.ordinal()][UniversalTag.ENUMERATED
.getValue()] =
new GrammarTransition<SyncRequestValueContainer>(
SyncRequestValueStatesEnum.SYNC_REQUEST_VALUE_SEQUENCE_STATE,
SyncRequestValueStatesEnum.MODE_STATE,
UniversalTag.ENUMERATED.getValue(),
new GrammarAction<SyncRequestValueContainer>( "Set SyncRequestValueControl mode" )
{
public void action( SyncRequestValueContainer container ) throws DecoderException
{
BerValue value = container.getCurrentTLV().getValue();
try
{
// Check that the value is into the allowed interval
int mode = IntegerDecoder.parse( value,
SynchronizationModeEnum.UNUSED.getValue(),
SynchronizationModeEnum.REFRESH_AND_PERSIST.getValue() );
SynchronizationModeEnum modeEnum = SynchronizationModeEnum.getSyncMode( mode );
if ( LOG.isDebugEnabled() )
{
LOG.debug( I18n.msg( I18n.MSG_08100_MODE, modeEnum ) );
}
container.getSyncRequestValue().setMode( modeEnum );
// We can have an END transition
container.setGrammarEndAllowed( true );
}
catch ( IntegerDecoderException ide )
{
String msg = I18n.err( I18n.ERR_08100_SYNC_REQUEST_VALUE_MODE_DECODING_FAILED );
LOG.error( msg, ide );
throw new DecoderException( msg, ide );
}
}
},
FollowUp.OPTIONAL );
/**
* Transition from mode to cookie
* SyncRequestValue ::= SEQUENCE OF {
* ...
* cookie syncCookie OPTIONAL,
* ...
*
* Stores the cookie
*/
super.transitions[SyncRequestValueStatesEnum.MODE_STATE.ordinal()][UniversalTag.OCTET_STRING.getValue()] =
new GrammarTransition<SyncRequestValueContainer>(
SyncRequestValueStatesEnum.MODE_STATE,
SyncRequestValueStatesEnum.COOKIE_STATE,
UniversalTag.OCTET_STRING.getValue(),
new GrammarAction<SyncRequestValueContainer>( "Set SyncRequestValueControl cookie" )
{
public void action( SyncRequestValueContainer container )
{
BerValue value = container.getCurrentTLV().getValue();
byte[] cookie = value.getData();
if ( LOG.isDebugEnabled() )
{
LOG.debug( I18n.msg( I18n.MSG_08000_COOKIE, Strings.dumpBytes( cookie ) ) );
}
container.getSyncRequestValue().setCookie( cookie );
// We can have an END transition
container.setGrammarEndAllowed( true );
}
},
FollowUp.OPTIONAL );
/**
* Transition from mode to reloadHint
* SyncRequestValue ::= SEQUENCE OF {
* ...
* reloadHint BOOLEAN DEFAULT FALSE
* }
*
* Stores the reloadHint flag
*/
super.transitions[SyncRequestValueStatesEnum.MODE_STATE.ordinal()][UniversalTag.BOOLEAN.getValue()] =
new GrammarTransition<SyncRequestValueContainer>(
SyncRequestValueStatesEnum.MODE_STATE,
SyncRequestValueStatesEnum.RELOAD_HINT_STATE,
UniversalTag.BOOLEAN.getValue(),
new GrammarAction<SyncRequestValueContainer>( "Set SyncRequestValueControl reloadHint flag" )
{
public void action( SyncRequestValueContainer container ) throws DecoderException
{
BerValue value = container.getCurrentTLV().getValue();
try
{
boolean reloadHint = BooleanDecoder.parse( value );
if ( LOG.isDebugEnabled() )
{
LOG.debug( I18n.msg( I18n.MSG_08104_RELOAD_HINT, reloadHint ) );
}
container.getSyncRequestValue().setReloadHint( reloadHint );
// We can have an END transition
container.setGrammarEndAllowed( true );
}
catch ( BooleanDecoderException bde )
{
String msg = I18n.err( I18n.ERR_08101_RELOAD_HINT_DECODING_FAILED );
LOG.error( msg, bde );
throw new DecoderException( msg, bde );
}
}
},
FollowUp.OPTIONAL );
/**
* Transition from cookie to reloadHint
* SyncRequestValue ::= SEQUENCE OF {
* ...
* reloadHint BOOLEAN DEFAULT FALSE
* }
*
* Stores the reloadHint flag
*/
super.transitions[SyncRequestValueStatesEnum.COOKIE_STATE.ordinal()][UniversalTag.BOOLEAN.getValue()] =
new GrammarTransition<SyncRequestValueContainer>(
SyncRequestValueStatesEnum.COOKIE_STATE,
SyncRequestValueStatesEnum.RELOAD_HINT_STATE,
UniversalTag.BOOLEAN.getValue(),
new GrammarAction<SyncRequestValueContainer>( "Set SyncRequestValueControl reloadHint flag" )
{
public void action( SyncRequestValueContainer container ) throws DecoderException
{
BerValue value = container.getCurrentTLV().getValue();
try
{
boolean reloadHint = BooleanDecoder.parse( value );
if ( LOG.isDebugEnabled() )
{
LOG.debug( I18n.msg( I18n.MSG_08104_RELOAD_HINT, reloadHint ) );
}
container.getSyncRequestValue().setReloadHint( reloadHint );
// We can have an END transition
container.setGrammarEndAllowed( true );
}
catch ( BooleanDecoderException bde )
{
String msg = I18n.err( I18n.ERR_08101_RELOAD_HINT_DECODING_FAILED );
LOG.error( msg, bde );
throw new DecoderException( msg, bde );
}
}
},
FollowUp.OPTIONAL );
}