use of org.eclipse.titan.designer.AST.TTCN3.values.Hexstring_Value in project titan.EclipsePlug-ins by eclipse.
the class Oct2HexExpression method evaluateValue.
@Override
public /**
* {@inheritDoc}
*/
IValue evaluateValue(final CompilationTimeStamp timestamp, final Expected_Value_type expectedValue, final IReferenceChain referenceChain) {
if (lastTimeChecked != null && !lastTimeChecked.isLess(timestamp)) {
return lastValue;
}
isErroneous = false;
lastTimeChecked = timestamp;
lastValue = this;
if (value == null) {
return lastValue;
}
checkExpressionOperands(timestamp, expectedValue, referenceChain);
if (getIsErroneous(timestamp)) {
return lastValue;
}
if (isUnfoldable(timestamp, referenceChain)) {
return lastValue;
}
final IValue last = value.getValueRefdLast(timestamp, referenceChain);
if (last.getIsErroneous(timestamp)) {
setIsErroneous(true);
return lastValue;
}
switch(last.getValuetype()) {
case OCTETSTRING_VALUE:
final String octetString = ((Octetstring_Value) last).getValue();
lastValue = new Hexstring_Value(octetString.toUpperCase());
lastValue.copyGeneralProperties(this);
break;
default:
setIsErroneous(true);
break;
}
return lastValue;
}
use of org.eclipse.titan.designer.AST.TTCN3.values.Hexstring_Value in project titan.EclipsePlug-ins by eclipse.
the class IncorrectRotate method getFirstRotateOperandLength.
/**
* @param ct the compilation timestamp to be used
* @param value the first operand of the rotate operation
* @return the length of the first operand if it can be determined
*/
private static long getFirstRotateOperandLength(final CompilationTimeStamp ct, final Value value) {
if (value == null) {
return 0;
}
final Type_type tempType = value.getExpressionReturntype(ct, null);
final IValue refd = value.getValueRefdLast(ct, null);
long valueSize = 0;
switch(tempType) {
case TYPE_BITSTRING:
if (Value_type.BITSTRING_VALUE.equals(refd.getValuetype())) {
valueSize = ((Bitstring_Value) refd).getValueLength();
}
break;
case TYPE_HEXSTRING:
if (Value_type.HEXSTRING_VALUE.equals(refd.getValuetype())) {
valueSize = ((Hexstring_Value) refd).getValueLength();
}
break;
case TYPE_OCTETSTRING:
if (Value_type.OCTETSTRING_VALUE.equals(refd.getValuetype())) {
valueSize = ((Octetstring_Value) refd).getValueLength();
}
break;
case TYPE_CHARSTRING:
if (Value_type.CHARSTRING_VALUE.equals(refd.getValuetype())) {
valueSize = ((Charstring_Value) refd).getValueLength();
}
break;
case TYPE_UCHARSTRING:
if (Value_type.UNIVERSALCHARSTRING_VALUE.equals(refd.getValuetype())) {
valueSize = ((UniversalCharstring_Value) refd).getValueLength();
}
break;
case TYPE_SET_OF:
if (Value_type.SEQUENCEOF_VALUE.equals(value.getValuetype())) {
valueSize = ((SequenceOf_Value) value).getNofComponents();
} else if (Value_type.SETOF_VALUE.equals(value.getValuetype())) {
valueSize = ((SetOf_Value) value).getNofComponents();
}
break;
case TYPE_SEQUENCE_OF:
if (Value_type.SEQUENCEOF_VALUE.equals(value.getValuetype())) {
valueSize = ((SequenceOf_Value) value).getNofComponents();
} else if (Value_type.SETOF_VALUE.equals(value.getValuetype())) {
valueSize = ((SetOf_Value) value).getNofComponents();
}
break;
case TYPE_ARRAY:
if (Value_type.SEQUENCEOF_VALUE.equals(value.getValuetype())) {
valueSize = ((SequenceOf_Value) value).getNofComponents();
}
if (Value_type.ARRAY_VALUE.equals(value.getValuetype())) {
valueSize = ((Array_Value) value).getNofComponents();
}
break;
default:
break;
}
return valueSize;
}
use of org.eclipse.titan.designer.AST.TTCN3.values.Hexstring_Value in project titan.EclipsePlug-ins by eclipse.
the class SpecificValue_Template method checkTemplateSpecificLengthRestriction.
@Override
protected /**
* {@inheritDoc}
*/
void checkTemplateSpecificLengthRestriction(final CompilationTimeStamp timestamp, final Type_type typeType) {
IValue value = getValue();
final IReferenceChain referenceChain = ReferenceChain.getInstance(IReferenceChain.CIRCULARREFERENCE, true);
value = value.getValueRefdLast(timestamp, referenceChain);
referenceChain.release();
switch(value.getValuetype()) {
case BITSTRING_VALUE:
if (Type_type.TYPE_BITSTRING.equals(typeType)) {
lengthRestriction.checkNofElements(timestamp, ((Bitstring_Value) value).getValueLength(), false, false, false, this);
}
break;
case HEXSTRING_VALUE:
if (Type_type.TYPE_HEXSTRING.equals(typeType)) {
lengthRestriction.checkNofElements(timestamp, ((Hexstring_Value) value).getValueLength(), false, false, false, this);
}
break;
case OCTETSTRING_VALUE:
if (Type_type.TYPE_OCTETSTRING.equals(typeType)) {
lengthRestriction.checkNofElements(timestamp, ((Octetstring_Value) value).getValueLength(), false, false, false, this);
}
break;
case CHARSTRING_VALUE:
if (Type_type.TYPE_CHARSTRING.equals(typeType)) {
lengthRestriction.checkNofElements(timestamp, ((Charstring_Value) value).getValueLength(), false, false, false, this);
} else if (Type_type.TYPE_UCHARSTRING.equals(typeType)) {
value = value.setValuetype(timestamp, Value_type.UNIVERSALCHARSTRING_VALUE);
lengthRestriction.checkNofElements(timestamp, ((UniversalCharstring_Value) value).getValueLength(), false, false, false, this);
}
break;
case UNIVERSALCHARSTRING_VALUE:
if (Type_type.TYPE_UCHARSTRING.equals(typeType)) {
lengthRestriction.checkNofElements(timestamp, ((UniversalCharstring_Value) value).getValueLength(), false, false, false, this);
}
break;
case SEQUENCEOF_VALUE:
if (Type_type.TYPE_SEQUENCE_OF.equals(typeType)) {
lengthRestriction.checkNofElements(timestamp, ((SequenceOf_Value) value).getNofComponents(), false, false, false, this);
}
break;
case SETOF_VALUE:
if (Type_type.TYPE_SET_OF.equals(typeType)) {
lengthRestriction.checkNofElements(timestamp, ((SetOf_Value) value).getNofComponents(), false, false, false, this);
}
break;
case OMIT_VALUE:
lengthRestriction.getLocation().reportSemanticError("Length restriction cannot be used with omit value");
break;
default:
// they are either correct or not applicable to the type
break;
}
}
Aggregations