aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/derivations.cc
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2022-01-06 14:31:23 +0100
committerRobert Hensing <robert@roberthensing.nl>2022-01-19 15:21:56 +0100
commit55c58580be89e0f7ec6519bd7a7f2cded4fab382 (patch)
tree7f05857e822f970233f9fc5fa57d8c97e2e92374 /src/libstore/derivations.cc
parentd038a67bd3c6ed0d6452d595cf0af3115e14c48f (diff)
Add withBuffer
... to avoid non-standard, unidiomatic alloca.
Diffstat (limited to 'src/libstore/derivations.cc')
-rw-r--r--src/libstore/derivations.cc30
1 files changed, 12 insertions, 18 deletions
diff --git a/src/libstore/derivations.cc b/src/libstore/derivations.cc
index 616e78076..21ea84dbf 100644
--- a/src/libstore/derivations.cc
+++ b/src/libstore/derivations.cc
@@ -272,25 +272,19 @@ Derivation parseDerivation(const Store & store, std::string && s, std::string_vi
static void printString(string & res, std::string_view s)
{
- char * buf;
size_t bufSize = s.size() * 2 + 2;
- std::unique_ptr<char[]> dynBuf;
- if (bufSize < 0x10000) {
- buf = (char *)alloca(bufSize);
- } else {
- dynBuf = decltype(dynBuf)(new char[bufSize]);
- buf = dynBuf.get();
- }
- char * p = buf;
- *p++ = '"';
- for (auto c : s)
- if (c == '\"' || c == '\\') { *p++ = '\\'; *p++ = c; }
- else if (c == '\n') { *p++ = '\\'; *p++ = 'n'; }
- else if (c == '\r') { *p++ = '\\'; *p++ = 'r'; }
- else if (c == '\t') { *p++ = '\\'; *p++ = 't'; }
- else *p++ = c;
- *p++ = '"';
- res.append(buf, p - buf);
+ withBuffer<void, char>(bufSize, [&](char buf[]) {
+ char * p = buf;
+ *p++ = '"';
+ for (auto c : s)
+ if (c == '\"' || c == '\\') { *p++ = '\\'; *p++ = c; }
+ else if (c == '\n') { *p++ = '\\'; *p++ = 'n'; }
+ else if (c == '\r') { *p++ = '\\'; *p++ = 'r'; }
+ else if (c == '\t') { *p++ = '\\'; *p++ = 't'; }
+ else *p++ = c;
+ *p++ = '"';
+ res.append(buf, p - buf);
+ });
}