XLKit  0.1.0
 All Classes Files Functions Typedefs Macros Groups
xldebug.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_XLDEBUG_HPP
27 #define XLKIT_XLDEBUG_HPP
28 
29 #include <xlkit/xlutil.hpp>
30 #include <xlkit/xlversion.hpp>
31 #include <string.h>
32 
33 namespace xlkit {
35 namespace XLKIT_VERSION_NAME {
36 
37 namespace detail {
38 
39 void outputDebugString(const char *msg);
40 
41 inline std::string
42 debugMsgV(const char* file, int n, const char* func, const char *fmt, va_list args) {
43  const char* base = strrchr(file, '\\');
44  if (!base)
45  base = strrchr(file, '/');
46  if (base)
47  file = base + 1;
48  std::string msg = strprintf("%s(%d) [%s]: ", file, n, func);
49  msg.append(strprintfV(fmt, args));
50  msg.append("\n");
51  return msg;
52 }
53 inline std::string
54 debugMsg(const char* file, int n, const char* func, const char *fmt, ...) {
55  va_list args;
56  va_start(args, fmt);
57  std::string msg = debugMsgV(file, n, func, fmt, args);
58  va_end(args);
59  return msg;
60 }
61 inline std::string
62 debugMsgS(const char* file, int n, const char* func, const std::string& msg) {
63  return debugMsg(file, n, func, "%s", msg.c_str());
64 }
65 inline void
66 debugOut(const char* file, int n, const char* func, const char *fmt, ...) {
67  va_list args;
68  va_start(args, fmt);
69  std::string msg = debugMsgV(file, n, func, fmt, args);
70  va_end(args);
71  detail::outputDebugString(msg.c_str());
72 }
73 
74 } // namespace detail
75 
80 #ifdef _DEBUG
81 #define XLDBG(FORMAT, ...) \
82  xlkit::detail::debugOut(__FILE__, __LINE__, __FUNCTION__, FORMAT, __VA_ARGS__) \
83 
84 #else
85 #define XLDBG(FORMAT, ...)
86 #endif
87 
88 } // namespace XLKIT_VERSION_NAME
89 } // namespace xlkit
90 
91 #endif // XLKIT_XLDEBUG_HPP
XLKit utilities.
#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.