/usr/include/smoke.h is in smoke-dev-tools 4:4.13.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 | #ifndef SMOKE_H
#define SMOKE_H
#include <cstddef>
#include <cstring>
#include <string>
#include <map>
/*
Copyright (C) 2002, Ashley Winters <qaqortog@nwlink.com>
Copyright (C) 2007, Arno Rehn <arno@arnorehn.de>
BSD License
Redistribution and use in source and binary forms, with or
without modification, are permitted provided that the following
conditions are met:
Redistributions of source code must retain the above
copyright notice, this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials
provided with the distribution.>
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifdef WIN32
// Define this when building a smoke lib that doesn't have any parents - else Smoke::classMap is not exported.
#ifdef BASE_SMOKE_BUILDING
#define BASE_SMOKE_EXPORT __declspec(dllexport)
#else
#define BASE_SMOKE_EXPORT __declspec(dllimport)
#endif
// Define this when building a smoke lib.
#ifdef SMOKE_BUILDING
#define SMOKE_EXPORT __declspec(dllexport)
#else
#define SMOKE_EXPORT __declspec(dllimport)
#endif
#define SMOKE_IMPORT __declspec(dllimport)
#else
#ifdef GCC_VISIBILITY
#define SMOKE_EXPORT __attribute__ ((visibility("default")))
#define BASE_SMOKE_EXPORT __attribute__ ((visibility("default")))
#else
#define SMOKE_EXPORT
#define BASE_SMOKE_EXPORT
#endif
#define SMOKE_IMPORT
#endif
class SmokeBinding;
class BASE_SMOKE_EXPORT Smoke {
private:
const char *module_name;
public:
union StackItem; // defined below
/**
* A stack is an array of arguments, passed to a method when calling it.
*/
typedef StackItem* Stack;
enum EnumOperation {
EnumNew,
EnumDelete,
EnumFromLong,
EnumToLong
};
typedef short Index;
typedef void (*ClassFn)(Index method, void* obj, Stack args);
typedef void* (*CastFn)(void* obj, Index from, Index to);
typedef void (*EnumFn)(EnumOperation, Index, void*&, long&);
/**
* Describe one index in a given module.
*/
struct ModuleIndex {
Smoke* smoke;
Index index;
ModuleIndex() : smoke(0), index(0) {}
ModuleIndex(Smoke * s, Index i) : smoke(s), index(i) {}
inline bool operator==(const Smoke::ModuleIndex& other) const {
return index == other.index && smoke == other.smoke;
}
inline bool operator!=(const Smoke::ModuleIndex& other) const {
return index != other.index || smoke != other.smoke;
}
};
/**
* A ModuleIndex with both fields set to 0.
*/
static ModuleIndex NullModuleIndex;
typedef std::map<std::string, ModuleIndex> ClassMap;
static ClassMap classMap;
enum ClassFlags {
cf_constructor = 0x01, // has a constructor
cf_deepcopy = 0x02, // has copy constructor
cf_virtual = 0x04, // has virtual destructor
cf_namespace = 0x08, // is a namespace
cf_undefined = 0x10 // defined elsewhere
};
/**
* Describe one class.
*/
struct Class {
const char *className; // Name of the class
bool external; // Whether the class is in another module
Index parents; // Index into inheritanceList
ClassFn classFn; // Calls any method in the class
EnumFn enumFn; // Handles enum pointers
unsigned short flags; // ClassFlags
unsigned int size;
};
enum MethodFlags {
mf_static = 0x01,
mf_const = 0x02,
mf_copyctor = 0x04, // Copy constructor
mf_internal = 0x08, // For internal use only
mf_enum = 0x10, // An enum value
mf_ctor = 0x20,
mf_dtor = 0x40,
mf_protected = 0x80,
mf_attribute = 0x100, // accessor method for a field
mf_property = 0x200, // accessor method of a property
mf_virtual = 0x400,
mf_purevirtual = 0x800,
mf_signal = 0x1000, // method is a signal
mf_slot = 0x2000, // method is a slot
mf_explicit = 0x4000 // method is an 'explicit' constructor
};
/**
* Describe one method of one class.
*/
struct Method {
Index classId; // Index into classes
Index name; // Index into methodNames; real name
Index args; // Index into argumentList
unsigned char numArgs; // Number of arguments
unsigned short flags; // MethodFlags (const/static/etc...)
Index ret; // Index into types for the return type
Index method; // Passed to Class.classFn, to call method
};
/**
* One MethodMap entry maps the munged method prototype
* to the Method entry.
*
* The munging works this way:
* $ is a plain scalar
* # is an object
* ? is a non-scalar (reference to array or hash, undef)
*
* e.g. QApplication(int &, char **) becomes QApplication$?
*/
struct MethodMap {
Index classId; // Index into classes
Index name; // Index into methodNames; munged name
Index method; // Index into methods
};
enum TypeFlags {
// The first 4 bits indicate the TypeId value, i.e. which field
// of the StackItem union is used.
tf_elem = 0x0F,
// Always only one of the next three flags should be set
tf_stack = 0x10, // Stored on the stack, 'type'
tf_ptr = 0x20, // Pointer, 'type*'
tf_ref = 0x30, // Reference, 'type&'
// Can | whatever ones of these apply
tf_const = 0x40 // const argument
};
/**
* One Type entry is one argument type needed by a method.
* Type entries are shared, there is only one entry for "int" etc.
*/
struct Type {
const char *name; // Stringified type name
Index classId; // Index into classes. -1 for none
unsigned short flags; // TypeFlags
};
// We could just pass everything around using void* (pass-by-reference)
// I don't want to, though. -aw
union StackItem {
void* s_voidp;
bool s_bool;
signed char s_char;
unsigned char s_uchar;
short s_short;
unsigned short s_ushort;
int s_int;
unsigned int s_uint;
long s_long;
unsigned long s_ulong;
float s_float;
double s_double;
long s_enum;
void* s_class;
};
enum TypeId {
t_voidp,
t_bool,
t_char,
t_uchar,
t_short,
t_ushort,
t_int,
t_uint,
t_long,
t_ulong,
t_float,
t_double,
t_enum,
t_class,
t_last // number of pre-defined types
};
// Passed to constructor
/**
* The classes array defines every class for this module
*/
Class *classes;
Index numClasses;
/**
* The methods array defines every method in every class for this module
*/
Method *methods;
Index numMethods;
/**
* methodMaps maps the munged method prototypes
* to the methods entries.
*/
MethodMap *methodMaps;
Index numMethodMaps;
/**
* Array of method names, for Method.name and MethodMap.name
*/
const char **methodNames;
Index numMethodNames;
/**
* List of all types needed by the methods (arguments and return values)
*/
Type *types;
Index numTypes;
/**
* Groups of Indexes (0 separated) used as super class lists.
* For classes with super classes: Class.parents = index into this array.
*/
Index *inheritanceList;
/**
* Groups of type IDs (0 separated), describing the types of argument for a method.
* Method.args = index into this array.
*/
Index *argumentList;
/**
* Groups of method prototypes with the same number of arguments, but different types.
* Used to resolve overloading.
*/
Index *ambiguousMethodList;
/**
* Function used for casting from/to the classes defined by this module.
*/
CastFn castFn;
/**
* Constructor
*/
Smoke(const char *_moduleName,
Class *_classes, Index _numClasses,
Method *_methods, Index _numMethods,
MethodMap *_methodMaps, Index _numMethodMaps,
const char **_methodNames, Index _numMethodNames,
Type *_types, Index _numTypes,
Index *_inheritanceList,
Index *_argumentList,
Index *_ambiguousMethodList,
CastFn _castFn) :
module_name(_moduleName),
classes(_classes), numClasses(_numClasses),
methods(_methods), numMethods(_numMethods),
methodMaps(_methodMaps), numMethodMaps(_numMethodMaps),
methodNames(_methodNames), numMethodNames(_numMethodNames),
types(_types), numTypes(_numTypes),
inheritanceList(_inheritanceList),
argumentList(_argumentList),
ambiguousMethodList(_ambiguousMethodList),
castFn(_castFn)
{
for (Index i = 1; i <= numClasses; ++i) {
if (!classes[i].external) {
classMap[className(i)] = ModuleIndex(this, i);
}
}
}
/**
* Returns the name of the module (e.g. "qt" or "kde")
*/
inline const char *moduleName() {
return module_name;
}
inline void *cast(void *ptr, const ModuleIndex& from, const ModuleIndex& to) {
if (castFn == 0) {
return ptr;
}
if (from.smoke == to.smoke) {
return (*castFn)(ptr, from.index, to.index);
}
const Smoke::Class &klass = to.smoke->classes[to.index];
return (*castFn)(ptr, from.index, idClass(klass.className, true).index);
}
inline void *cast(void *ptr, Index from, Index to) {
if(!castFn) return ptr;
return (*castFn)(ptr, from, to);
}
// return classname directly
inline const char *className(Index classId) {
return classes[classId].className;
}
inline int leg(Index a, Index b) { // ala Perl's <=>
if(a == b) return 0;
return (a > b) ? 1 : -1;
}
inline Index idType(const char *t) {
Index imax = numTypes;
Index imin = 1;
Index icur = -1;
int icmp = -1;
while (imax >= imin) {
icur = (imin + imax) / 2;
icmp = strcmp(types[icur].name, t);
if (icmp == 0) {
return icur;
}
if (icmp > 0) {
imax = icur - 1;
} else {
imin = icur + 1;
}
}
return 0;
}
inline ModuleIndex idClass(const char *c, bool external = false) {
Index imax = numClasses;
Index imin = 1;
Index icur = -1;
int icmp = -1;
while (imax >= imin) {
icur = (imin + imax) / 2;
icmp = strcmp(classes[icur].className, c);
if (icmp == 0) {
if (classes[icur].external && !external) {
return NullModuleIndex;
} else {
return ModuleIndex(this, icur);
}
}
if (icmp > 0) {
imax = icur - 1;
} else {
imin = icur + 1;
}
}
return NullModuleIndex;
}
static inline ModuleIndex findClass(const char *c) {
ClassMap::iterator i = classMap.find(c);
if (i == classMap.end()) {
return NullModuleIndex;
} else {
return i->second;
}
}
inline ModuleIndex idMethodName(const char *m) {
Index imax = numMethodNames;
Index imin = 1;
Index icur = -1;
int icmp = -1;
while (imax >= imin) {
icur = (imin + imax) / 2;
icmp = strcmp(methodNames[icur], m);
if (icmp == 0) {
return ModuleIndex(this, icur);
}
if (icmp > 0) {
imax = icur - 1;
} else {
imin = icur + 1;
}
}
return NullModuleIndex;
}
inline ModuleIndex findMethodName(const char *c, const char *m) {
ModuleIndex mni = idMethodName(m);
if (mni.index) return mni;
ModuleIndex cmi = findClass(c);
if (cmi.smoke && cmi.smoke != this) {
return cmi.smoke->findMethodName(c, m);
} else if (cmi.smoke == this) {
if (!classes[cmi.index].parents) return NullModuleIndex;
for (Index p = classes[cmi.index].parents; inheritanceList[p]; p++) {
Index ci = inheritanceList[p];
const char* cName = className(ci);
ModuleIndex mi = classMap[cName].smoke->findMethodName(cName, m);
if (mi.index) return mi;
}
}
return NullModuleIndex;
}
inline ModuleIndex idMethod(Index c, Index name) {
Index imax = numMethodMaps;
Index imin = 1;
Index icur = -1;
int icmp = -1;
while (imax >= imin) {
icur = (imin + imax) / 2;
icmp = leg(methodMaps[icur].classId, c);
if (icmp == 0) {
icmp = leg(methodMaps[icur].name, name);
if (icmp == 0) {
return ModuleIndex(this, icur);
}
}
if (icmp > 0) {
imax = icur - 1;
} else {
imin = icur + 1;
}
}
return NullModuleIndex;
}
inline ModuleIndex findMethod(ModuleIndex c, ModuleIndex name) {
if (!c.index || !name.index) {
return NullModuleIndex;
} else if (name.smoke == this && c.smoke == this) {
ModuleIndex mi = idMethod(c.index, name.index);
if (mi.index) return mi;
} else if (c.smoke != this) {
return c.smoke->findMethod(c, name);
}
for (Index *i = inheritanceList + classes[c.index].parents; *i; ++i) {
const char *cName = className(*i);
ModuleIndex ci = findClass(cName);
if (!ci.smoke)
return NullModuleIndex;
ModuleIndex ni = ci.smoke->findMethodName(cName, name.smoke->methodNames[name.index]);
ModuleIndex mi = ci.smoke->findMethod(ci, ni);
if (mi.index) return mi;
}
return NullModuleIndex;
}
inline ModuleIndex findMethod(const char *c, const char *name) {
ModuleIndex idc = idClass(c);
if (!idc.smoke) idc = findClass(c);
if (!idc.smoke || !idc.index) return NullModuleIndex;
ModuleIndex idname = idc.smoke->findMethodName(c, name);
return idc.smoke->findMethod(idc, idname);
}
static inline bool isDerivedFrom(const ModuleIndex& classId, const ModuleIndex& baseClassId) {
return isDerivedFrom(classId.smoke, classId.index, baseClassId.smoke, baseClassId.index);
}
static inline bool isDerivedFrom(Smoke *smoke, Index classId, Smoke *baseSmoke, Index baseId) {
if (!classId || !baseId || !smoke || !baseSmoke)
return false;
if (smoke == baseSmoke && classId == baseId)
return true;
for(Index p = smoke->classes[classId].parents; smoke->inheritanceList[p]; p++) {
Class& cur = smoke->classes[smoke->inheritanceList[p]];
if (cur.external) {
ModuleIndex mi = findClass(cur.className);
if (isDerivedFrom(mi.smoke, mi.index, baseSmoke, baseId))
return true;
}
if (isDerivedFrom(smoke, smoke->inheritanceList[p], baseSmoke, baseId))
return true;
}
return false;
}
static inline bool isDerivedFrom(const char *className, const char *baseClassName) {
ModuleIndex classId = findClass(className);
ModuleIndex baseId = findClass(baseClassName);
return isDerivedFrom(classId.smoke, classId.index, baseId.smoke, baseId.index);
}
};
class SmokeBinding {
protected:
Smoke *smoke;
public:
SmokeBinding(Smoke *s) : smoke(s) {}
virtual void deleted(Smoke::Index classId, void *obj) = 0;
virtual bool callMethod(Smoke::Index method, void *obj, Smoke::Stack args, bool isAbstract = false) = 0;
virtual char* className(Smoke::Index classId) = 0;
virtual ~SmokeBinding() {}
};
#endif
|