rapidyaml  0.13.0
parse and emit YAML, and do it fast
cat: concatenate arguments to string

Functions

template<class Arg , class... Args>
size_t c4::cat (substr buf, Arg const &a, Args const &...more)
 serialize the arguments, concatenating them to the given fixed-size buffer. More...
 
template<class... Args>
substr c4::cat_sub (substr buf, Args const &...args)
 like c4::cat() but return a substr instead of a size More...
 
template<class CharOwningContainer , class... Args>
void c4::catrs (CharOwningContainer *cont, Args const &...args)
 cat+resize: like c4::cat(), but receives a container, and resizes it as needed to contain the result. More...
 
template<class CharOwningContainer , class... Args>
CharOwningContainer c4::catrs (Args const &...args)
 cat+resize: like c4::cat(), but creates and returns a new container sized as needed to contain the result. More...
 
template<class CharOwningContainer , class... Args>
csubstr c4::catrs_append (CharOwningContainer *cont, Args const &...args)
 cat+resize+append: like c4::cat(), but receives a container, and appends to it instead of overwriting it. More...
 

Detailed Description

Function Documentation

◆ cat()

template<class Arg , class... Args>
size_t c4::cat ( substr  buf,
Arg const &  a,
Args const &...  more 
)

serialize the arguments, concatenating them to the given fixed-size buffer.

The buffer size is strictly respected: no writes will occur beyond its end.

Returns
the number of characters needed to write all the arguments into the buffer.
See also
c4::catrs() if instead of a fixed-size buffer, a resizeable container is desired
c4::uncat() for the inverse function
c4::catsep() if a separator between each argument is to be used
c4::format() if a format string is desired
Note
The arguments to format are restricted (legal because they are rvalues). This may require a workaround when arguments of type char[]/const char[] are passed repeatedly to the function. For example,
const char str[] = "Hi! ";
cat(buf, str, str, str); // compile error: 'passing argument 2 to ‘restrict’-qualified parameter aliases with arguments 3, 4'
size_t cat(substr buf, Arg const &a, Args const &...more)
serialize the arguments, concatenating them to the given fixed-size buffer.
Definition: format.hpp:653
It is possible to work around the problem by suppressing -Wrestrict or by using the decayed type char* or const char*, or even wrapping the argument in a csubstr():
const char str[] = "Hi! ";
csubstr ss = to_csubstr(str);
cat(buf, ss, ss, ss); // ok! compiles cleanly
csubstr to_csubstr(substr s) noexcept
neutral version for use in generic code
Definition: substr.hpp:2204

Definition at line 653 of file format.hpp.

654 {
655  size_t num = to_chars(buf, a);
656  buf = buf.len >= num ? buf.sub(num) : substr{};
657  num += cat(buf, more...);
658  return num;
659 }
size_t to_chars(substr buf, fmt::center_< T > const &align)
Definition: format.hpp:596

◆ cat_sub()

template<class... Args>
substr c4::cat_sub ( substr  buf,
Args const &...  args 
)

like c4::cat() but return a substr instead of a size

Definition at line 663 of file format.hpp.

664 {
665  size_t sz = cat(buf, args...);
666  C4_CHECK(sz <= buf.len);
667  return {buf.str, sz <= buf.len ? sz : buf.len};
668 }

◆ catrs() [1/2]

template<class CharOwningContainer , class... Args>
void c4::catrs ( CharOwningContainer *  cont,
Args const &...  args 
)
inline

cat+resize: like c4::cat(), but receives a container, and resizes it as needed to contain the result.

The container is overwritten. To append to it, use c4::catrs_append().

See also
c4::cat()
c4::catrs_append()
Note
The arguments to format are restricted (legal because they are rvalues). This may require a workaround when arguments of type char[]/const char[] are passed repeatedly to the function. For example,
const char str[] = "Hi! ";
cat(buf, str, str, str); // compile error: 'passing argument 2 to ‘restrict’-qualified parameter aliases with arguments 3, 4'
It is possible to work around the problem by suppressing -Wrestrict or by using the decayed type char* or const char*, or even wrapping the argument in a csubstr():
const char str[] = "Hi! ";
csubstr ss = to_csubstr(str);
cat(buf, ss, ss, ss); // ok! compiles cleanly

Definition at line 1044 of file format.hpp.

1045 {
1046  cont->resize(cont->capacity()); // improve the odds of fitting in the original buffer
1047 retry:
1048  substr buf = to_substr(*cont);
1049  size_t ret = cat(buf, args...);
1050  cont->resize(ret);
1051  if(ret > buf.len)
1052  goto retry;
1053 }
substr to_substr(substr s) noexcept
neutral version for use in generic code
Definition: substr.hpp:2202

◆ catrs() [2/2]

template<class CharOwningContainer , class... Args>
CharOwningContainer c4::catrs ( Args const &...  args)
inline

cat+resize: like c4::cat(), but creates and returns a new container sized as needed to contain the result.

See also
c4::cat()
Note
The arguments to format are restricted (legal because they are rvalues). This may require a workaround when arguments of type char[]/const char[] are passed repeatedly to the function. For example,
const char str[] = "Hi! ";
cat(buf, str, str, str); // compile error: 'passing argument 2 to ‘restrict’-qualified parameter aliases with arguments 3, 4'
It is possible to work around the problem by suppressing -Wrestrict or by using the decayed type char* or const char*, or even wrapping the argument in a csubstr():
const char str[] = "Hi! ";
csubstr ss = to_csubstr(str);
cat(buf, ss, ss, ss); // ok! compiles cleanly

Definition at line 1079 of file format.hpp.

1080 {
1081  CharOwningContainer cont;
1082  catrs(&cont, args...);
1083  return cont;
1084 }
CharOwningContainer catrs(Args const &...args)
cat+resize: like c4::cat(), but creates and returns a new container sized as needed to contain the re...
Definition: format.hpp:1079

◆ catrs_append()

template<class CharOwningContainer , class... Args>
csubstr c4::catrs_append ( CharOwningContainer *  cont,
Args const &...  args 
)
inline

cat+resize+append: like c4::cat(), but receives a container, and appends to it instead of overwriting it.

The container is resized as needed to contain the result.

Returns
the region newly appended to the original container
See also
c4::cat()
c4::catrs()
Note
The arguments to format are restricted (legal because they are rvalues). This may require a workaround when arguments of type char[]/const char[] are passed repeatedly to the function. For example,
const char str[] = "Hi! ";
cat(buf, str, str, str); // compile error: 'passing argument 2 to ‘restrict’-qualified parameter aliases with arguments 3, 4'
It is possible to work around the problem by suppressing -Wrestrict or by using the decayed type char* or const char*, or even wrapping the argument in a csubstr():
const char str[] = "Hi! ";
csubstr ss = to_csubstr(str);
cat(buf, ss, ss, ss); // ok! compiles cleanly

Definition at line 1113 of file format.hpp.

1114 {
1115  const size_t pos = cont->size();
1116  cont->resize(cont->capacity()); // improve the odds of fitting in the original buffer
1117 retry:
1118  substr buf = to_substr(*cont).sub(pos);
1119  size_t ret = cat(buf, args...);
1120  cont->resize(pos + ret);
1121  if(ret > buf.len)
1122  goto retry;
1123  return to_csubstr(*cont).range(pos, cont->size());
1124 }