1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
|
//===-- runtime/command.cpp -----------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "flang/Runtime/command.h"
#include "environment.h"
#include "stat.h"
#include "terminator.h"
#include "tools.h"
#include "flang/Runtime/descriptor.h"
#include <cstdlib>
#include <limits>
namespace Fortran::runtime {
std::int32_t RTNAME(ArgumentCount)() {
int argc{executionEnvironment.argc};
if (argc > 1) {
// C counts the command name as one of the arguments, but Fortran doesn't.
return argc - 1;
}
return 0;
}
// Returns the length of the \p string. Assumes \p string is valid.
static std::int64_t StringLength(const char *string) {
std::size_t length{std::strlen(string)};
if constexpr (sizeof(std::size_t) < sizeof(std::int64_t)) {
return static_cast<std::int64_t>(length);
} else {
std::size_t max{std::numeric_limits<std::int64_t>::max()};
return length > max ? 0 // Just fail.
: static_cast<std::int64_t>(length);
}
}
static bool IsValidCharDescriptor(const Descriptor *value) {
return value && value->IsAllocated() &&
value->type() == TypeCode(TypeCategory::Character, 1) &&
value->rank() == 0;
}
static bool IsValidIntDescriptor(const Descriptor *length) {
auto typeCode{length->type().GetCategoryAndKind()};
// Check that our descriptor is allocated and is a scalar integer with
// kind != 1 (i.e. with a large enough decimal exponent range).
return length->IsAllocated() && length->rank() == 0 &&
length->type().IsInteger() && typeCode && typeCode->second != 1;
}
static void FillWithSpaces(const Descriptor &value, std::size_t offset = 0) {
if (offset < value.ElementBytes()) {
std::memset(
value.OffsetElement(offset), ' ', value.ElementBytes() - offset);
}
}
static std::int32_t CopyToDescriptor(const Descriptor &value,
const char *rawValue, std::int64_t rawValueLength, const Descriptor *errmsg,
std::size_t offset = 0) {
std::int64_t toCopy{std::min(rawValueLength,
static_cast<std::int64_t>(value.ElementBytes() - offset))};
if (toCopy < 0) {
return ToErrmsg(errmsg, StatValueTooShort);
}
std::memcpy(value.OffsetElement(offset), rawValue, toCopy);
if (rawValueLength > toCopy) {
return ToErrmsg(errmsg, StatValueTooShort);
}
return StatOk;
}
static std::int32_t CheckAndCopyToDescriptor(const Descriptor *value,
const char *rawValue, const Descriptor *errmsg, std::size_t &offset) {
bool haveValue{IsValidCharDescriptor(value)};
std::int64_t len{StringLength(rawValue)};
if (len <= 0) {
if (haveValue) {
FillWithSpaces(*value);
}
return ToErrmsg(errmsg, StatMissingArgument);
}
std::int32_t stat{StatOk};
if (haveValue) {
stat = CopyToDescriptor(*value, rawValue, len, errmsg, offset);
}
offset += len;
return stat;
}
static void StoreLengthToDescriptor(
const Descriptor *length, std::int64_t value, Terminator &terminator) {
auto typeCode{length->type().GetCategoryAndKind()};
int kind{typeCode->second};
Fortran::runtime::ApplyIntegerKind<Fortran::runtime::StoreIntegerAt, void>(
kind, terminator, *length, /* atIndex = */ 0, value);
}
template <int KIND> struct FitsInIntegerKind {
bool operator()([[maybe_unused]] std::int64_t value) {
if constexpr (KIND >= 8) {
return true;
} else {
return value <= std::numeric_limits<Fortran::runtime::CppTypeFor<
Fortran::common::TypeCategory::Integer, KIND>>::max();
}
}
};
static bool FitsInDescriptor(
const Descriptor *length, std::int64_t value, Terminator &terminator) {
auto typeCode{length->type().GetCategoryAndKind()};
int kind{typeCode->second};
return Fortran::runtime::ApplyIntegerKind<FitsInIntegerKind, bool>(
kind, terminator, value);
}
std::int32_t RTNAME(GetCommandArgument)(std::int32_t n, const Descriptor *value,
const Descriptor *length, const Descriptor *errmsg, const char *sourceFile,
int line) {
Terminator terminator{sourceFile, line};
if (value) {
RUNTIME_CHECK(terminator, IsValidCharDescriptor(value));
FillWithSpaces(*value);
}
// Store 0 in case we error out later on.
if (length) {
RUNTIME_CHECK(terminator, IsValidIntDescriptor(length));
StoreLengthToDescriptor(length, 0, terminator);
}
if (n < 0 || n >= executionEnvironment.argc) {
return ToErrmsg(errmsg, StatInvalidArgumentNumber);
}
const char *arg{executionEnvironment.argv[n]};
std::int64_t argLen{StringLength(arg)};
if (argLen <= 0) {
return ToErrmsg(errmsg, StatMissingArgument);
}
if (length && FitsInDescriptor(length, argLen, terminator)) {
StoreLengthToDescriptor(length, argLen, terminator);
}
if (value) {
return CopyToDescriptor(*value, arg, argLen, errmsg);
}
return StatOk;
}
std::int32_t RTNAME(GetCommand)(const Descriptor *value,
const Descriptor *length, const Descriptor *errmsg, const char *sourceFile,
int line) {
Terminator terminator{sourceFile, line};
if (value) {
RUNTIME_CHECK(terminator, IsValidCharDescriptor(value));
}
// Store 0 in case we error out later on.
if (length) {
RUNTIME_CHECK(terminator, IsValidIntDescriptor(length));
StoreLengthToDescriptor(length, 0, terminator);
}
auto shouldContinue = [&](std::int32_t stat) -> bool {
// We continue as long as everything is ok OR the value descriptor is
// too short, but we still need to compute the length.
return stat == StatOk || (length && stat == StatValueTooShort);
};
std::size_t offset{0};
if (executionEnvironment.argc == 0) {
return CheckAndCopyToDescriptor(value, "", errmsg, offset);
}
// value = argv[0]
std::int32_t stat{CheckAndCopyToDescriptor(
value, executionEnvironment.argv[0], errmsg, offset)};
if (!shouldContinue(stat)) {
return stat;
}
// value += " " + argv[1:n]
for (std::int32_t i{1}; i < executionEnvironment.argc; ++i) {
stat = CheckAndCopyToDescriptor(value, " ", errmsg, offset);
if (!shouldContinue(stat)) {
return stat;
}
stat = CheckAndCopyToDescriptor(
value, executionEnvironment.argv[i], errmsg, offset);
if (!shouldContinue(stat)) {
return stat;
}
}
if (length && FitsInDescriptor(length, offset, terminator)) {
StoreLengthToDescriptor(length, offset, terminator);
}
// value += spaces for padding
if (value) {
FillWithSpaces(*value, offset);
}
return stat;
}
static std::size_t LengthWithoutTrailingSpaces(const Descriptor &d) {
std::size_t s{d.ElementBytes() - 1};
while (*d.OffsetElement(s) == ' ') {
--s;
}
return s + 1;
}
std::int32_t RTNAME(GetEnvVariable)(const Descriptor &name,
const Descriptor *value, const Descriptor *length, bool trim_name,
const Descriptor *errmsg, const char *sourceFile, int line) {
Terminator terminator{sourceFile, line};
if (value) {
RUNTIME_CHECK(terminator, IsValidCharDescriptor(value));
FillWithSpaces(*value);
}
// Store 0 in case we error out later on.
if (length) {
RUNTIME_CHECK(terminator, IsValidIntDescriptor(length));
StoreLengthToDescriptor(length, 0, terminator);
}
const char *rawValue{nullptr};
std::size_t nameLength{
trim_name ? LengthWithoutTrailingSpaces(name) : name.ElementBytes()};
if (nameLength != 0) {
rawValue = executionEnvironment.GetEnv(
name.OffsetElement(), nameLength, terminator);
}
if (!rawValue) {
return ToErrmsg(errmsg, StatMissingEnvVariable);
}
std::int64_t varLen{StringLength(rawValue)};
if (length && FitsInDescriptor(length, varLen, terminator)) {
StoreLengthToDescriptor(length, varLen, terminator);
}
if (value) {
return CopyToDescriptor(*value, rawValue, varLen, errmsg);
}
return StatOk;
}
} // namespace Fortran::runtime
|