blob: 2ae5911bdd099f9b50fb5324b6c609d4bc3e3fe3 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*
*/
package org.apache.directory.server.kerberos.shared.messages.value.flags;
import java.util.BitSet;
/**
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev: 540371 $, $Date: 2007-05-22 02:00:43 +0200 (Tue, 22 May 2007) $
*/
public abstract class Options
{
private BitSet options;
private int maxSize;
protected Options( int maxSize )
{
this.maxSize = maxSize;
options = new BitSet( maxSize );
}
/**
* Returns whether the option at a given index matches the option in this {@link Options}.
*
* @param options
* @param option
* @return true if two options are the same.
*/
public boolean match( Options options, int option )
{
return options.get( option ) == this.get( option );
}
/**
* Returns the value of the option at the given index.
*
* @param index
* @return true if the option at the given index is set.
*/
public boolean get( int index )
{
return options.get( index );
}
/**
* Sets the option at a given index.
*
* @param index
*/
public void set( int index )
{
options.set( index );
}
/**
* Clears (sets false) the option at a given index.
*
* @param index
*/
public void clear( int index )
{
options.clear( index );
}
/**
* Byte-reversing methods are an anomaly of the BouncyCastle
* DERBitString endianness. Thes methods can be removed if the
* Apache Directory Snickers codecs operate differently.
*
* @return The raw {@link Options} bytes.
*/
public byte[] getBytes()
{
byte[] bytes = new byte[maxSize / 8];
for ( int ii = 0; ii < maxSize; ii++ )
{
if ( options.get( reversePosition( ii ) ) )
{
bytes[bytes.length - ii / 8 - 1] |= 1 << ( ii % 8 );
}
}
return bytes;
}
protected void setBytes( byte[] bytes )
{
for ( int ii = 0; ii < bytes.length * 8; ii++ )
{
if ( ( bytes[bytes.length - ii / 8 - 1] & ( 1 << ( ii % 8 ) ) ) > 0 )
{
options.set( reversePosition( ii ) );
}
}
}
private int reversePosition( int position )
{
return maxSize - 1 - position;
}
}