17#include "arcane/core/internal/StringVariableReplace.h"
19#include "arcane/utils/CommandLineArguments.h"
20#include "arcane/utils/PlatformUtils.h"
21#include "arcane/utils/SmallArray.h"
22#include "arcane/utils/StringBuilder.h"
23#include "arcane/utils/String.h"
24#include "arcane/utils/FatalErrorException.h"
25#include "arcane/utils/List.h"
36String StringVariableReplace::
37replaceWithCmdLineArgs(
StringView string_with_symbols,
bool fatal_if_not_found,
bool fatal_if_invalid)
41 const CommandLineArguments cla{ args };
42 return replaceWithCmdLineArgs(cla.parameters(), string_with_symbols, fatal_if_not_found, fatal_if_invalid);
97replaceWithCmdLineArgs(
const ParameterList& parameter_list,
StringView string_with_symbols,
bool fatal_if_not_found,
bool fatal_if_invalid)
103 return string_with_symbols;
106 if (string_with_symbols.
empty())
107 return string_with_symbols;
114 _countChar(string_with_symbols,
'@', nb_at, nb_at_with_escape);
115 if (nb_at == 0 && nb_at_with_escape == 0)
116 return string_with_symbols;
119 if (fatal_if_invalid && nb_at % 2 == 1) {
126 const Integer size_array_w_splits = (nb_at + 1) + (nb_at_with_escape * 2);
131 const Integer max_index = size_array_w_splits % 2 == 0 ? size_array_w_splits - 1 : size_array_w_splits;
140 for (
Integer i = 0; i < max_index; ++i) {
147 if (i % 2 == 0 || part.bytes()[0] ==
'@') {
148 combined.append(part);
152 if (reference_input.
null()) {
153 if (fatal_if_not_found) {
154 ARCANE_FATAL(
"Symbol @{0}@ not found in the parameter list", part);
158 combined.append(reference_input);
165 if (size_array_w_splits % 2 == 0) {
166 combined.append(string_splited[string_splited.
size() - 1]);
212 bool previous_backslash =
false;
214 for (
Int64 i = 0; i < len; ++i) {
216 if (str_span[i] == c) {
218 if (previous_backslash) {
220 str_view_array[index++] = str_view.
subView(offset, i - 1 - offset);
222 str_view_array[index++] = str_view.
subView(i, 1);
225 previous_backslash =
false;
229 str_view_array[index++] = str_view.
subView(offset, i - offset);
235 else if (str_span[i] ==
'\\') {
237 if (previous_backslash)
238 previous_backslash =
false;
240 previous_backslash =
true;
243 previous_backslash =
false;
247 str_view_array[index] = str_view.
subView(offset, len - offset);
266 count_c_with_escape = 0;
267 bool previous_backslash =
false;
269 for (
const Byte byte : str_view.
bytes()) {
271 if (previous_backslash) {
272 count_c_with_escape++;
273 previous_backslash =
false;
279 else if (
byte ==
'\\') {
281 if (previous_backslash)
282 previous_backslash =
false;
284 previous_backslash =
true;
287 previous_backslash =
false;
#define ARCANE_FATAL(...)
Macro envoyant une exception FatalErrorException.
Integer size() const
Nombre d'éléments du vecteur.
Vue modifiable d'un tableau d'un type T.
String getParameterOrNull(const String ¶m_name) const
Récupère le paramètre de nom param_name.
Tableau 1D de données avec buffer pré-alloué sur la pile.
Vue d'un tableau d'éléments de type T.
Constructeur de chaîne de caractère unicode.
String toString() const
Retourne la chaîne de caractères construite.
static void _countChar(StringView str_view, char c, Integer &count_c, Integer &count_c_with_escape)
Méthode permettant de compter le nombre de caractères séparateurs dans une chaine de caractères.
static void _splitString(StringView str_view, ArrayView< StringView > str_view_array, char c)
Méthode permettant de splitter la chaine "str_view" en plusieurs morceaux. Les splits seront entre le...
Vue sur une chaîne de caractères UTF-8.
constexpr Span< const Byte > bytes() const ARCCORE_NOEXCEPT
Retourne la conversion de l'instance dans l'encodage UTF-8.
constexpr Int64 length() const ARCCORE_NOEXCEPT
Longueur en octet de la chaîne de caractères.
StringView subView(Int64 pos) const
Sous-chaîne commençant à la position pos.
constexpr bool empty() const ARCCORE_NOEXCEPT
Vrai si la chaîne est nulle ou vide.
Chaîne de caractères unicode.
bool null() const
Retourne true si la chaîne est nulle.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
std::int64_t Int64
Type entier signé sur 64 bits.
Int32 Integer
Type représentant un entier.
List< String > StringList
Tableau de chaînes de caractères unicode.
unsigned char Byte
Type d'un octet.