XLKit  0.1.0
 All Classes Files Functions Typedefs Macros Groups
xlutil.hpp
Go to the documentation of this file.
1 
6 // Copyright (c) 2014 Edward Lam
7 //
8 // All rights reserved. This software is distributed under the
9 // Mozilla Public License, v. 2.0 ( http://www.mozilla.org/MPL/2.0/ ).
10 //
11 // Redistributions of source code must retain the above copyright
12 // and license notice and the following restrictions and disclaimer.
13 //
14 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
15 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
16 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
17 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
18 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY INDIRECT, INCIDENTAL,
19 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
20 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 
26 #ifndef XLKIT_UTIL_HPP
27 #define XLKIT_UTIL_HPP
28 
29 #include <xlkit/xlversion.hpp>
30 
31 #include <string>
32 
33 #include <stdio.h>
34 #include <stdarg.h>
35 
36 namespace xlkit {
38 namespace XLKIT_VERSION_NAME {
39 
40 #ifdef _MSC_VER
41 #define XLKIT_PUSH_DISABLE_WARN_DEPRECATION \
42  __pragma(warning(push)) \
43  __pragma(warning(disable:4996)) \
44 
45 #define XLKIT_POP_DISABLE_WARN_DEPRECATION \
46  __pragma(warning(pop)) \
47 
48 #else
49 #define XLKIT_PUSH_DISABLE_WARN_DEPRECATION
50 #define XLKIT_POP_DISABLE_WARN_DEPRECATION
51 #endif
52 
54 inline std::string
55 strprintfV(const char *fmt, va_list args) {
56  static const size_t NBUF = 2048;
57  std::string str(NBUF, 0);
58  while (true) {
59  XLKIT_PUSH_DISABLE_WARN_DEPRECATION
60  int n = vsnprintf(&str[0], str.size(), fmt, args);
61  XLKIT_POP_DISABLE_WARN_DEPRECATION
62  if (n > 0 && n < (int)str.size()) {
63  str.resize(n);
64  break;
65  }
66  str.append(NBUF, 0);
67  }
68  return str;
69 }
71 inline std::string
72 strprintf(const char *fmt, ...) {
73  va_list args;
74  va_start(args, fmt);
75  std::string str = strprintfV(fmt, args);
76  va_end(args);
77  return str;
78 }
79 
80 } // namespace XLKIT_VERSION_NAME
81 } // namespace xlkit
82 
83 #endif // XLKIT_UTIL_HPP
#define XLKIT_VERSION_NAME
Version namespace for this library.
Definition: xlversion.hpp:33
#define XLKIT_USE_VERSION_NAMESPACE
Macro used to pull the versioned namespace into the main xlkit namepsace.
Definition: xlversion.hpp:52
XLKit version defines.