Raphael Isemann | 8081428 | 2020-01-24 08:23:27 +0100 | [diff] [blame] | 1 | //===-- VASprintf.cpp -----------------------------------------------------===// |
Zachary Turner | 24ae629 | 2017-02-16 19:38:21 +0000 | [diff] [blame] | 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Zachary Turner | 24ae629 | 2017-02-16 19:38:21 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
Zachary Turner | d9c0e15 | 2017-02-16 20:15:26 +0000 | [diff] [blame] | 9 | #include "lldb/Utility/VASPrintf.h" |
Zachary Turner | 24ae629 | 2017-02-16 19:38:21 +0000 | [diff] [blame] | 10 | |
| 11 | #include "llvm/ADT/SmallString.h" |
Jonas Devlieghere | 672d2c1 | 2018-11-11 23:16:43 +0000 | [diff] [blame] | 12 | #include "llvm/ADT/SmallVector.h" |
| 13 | #include "llvm/ADT/StringRef.h" |
Zachary Turner | 24ae629 | 2017-02-16 19:38:21 +0000 | [diff] [blame] | 14 | |
Jonas Devlieghere | 672d2c1 | 2018-11-11 23:16:43 +0000 | [diff] [blame] | 15 | #include <assert.h> |
| 16 | #include <stdarg.h> |
| 17 | #include <stdio.h> |
Zachary Turner | 24ae629 | 2017-02-16 19:38:21 +0000 | [diff] [blame] | 18 | |
| 19 | bool lldb_private::VASprintf(llvm::SmallVectorImpl<char> &buf, const char *fmt, |
| 20 | va_list args) { |
| 21 | llvm::SmallString<16> error("<Encoding error>"); |
| 22 | bool result = true; |
| 23 | |
| 24 | // Copy in case our first call to vsnprintf doesn't fit into our buffer |
| 25 | va_list copy_args; |
| 26 | va_copy(copy_args, args); |
| 27 | |
| 28 | buf.resize(buf.capacity()); |
| 29 | // Write up to `capacity` bytes, ignoring the current size. |
| 30 | int length = ::vsnprintf(buf.data(), buf.size(), fmt, args); |
| 31 | if (length < 0) { |
| 32 | buf = error; |
| 33 | result = false; |
| 34 | goto finish; |
| 35 | } |
| 36 | |
Zachary Turner | 3bc714b | 2017-03-02 00:05:25 +0000 | [diff] [blame] | 37 | if (size_t(length) >= buf.size()) { |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 38 | // The error formatted string didn't fit into our buffer, resize it to the |
| 39 | // exact needed size, and retry |
Zachary Turner | 24ae629 | 2017-02-16 19:38:21 +0000 | [diff] [blame] | 40 | buf.resize(length + 1); |
| 41 | length = ::vsnprintf(buf.data(), buf.size(), fmt, copy_args); |
| 42 | if (length < 0) { |
| 43 | buf = error; |
| 44 | result = false; |
| 45 | goto finish; |
| 46 | } |
Zachary Turner | 3bc714b | 2017-03-02 00:05:25 +0000 | [diff] [blame] | 47 | assert(size_t(length) < buf.size()); |
Zachary Turner | 24ae629 | 2017-02-16 19:38:21 +0000 | [diff] [blame] | 48 | } |
| 49 | buf.resize(length); |
| 50 | |
| 51 | finish: |
| 52 | va_end(args); |
| 53 | va_end(copy_args); |
| 54 | return result; |
| 55 | } |