blob: c0cc7989fe76f3a1b7cbde83dccff6583da248b9 [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.
*/
#include "Short.h"
#include "Integer.h"
#include <sstream>
using namespace decaf;
using namespace decaf::lang;
using namespace decaf::lang::exceptions;
////////////////////////////////////////////////////////////////////////////////
Short::Short( short value ) {
this->value = value;
}
////////////////////////////////////////////////////////////////////////////////
Short::Short( const std::string& value ) throw( exceptions::NumberFormatException ) {
this->value = value.size(); //Short::parseShort( value );
}
////////////////////////////////////////////////////////////////////////////////
int Short::compareTo( const Short& s ) const {
return value == s.value ? 0 : ( value > s.value ? 1 : -1 );
}
////////////////////////////////////////////////////////////////////////////////
int Short::compareTo( const short& s ) const {
return value == s ? 0 : ( value > s ? 1 : -1 );
}
////////////////////////////////////////////////////////////////////////////////
std::string Short::toString() const {
return Integer::toString( this->value );
}
////////////////////////////////////////////////////////////////////////////////
std::string Short::toString( short value ) {
return Integer::toString( value );
}
////////////////////////////////////////////////////////////////////////////////
short Short::parseShort( const std::string& s, int radix )
throw ( exceptions::NumberFormatException ) {
int intValue = Integer::parseInt( s, radix );
short result = (short)intValue;
if( result != intValue ) {
throw NumberFormatException(
__FILE__, __LINE__,
"Short::parseShort - Not a valid short encoded string.");
}
return result;
}
////////////////////////////////////////////////////////////////////////////////
short Short::parseShort( const std::string& s )
throw ( exceptions::NumberFormatException ) {
return parseShort( s, 10 );
}
////////////////////////////////////////////////////////////////////////////////
Short Short::decode( const std::string& value )
throw ( exceptions::NumberFormatException ) {
int intValue = Integer::decode( value ).intValue();
short result = (short)intValue;
if( result != intValue ) {
throw NumberFormatException(
__FILE__, __LINE__,
"Short::decode - Not a valid short encoded string.");
}
return Short( result );
}
////////////////////////////////////////////////////////////////////////////////
short Short::reverseBytes( short value ) {
unsigned short temp = value;
temp = ( ( temp & 0xFF00 ) >> 8 ) | ( ( temp & 0x00FF ) << 8 );
return temp;
}
////////////////////////////////////////////////////////////////////////////////
Short Short::valueOf( short value ) {
return Short( value );
}
////////////////////////////////////////////////////////////////////////////////
Short Short::valueOf( const std::string& value )
throw ( exceptions::NumberFormatException ) {
return Short( parseShort( value, 10 ) );
}
////////////////////////////////////////////////////////////////////////////////
Short Short::valueOf( const std::string& value, int radix )
throw ( exceptions::NumberFormatException ) {
return Short( parseShort( value, radix ) );
}