blob: 80e7f3b6456b1399466278c27c011090762df9c9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Mukul Gandhi, and others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Mukul Gandhi - bug 277639 - implementation of xs:byte data type
* David Carver - bug 262765 - fixed abs value tests.
* Mukul Gandhi - bug 280798 - PsychoPath support for JDK 1.4
*******************************************************************************/
package org.eclipse.wst.xml.xpath2.processor.internal.types;
import java.math.BigInteger;
import org.eclipse.wst.xml.xpath2.api.Item;
import org.eclipse.wst.xml.xpath2.api.ResultBuffer;
import org.eclipse.wst.xml.xpath2.api.ResultSequence;
import org.eclipse.wst.xml.xpath2.api.typesystem.TypeDefinition;
import org.eclipse.wst.xml.xpath2.processor.DynamicError;
import org.eclipse.wst.xml.xpath2.processor.internal.types.builtin.BuiltinTypeLibrary;
public class XSByte extends XSShort {
private static final String XS_BYTE = "xs:byte";
/**
* Initializes a representation of 0
*/
public XSByte() {
this(BigInteger.valueOf(0));
}
/**
* Initializes a representation of the supplied byte value
*
* @param x
* Byte to be stored
*/
public XSByte(BigInteger x) {
super(x);
}
/**
* Retrieves the datatype's full pathname
*
* @return "xs:byte" which is the datatype's full pathname
*/
public String string_type() {
return XS_BYTE;
}
/**
* Retrieves the datatype's name
*
* @return "byte" which is the datatype's name
*/
public String type_name() {
return "byte";
}
/**
* Creates a new ResultSequence consisting of the extractable 'byte' in the
* supplied ResultSequence
*
* @param arg
* The ResultSequence from which the byte is to be extracted
* @return New ResultSequence consisting of the 'byte' supplied
* @throws DynamicError
*/
public ResultSequence constructor(ResultSequence arg) throws DynamicError {
if (arg.empty())
return ResultBuffer.EMPTY;
// the function conversion rules apply here too. Get the argument
// and convert it's string value to a byte.
Item aat = arg.first();
try {
BigInteger bigInt = new BigInteger(aat.getStringValue());
// doing the range checking
BigInteger min = BigInteger.valueOf(-128L);
BigInteger max = BigInteger.valueOf(127L);
if (bigInt.compareTo(min) < 0 || bigInt.compareTo(max) > 0) {
// invalid input
throw DynamicError.cant_cast(null);
}
return new XSByte(bigInt);
} catch (NumberFormatException e) {
throw DynamicError.cant_cast(null);
}
}
public TypeDefinition getTypeDefinition() {
return BuiltinTypeLibrary.XS_BYTE;
}
}