blob: 97816759c1236d092b35ca4b068af946f476b21b [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 "types/IntType.hpp"
#include <cstdint>
#include <cstdio>
#include <string>
#include "types/NullCoercibilityCheckMacro.hpp"
#include "types/Type.hpp"
#include "types/TypeID.hpp"
#include "types/TypedValue.hpp"
#include "glog/logging.h"
namespace quickstep {
const TypeID IntType::kStaticTypeID = kInt;
bool IntType::isSafelyCoercibleFrom(const Type &original_type) const {
QUICKSTEP_NULL_COERCIBILITY_CHECK();
return original_type.getTypeID() == kInt;
}
TypedValue IntType::coerceValue(const TypedValue &original_value,
const Type &original_type) const {
DCHECK(isCoercibleFrom(original_type))
<< "Can't coerce value of Type " << original_type.getName()
<< " to Type " << getName();
if (original_value.isNull()) {
return makeNullValue();
}
switch (original_type.getTypeID()) {
case kInt:
return original_value;
case kLong:
return TypedValue(static_cast<int>(original_value.getLiteral<std::int64_t>()));
case kFloat:
return TypedValue(static_cast<int>(original_value.getLiteral<float>()));
case kDouble:
return TypedValue(static_cast<int>(original_value.getLiteral<double>()));
default:
LOG(FATAL) << "Attempted to coerce Type " << original_type.getName()
<< " (not recognized as a numeric Type) to " << getName();
}
}
std::string IntType::printValueToString(const TypedValue &value) const {
DCHECK(!value.isNull());
return std::to_string(value.getLiteral<int>());
}
void IntType::printValueToFile(const TypedValue &value,
FILE *file,
const int padding) const {
DCHECK(!value.isNull());
std::fprintf(file,
"%*d",
static_cast<int>(padding),
value.getLiteral<int>());
}
bool IntType::parseValueFromString(const std::string &value_string,
TypedValue *value) const {
int parsed_int;
int read_chars;
int matched = std::sscanf(value_string.c_str(),
"%d%n",
&parsed_int,
&read_chars);
if ((matched != 1)
|| (static_cast<std::string::size_type>(read_chars) != value_string.length())) {
return false;
}
*value = TypedValue(parsed_int);
return true;
}
} // namespace quickstep