org.bson.codecs.NumberCodecHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongo-java-driver Show documentation
Show all versions of mongo-java-driver Show documentation
The MongoDB Java Driver uber-artifact, containing mongodb-driver, mongodb-driver-core, and bson
/*
* Copyright 2008-present MongoDB, Inc.
*
* Licensed 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.bson.codecs;
import org.bson.BsonInvalidOperationException;
import org.bson.BsonReader;
import org.bson.BsonType;
import static java.lang.String.format;
final class NumberCodecHelper {
static int decodeInt(final BsonReader reader) {
int intValue;
BsonType bsonType = reader.getCurrentBsonType();
switch (bsonType) {
case INT32:
intValue = reader.readInt32();
break;
case INT64:
long longValue = reader.readInt64();
intValue = (int) longValue;
if (longValue != (long) intValue) {
throw invalidConversion(Integer.class, longValue);
}
break;
case DOUBLE:
double doubleValue = reader.readDouble();
intValue = (int) doubleValue;
if (doubleValue != (double) intValue) {
throw invalidConversion(Integer.class, doubleValue);
}
break;
default:
throw new BsonInvalidOperationException(format("Invalid numeric type, found: %s", bsonType));
}
return intValue;
}
static long decodeLong(final BsonReader reader) {
long longValue;
BsonType bsonType = reader.getCurrentBsonType();
switch (bsonType) {
case INT32:
longValue = reader.readInt32();
break;
case INT64:
longValue = reader.readInt64();
break;
case DOUBLE:
double doubleValue = reader.readDouble();
longValue = (long) doubleValue;
if (doubleValue != (double) longValue) {
throw invalidConversion(Long.class, doubleValue);
}
break;
default:
throw new BsonInvalidOperationException(format("Invalid numeric type, found: %s", bsonType));
}
return longValue;
}
static double decodeDouble(final BsonReader reader) {
double doubleValue;
BsonType bsonType = reader.getCurrentBsonType();
switch (bsonType) {
case INT32:
doubleValue = reader.readInt32();
break;
case INT64:
long longValue = reader.readInt64();
doubleValue = longValue;
if (longValue != (long) doubleValue) {
throw invalidConversion(Double.class, longValue);
}
break;
case DOUBLE:
doubleValue = reader.readDouble();
break;
default:
throw new BsonInvalidOperationException(format("Invalid numeric type, found: %s", bsonType));
}
return doubleValue;
}
private static BsonInvalidOperationException invalidConversion(final Class clazz, final Number value) {
return new BsonInvalidOperationException(format("Could not convert `%s` to a %s without losing precision", value, clazz));
}
private NumberCodecHelper() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy