Move definition of strlcpy to outside an #if
[folly.git] / folly / Demangle.cpp
1 /*
2  * Copyright 2015 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <folly/Demangle.h>
18
19 #include <algorithm>
20 #include <string.h>
21
22 #include <folly/Malloc.h>
23
24 #if FOLLY_HAVE_CPLUS_DEMANGLE_V3_CALLBACK
25 # include <cxxabi.h>
26
27 // From libiberty
28 //
29 // TODO(tudorb): Detect this with autoconf for the open-source version.
30 //
31 // __attribute__((__weak__)) doesn't work, because cplus_demangle_v3_callback
32 // is exported by an object file in libiberty.a, and the ELF spec says
33 // "The link editor does not extract archive members to resolve undefined weak
34 // symbols" (but, interestingly enough, will resolve undefined weak symbols
35 // with definitions from archive members that were extracted in order to
36 // resolve an undefined global (strong) symbol)
37
38 # ifndef DMGL_NO_OPTS
39 #  define FOLLY_DEFINED_DMGL 1
40 #  define DMGL_NO_OPTS    0          /* For readability... */
41 #  define DMGL_PARAMS     (1 << 0)   /* Include function args */
42 #  define DMGL_ANSI       (1 << 1)   /* Include const, volatile, etc */
43 #  define DMGL_JAVA       (1 << 2)   /* Demangle as Java rather than C++. */
44 #  define DMGL_VERBOSE    (1 << 3)   /* Include implementation details.  */
45 #  define DMGL_TYPES      (1 << 4)   /* Also try to demangle type encodings.  */
46 #  define DMGL_RET_POSTFIX (1 << 5)  /* Print function return types (when
47                                         present) after function signature */
48 # endif
49
50 extern "C" int cplus_demangle_v3_callback(
51     const char* mangled,
52     int options,  // We use DMGL_PARAMS | DMGL_TYPES, aka 0x11
53     void (*callback)(const char*, size_t, void*),
54     void* arg);
55
56 #endif
57
58 namespace folly {
59
60 #if FOLLY_HAVE_CPLUS_DEMANGLE_V3_CALLBACK
61
62 fbstring demangle(const char* name) {
63   int status;
64   size_t len = 0;
65   // malloc() memory for the demangled type name
66   char* demangled = abi::__cxa_demangle(name, nullptr, &len, &status);
67   if (status != 0) {
68     return name;
69   }
70   // len is the length of the buffer (including NUL terminator and maybe
71   // other junk)
72   return fbstring(demangled, strlen(demangled), len, AcquireMallocatedString());
73 }
74
75 namespace {
76
77 struct DemangleBuf {
78   char* dest;
79   size_t remaining;
80   size_t total;
81 };
82
83 void demangleCallback(const char* str, size_t size, void* p) {
84   DemangleBuf* buf = static_cast<DemangleBuf*>(p);
85   size_t n = std::min(buf->remaining, size);
86   memcpy(buf->dest, str, n);
87   buf->dest += n;
88   buf->remaining -= n;
89   buf->total += size;
90 }
91
92 }  // namespace
93
94 size_t demangle(const char* name, char* out, size_t outSize) {
95   DemangleBuf dbuf;
96   dbuf.dest = out;
97   dbuf.remaining = outSize ? outSize - 1 : 0;   // leave room for null term
98   dbuf.total = 0;
99
100   // Unlike most library functions, this returns 1 on success and 0 on failure
101   int status = cplus_demangle_v3_callback(
102       name,
103       DMGL_PARAMS | DMGL_ANSI | DMGL_TYPES,
104       demangleCallback,
105       &dbuf);
106   if (status == 0) {  // failed, return original
107     return folly::strlcpy(out, name, outSize);
108   }
109   if (outSize != 0) {
110     *dbuf.dest = '\0';
111   }
112   return dbuf.total;
113 }
114
115 #else
116
117 fbstring demangle(const char* name) {
118   return name;
119 }
120
121 size_t demangle(const char* name, char* out, size_t outSize) {
122   return folly::strlcpy(out, name, outSize);
123 }
124
125 #endif
126
127 size_t strlcpy(char* dest, const char* const src, size_t size) {
128   size_t len = strlen(src);
129   if (size != 0) {
130     size_t n = std::min(len, size - 1);  // always null terminate!
131     memcpy(dest, src, n);
132     dest[n] = '\0';
133   }
134   return len;
135 }
136
137 } // folly