1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
/**************************************************************************\
*
* This file is part of the Coin 3D visualization library.
* Copyright (C) by Kongsberg Oil & Gas Technologies.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* ("GPL") version 2 as published by the Free Software Foundation.
* See the file LICENSE.GPL at the root directory of this source
* distribution for additional information about the GNU GPL.
*
* For using Coin with software that can not be combined with the GNU
* GPL, and for taking advantage of the additional benefits of our
* support services, please contact Kongsberg Oil & Gas Technologies
* about acquiring a Coin Professional Edition License.
*
* See http://www.coin3d.org/ for more information.
*
* Kongsberg Oil & Gas Technologies, Bygdoy Alle 5, 0257 Oslo, NORWAY.
* http://www.sim.no/ sales@sim.no coin-support@coin3d.org
*
\**************************************************************************/
typedef SbString mangleFunc(const char *);
/*
This function returns a string that corresponds to how gcc 2.95.4
mangles "static void <classname>::initClass(void)".
*/
static
SbString
gcc2_initClassMangling(const char * classname)
{
assert(classname != NULL);
const size_t len = strlen(classname);
SbString mangling;
mangling.sprintf("initClass__%d%s", len, classname);
return mangling;
}
/*
This function returns a string that corresponds to how gcc3
mangles "static void <classname>::initClass(void)".
*/
static
SbString
gcc3_initClassMangling(const char * classname)
{
assert(classname != NULL);
const size_t len = strlen(classname);
SbString mangling;
mangling.sprintf("_ZN%d%s9initClassEv", len, classname);
return mangling;
}
/*
This function returns a string that corresponds to how Microsoft
Visual C++ v6 mangles "static void <classname>::initClass(void)" in
a __declspec(dllexport) context.
*/
static
SbString
msvc6_initClassMangling(const char * classname)
{
assert(classname != NULL);
SbString mangling;
mangling.sprintf("?initClass@%s@@SAXXZ", classname);
return mangling;
}
/*
This function returns a string that corresponds to how IRIX MIPSpro
CC 7.30 mangles "static void <classname>::initClass(void)".
*/
static
SbString
MIPSpro_CC_initClassMangling(const char * classname)
{
assert(classname != NULL);
const size_t len = strlen(classname);
SbString mangling;
mangling.sprintf("initClass__%d%sSGv", len, classname);
return mangling;
}
/*
This function returns a string that corresponds to how HP-UX 11's
aCC mangles "static void <classname>::initClass(void)".
The version information reported by the aCC used to check the name
mangling: "HP ANSI C++ B3910B A.03.35".
*/
static
SbString
HPUX_aCC_initClassMangling(const char * classname)
{
assert(classname != NULL);
const size_t len = strlen(classname);
SbString mangling;
mangling.sprintf("initClass__%d%sSFv", len, classname);
return mangling;
}
#include <iostream>
#include <ostream>
/*
This function returns a string that corresponds to how Sun Ceres C++
5.10 mangles "static void <classname>::initClass(void)".
*/
static
SbString
sunCC_initClassMangling(const char * classname)
{
assert(classname != NULL);
size_t len = strlen(classname);
SbString mangling;
SbString mangled_len;
while (len > 25) {
size_t digit = len % 26;
len /= 26;
mangled_len += static_cast<char>('a' + digit);
}
mangled_len += static_cast<char>('a' + len);
char * mangled_str = strdup(mangled_len.getString());
mangled_str[0] = toupper(mangled_str[0]);
/* reverse */
for (size_t i=0, j=strlen(mangled_str)-1; i<j; i++, j--) {
char temp = mangled_str[i];
mangled_str[i] = mangled_str[j];
mangled_str[j] = temp;
}
mangling.sprintf("__1c%s%sJinitClass6F_v_", mangled_str, classname);
free(mangled_str);
return mangling;
}
/* ********************************************************************** */
static mangleFunc * manglefunctions[] = {
HPUX_aCC_initClassMangling,
gcc2_initClassMangling,
gcc3_initClassMangling,
msvc6_initClassMangling,
MIPSpro_CC_initClassMangling,
sunCC_initClassMangling,
(mangleFunc *)NULL
};
/*
return the correct name mangling function, or NULL in case none seem
appropriate
*/
static
mangleFunc *
getManglingFunction(void)
{
static SbBool initialized = FALSE;
static mangleFunc * manglefunc = NULL;
if (!initialized) {
initialized = TRUE;
int i;
cc_libhandle handle = cc_dl_open(NULL);
if (handle == NULL) goto failure;
for (i = 0; (manglefunctions[i] != NULL) && (manglefunc == NULL); i++) {
mangleFunc * attempt = manglefunctions[i];
SbString symbol(attempt("SoBase"));
if (cc_dl_sym(handle, symbol.getString())) {
manglefunc = manglefunctions[i];
}
}
cc_dl_close(handle);
if (manglefunc == NULL) { goto failure; }
}
return manglefunc;
failure:
#ifdef _MSC_VER
// LoadLibrary(NULL) doesn't work, so we fall-back on the MSVC++ mangling
// scheme on MS Windows.
manglefunc = msvc6_initClassMangling;
#endif
return manglefunc;
}
/* ********************************************************************** */
|