swig/Source/SWIG1.1/types.cxx
Dave Beazley 8bd2ea80fe Added cvstags
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@54 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2000-01-12 04:09:03 +00:00

1150 lines
30 KiB
C++

/*******************************************************************************
* Simplified Wrapper and Interface Generator (SWIG)
*
* Author : David Beazley
*
* Department of Computer Science
* University of Chicago
* 1100 E 58th Street
* Chicago, IL 60637
* beazley@cs.uchicago.edu
*
* Please read the file LICENSE for the copyright and terms by which SWIG
* can be used and distributed.
*******************************************************************************/
static char cvsroot[] = "$Header$";
/***********************************************************************
* $Header$
*
* types.cxx
*
* This file contains functions for dealing with datatypes. This
* is a combination of the file typedef.cc (now obsolete) and functions
* that used to be in the swig.h header.
*
***********************************************************************/
#include "internal.h"
// -------------------------------------------------------------------
// class DataType member functions.
// -------------------------------------------------------------------
DataType::DataType() {
type = 1;
name[0] = 0;
is_pointer = 0;
implicit_ptr = 0;
qualifier = 0;
is_reference = 0;
status = 0;
arraystr = 0;
id = type_id++;
}
// Create a data type only from the type code (used to form constants)
DataType::DataType(int t) {
switch(t) {
case T_BOOL:
strcpy(name,"bool");
break;
case T_INT: case T_SINT:
strcpy(name,"int");
break;
case T_UINT:
strcpy(name,"unsigned int");
break;
case T_SHORT: case T_SSHORT:
strcpy(name,"short");
break;
case T_USHORT:
strcpy(name,"unsigned short");
break;
case T_LONG: case T_SLONG:
strcpy(name,"long");
break;
case T_ULONG:
strcpy(name,"unsigned long");
break;
case T_FLOAT:
strcpy(name, "float");
break;
case T_DOUBLE:
strcpy(name, "double");
break;
case T_CHAR: case T_SCHAR:
strcpy(name, "char");
break;
case T_UCHAR:
strcpy(name,"unsigned char");
break;
case T_VOID:
strcpy(name,"void");
break;
case T_USER:
strcpy(name,"USER");
break;
default :
strcpy(name,"UNKNOWN");
break;
}
type = t;
is_pointer = 0;
implicit_ptr = 0;
qualifier = 0;
is_reference = 0;
status = 0;
arraystr = 0;
id = type_id++;
}
DataType::DataType(DataType *t) {
type = t->type;
strcpy(name,t->name);
is_pointer = t->is_pointer;
implicit_ptr = t->implicit_ptr;
qualifier = copy_string(t->qualifier);
is_reference = t->is_reference;
status = t->status;
arraystr = copy_string(t->arraystr);
id = t->id;
}
DataType::~DataType() {
if (qualifier) delete qualifier;
if (arraystr) delete arraystr;
}
// --------------------------------------------------------------------
// DataType::primitive()
//
// Turns a datatype into its bare-bones primitive type. Rarely used,
// but sometimes used for typemaps. Permanently alters the datatype!
// --------------------------------------------------------------------
void DataType::primitive() {
switch(type) {
case T_BOOL:
strcpy(name,"bool");
break;
case T_INT: case T_SINT:
strcpy(name,"int");
break;
case T_SHORT: case T_SSHORT:
strcpy(name,"short");
break;
case T_LONG: case T_SLONG:
strcpy(name,"long");
break;
case T_CHAR:
strcpy(name,"char");
break;
case T_SCHAR:
strcpy(name,"signed char");
break;
case T_UINT:
strcpy(name,"unsigned int");
break;
case T_USHORT:
strcpy(name,"unsigned short");
break;
case T_ULONG:
strcpy(name,"unsigned long");
break;
case T_UCHAR:
strcpy(name,"unsigned char");
break;
case T_FLOAT:
strcpy(name,"float");
break;
case T_DOUBLE:
strcpy(name,"double");
break;
case T_VOID:
strcpy(name,"void");
break;
case T_USER:
strcpy(name,"USER");
break;
default:
strcpy(name,"UNKNOWN");
break;
}
// if (is_pointer) {
// if (!((is_pointer == 1) && (type == T_CHAR))) {
// is_pointer = 1;
// strcpy(name,"POINTER");
// }
// }
implicit_ptr = 0; // Gets rid of typedef'd pointers
// Ditch qualifiers (const, volatile, etc...)
if (qualifier) {
delete qualifier;
qualifier = 0;
}
qualifier = 0;
status = 0;
}
// --------------------------------------------------------------------
// char *print_type()
//
// Print the datatype, but without qualifiers (ie. const, volatile)
// Returns a string containing the result.
//
// If a datatype is marked as an implicit ptr it means that is_pointer
// is at least one, but we don't print '*'.
//
// If the type status is STAT_REPLACETYPE, it means that we can't
// use this type as a valid type. We'll substitute it's old name in.
// --------------------------------------------------------------------
char *DataType::print_type() {
static String result[8];
static int ri = 0;
DataType *t = this;
if (status & STAT_REPLACETYPE) {
t = new DataType(this);
t->typedef_replace(); // Upgrade type
}
ri = ri % 8;
result[ri] = "";
result[ri] << t->name << " ";
for (int i = 0; i < (t->is_pointer-t->implicit_ptr); i++)
result[ri] << '*';
if (status & STAT_REPLACETYPE) {
delete t;
};
return result[ri++].get();
}
// --------------------------------------------------------------------
// char *print_full()
//
// Prints full type, with qualifiers.
// --------------------------------------------------------------------
char *DataType::print_full() {
static String result[8];
static int ri = 0;
ri = ri % 8;
result[ri] = "";
if (qualifier)
result[ri] << qualifier << " " << print_type();
else
result[ri] << print_type();
return result[ri++].get();
}
// --------------------------------------------------------------------
// char *print_real()
//
// Prints real type, with qualifiers and arrays if necessary.
// --------------------------------------------------------------------
char *DataType::print_real(char *local) {
static String result[8];
static int ri = 0;
int oldstatus;
oldstatus = status;
status = status & (~STAT_REPLACETYPE);
ri = ri % 8;
result[ri] = "";
if (arraystr) is_pointer--;
result[ri] << print_full();
if (local) result[ri] << local;
if (arraystr) {
result[ri] << arraystr;
is_pointer++;
}
status = oldstatus;
return result[ri++].get();
}
// --------------------------------------------------------------------
// char *print_cast()
//
// Prints a cast. (Basically just a type but with parens added).
// --------------------------------------------------------------------
char *DataType::print_cast() {
static String result[8];
static int ri = 0;
ri = ri % 8;
result[ri] = "";
result[ri] << "(" << print_type() << ")";
return result[ri++].get();
}
// --------------------------------------------------------------------
// char *print_arraycast()
//
// Prints a cast, but for array datatypes. Super ugly, but necessary
// for multidimensional arrays.
// --------------------------------------------------------------------
char *DataType::print_arraycast() {
static String result[8];
static int ri = 0;
int ndim;
char *c;
DataType *t;
t = this;
if (status & STAT_REPLACETYPE) {
t = new DataType(this);
t->typedef_replace(); // Upgrade type
}
ri = ri % 8;
result[ri] = "";
if (t->arraystr) {
ndim = 0;
c = t->arraystr;
while (*c) {
if (*c == '[') ndim++;
c++;
}
if (ndim > 1) {
// a Multidimensional array. Provide a special cast for it
int oldstatus = status;
t->status = t->status & (~STAT_REPLACETYPE);
t->is_pointer--;
result[ri] << "(" << t->print_type();
t->is_pointer++;
t->status = oldstatus;
result[ri] << " (*)";
c = t->arraystr;
while (*c) {
if (*c == ']') break;
c++;
}
if (*c) c++;
result[ri] << c << ")";
}
}
if (status & STAT_REPLACETYPE) {
delete t;
}
return result[ri++].get();
}
// --------------------------------------------------------------------
// char *print_mangle_default()
//
// Prints a mangled version of this datatype. Used for run-time type
// checking in order to print out a "language friendly" version (ie. no
// spaces and no weird characters).
// --------------------------------------------------------------------
char *DataType::print_mangle_default() {
static String result[8];
static int ri = 0;
int i;
char *c;
ri = ri % 8;
result[ri] = "";
c = name;
result[ri] << '_';
if ((strncmp(c,"struct ",7) == 0) || (strncmp(c,"class ",6) == 0) || (strncmp(c,"union ",6) == 0)) {
c = strchr(c,' ') + 1;
}
// if (d) c = d+1;
for (; *c; c++) {
if ((*c == ' ') || (*c == ':')) result[ri] << '_';
else result[ri] << *c;
}
if ((is_pointer-implicit_ptr)) result[ri] << '_';
for (i = 0; i < (is_pointer-implicit_ptr); i++)
result[ri] << 'p';
return result[ri++].get();
}
// This is kind of ugly but needed for each language to support a
// custom name mangling mechanism. (ie. Perl5).
char *DataType::print_mangle() {
// Call into target language for name mangling.
return lang->type_mangle(this);
}
// --------------------------------------------------------------------
// int DataType::array_dimensions()
//
// Returns the number of dimensions in an array or 0 if not an array.
// --------------------------------------------------------------------
int DataType::array_dimensions() {
char *c;
int ndim = 0;
if (!arraystr) return 0;
c = arraystr;
while (*c) {
if (*c == '[') {
ndim++;
}
c++;
}
return ndim;
}
// --------------------------------------------------------------------
// char *DataType::get_dimension(int n)
//
// Returns a string containing the value specified for dimension n.
// --------------------------------------------------------------------
char *DataType::get_dimension(int n) {
static String dim;
char *c;
dim = "";
if (n >= array_dimensions()) return dim;
// Attemp to locate the right dimension
c = arraystr;
while ((*c) && (n >= 0)) {
if (*c == '[') n--;
c++;
}
// c is now at start of array dimension
if (*c) {
while ((*c) && (*c != ']')) {
dim << *c;
c++;
}
}
return dim;
}
// --------------------------------------------------------------------
// char *DataType::get_array()
//
// Returns the array string for a datatype.
// --------------------------------------------------------------------
char *DataType::get_array() {
return arraystr;
}
// --------------------------------------------------------------------
// typedef support. This needs to be scoped.
// --------------------------------------------------------------------
Hash *DataType::typedef_hash[MAXSCOPE];
int DataType::scope = 0; // Current scope
static Hash undefined_types; // Hash table containing undefined datatypes.
// -----------------------------------------------------------------------------
// int DataType::check_defined()
//
// Checks to see if a datatype is defined. If not, returns -1 and puts an entry
// into an internal hash table
// -----------------------------------------------------------------------------
int DataType::check_defined() {
if (type == T_USER) {
// Type might be in typedef hash. Check for that
int s = scope;
while (s >= 0) {
if (typedef_hash[s]->lookup(name)) return 0;
s--;
}
// Nope. Add as an undefined type and continue.
char *st;
st = copy_string(name);
undefined_types.add(st,st);
return -1;
}
return 0;
}
// -----------------------------------------------------------------------------
// void DataType::init_typedef()
//
// Inputs : None
//
// Output : None
//
// Side Effects : Initializes the typedef hash tables
// -----------------------------------------------------------------------------
void DataType::init_typedef() {
int i;
for (i = 0; i < MAXSCOPE; i++)
typedef_hash[i] = 0;
scope = 0;
// Create a new hash
typedef_hash[scope] = new Hash;
}
// --------------------------------------------------------------------
// void DataType::typedef_add(char *typename, int mode = 0)
//
// Adds this datatype to the typedef hash table. mode is an optional
// flag that can be used to only add the symbol as a typedef, but not
// generate any support code for the SWIG typechecker. This is used
// for some of the more obscure datatypes like function pointers,
// arrays, and enums.
// --------------------------------------------------------------------
void DataType::typedef_add(char *tname, int mode) {
String name1,name2;
DataType *nt, t1;
void typeeq_addtypedef(char *name, char *eqname, DataType *);
// Check to see if this typedef already defined
// We only check in the local scope. C++ classes may make typedefs
// that shadow global ones.
if (typedef_hash[scope]->lookup(tname)) {
fprintf(stderr,"%s : Line %d. Warning. Datatype %s already defined (2nd definition ignored).\n",
input_file, line_number, tname);
return;
}
// Make a new datatype that we will place in our hash table
nt = new DataType(this);
nt->implicit_ptr = (is_pointer-implicit_ptr); // Record if mapped type is a pointer
nt->is_pointer = (is_pointer-implicit_ptr); // Adjust pointer value to be correct
nt->typedef_resolve(); // Resolve any other mappings of this type
// strcpy(nt->name,tname); // Copy over the new name
// Add this type to our hash table
typedef_hash[scope]->add(tname,(void *) nt);
// Now add this type mapping to our type-equivalence table
if (mode == 0) {
if ((type != T_VOID) && (strcmp(name,tname) != 0)) {
strcpy(t1.name,tname);
name2 << t1.print_mangle();
name1 << print_mangle();
typeeq_addtypedef(name1,name2,&t1);
typeeq_addtypedef(name2,name1,this);
}
}
// Call into the target language with this typedef
lang->add_typedef(this,tname);
}
// --------------------------------------------------------------------
// void DataType::typedef_resolve(int level = 0)
//
// Checks to see if this datatype is in the typedef hash and
// resolves it if necessary. This will check all of the typedef
// hash tables we know about.
//
// level is an optional parameter that determines which scope to use.
// Usually this is only used with a bare :: operator in a datatype.
//
// The const headache :
//
// Normally SWIG will fail if a const variable is used in a typedef
// like this :
//
// typedef const char *String;
//
// This is because future occurrences of "String" will be treated like
// a char *, but without regard to the "constness". To work around
// this problem. The resolve() method checks to see if these original
// data type is const. If so, we'll substitute the name of the original
// datatype instead. Got it? Whew. In a nutshell, this means that
// all future occurrences of "String" will really be "const char *".
// --------------------------------------------------------------------
void DataType::typedef_resolve(int level) {
DataType *td;
int s = scope - level;
while (s >= 0) {
if ((td = (DataType *) typedef_hash[s]->lookup(name))) {
type = td->type;
is_pointer += td->is_pointer;
implicit_ptr += td->implicit_ptr;
status = status | td->status;
// Check for constness, and replace type name if necessary
if (td->qualifier) {
if (strcmp(td->qualifier,"const") == 0) {
strcpy(name,td->name);
qualifier = copy_string(td->qualifier);
implicit_ptr -= td->implicit_ptr;
}
}
return;
}
s--;
}
// Not found, do nothing
return;
}
// --------------------------------------------------------------------
// void DataType::typedef_replace()
//
// Checks to see if this datatype is in the typedef hash and
// replaces it with the hash entry. Only applies to current scope.
// --------------------------------------------------------------------
void DataType::typedef_replace () {
DataType *td;
String temp;
if ((td = (DataType *) typedef_hash[scope]->lookup(name))) {
type = td->type;
is_pointer = td->is_pointer;
implicit_ptr -= td->implicit_ptr;
strcpy(name, td->name);
if (td->arraystr) {
if (arraystr) {
temp << arraystr;
delete arraystr;
}
temp << td->arraystr;
arraystr = copy_string(temp);
}
}
// Not found, do nothing
return;
}
// ---------------------------------------------------------------
// int DataType::is_typedef(char *t)
//
// Checks to see whether t is the name of a datatype we know
// about. Returns 1 if there's a match, 0 otherwise
// ---------------------------------------------------------------
int DataType::is_typedef(char *t) {
int s = scope;
while (s >= 0) {
if (typedef_hash[s]->lookup(t)) return 1;
s--;
}
return 0;
}
// ---------------------------------------------------------------
// void DataType::typedef_updatestatus(int newstatus)
//
// Checks to see if this datatype is in the hash table. If
// so, we'll update its status. This is sometimes used with
// typemap handling. Only applies to current scope.
// ---------------------------------------------------------------
void DataType::typedef_updatestatus(int newstatus) {
DataType *t;
if ((t = (DataType *) typedef_hash[scope]->lookup(name))) {
t->status = newstatus;
}
}
// -----------------------------------------------------------------------------
// void DataType::merge_scope(Hash *h)
//
// Copies all of the entries in scope h into the current scope. This is
// primarily done with C++ inheritance.
//
// Inputs : Hash table h.
//
// Output : None
//
// Side Effects : Copies all of the entries in h to current scope.
// -----------------------------------------------------------------------------
void DataType::merge_scope(Hash *h) {
char *key;
DataType *t, *nt;
if (h) {
// Copy all of the entries in the given hash table to this new one
key = h->firstkey();
while (key) {
// printf("%s\n", key);
t = (DataType *) h->lookup(key);
nt = new DataType(t);
typedef_hash[scope]->add(key,(void *) nt);
key = h->nextkey();
}
}
}
// -----------------------------------------------------------------------------
// void DataType::new_scope(Hash *h = 0)
//
// Creates a new scope for handling typedefs. This is used in C++ handling
// to create typedef local to a class definition.
//
// Inputs : h = Optional hash table scope (Used for C++ inheritance).
//
// Output : None
//
// Side Effects : Creates a new hash table and increments the scope counter
// -----------------------------------------------------------------------------
void DataType::new_scope(Hash *h) {
scope++;
typedef_hash[scope] = new Hash;
if (h) {
merge_scope(h);
}
}
// -----------------------------------------------------------------------------
// Hash *DataType::collapse_scope(char *prefix)
//
// Collapses the current scope into the previous one, but applies a prefix to
// all of the datatypes. This is done in order to properly handle C++ stuff.
// For example :
//
// class Foo {
// ...
// typedef double Real;
// }
//
// will have a type mapping of "double --> Real" within the class itself.
// When we collapse the scope, this mapping will become "double --> Foo::Real"
//
// Inputs : None
//
// Output : None
//
// Side Effects : Returns the hash table corresponding to the current scope
// -----------------------------------------------------------------------------
Hash *DataType::collapse_scope(char *prefix) {
DataType *t,*nt;
char *key;
char *temp;
Hash *h;
if (scope > 0) {
if (prefix) {
key = typedef_hash[scope]->firstkey();
while (key) {
t = (DataType *) typedef_hash[scope]->lookup(key);
nt = new DataType(t);
temp = new char[strlen(prefix)+strlen(key)+3];
sprintf(temp,"%s::%s",prefix,key);
// printf("creating %s\n", temp);
typedef_hash[scope-1]->add(temp,(void *) nt);
delete temp;
key = typedef_hash[scope]->nextkey();
}
}
h = typedef_hash[scope];
typedef_hash[scope] = 0;
scope--;
return h;
}
return (Hash *) 0;
}
// -------------------------------------------------------------
// Class equivalency lists
//
// These are used to keep track of which datatypes are equivalent.
// This information can be dumped in tabular form upon completion
// for use in the pointer type checker.
//
// cast is an extension needed to properly handle multiple inheritance
// --------------------------------------------------------------
struct EqEntry {
char *name;
char *cast;
DataType *type;
EqEntry *next;
};
static Hash typeeq_hash;
static int te_init = 0;
void typeeq_init() {
void typeeq_standard();
te_init = 1;
typeeq_standard();
}
// --------------------------------------------------------------
// typeeq_add(char *name, char *eqname, char *cast)
//
// Adds a new name to the type-equivalence tables.
// Creates a new entry if it doesn't exit.
//
// Cast is an optional name for a pointer casting function.
// --------------------------------------------------------------
void typeeq_add(char *name, char *eqname, char *cast = 0, DataType *type = 0) {
EqEntry *e1,*e2;
if (!te_init) typeeq_init();
if (strcmp(name,eqname) == 0) return; // If they're the same, forget it.
// Search for "name" entry in the hash table
e1 = (EqEntry *) typeeq_hash.lookup(name);
if (!e1) {
// Create a new entry
e1 = new EqEntry;
e1->name = copy_string(name);
e1->next = 0;
e1->cast = 0;
// Add it to the hash table
typeeq_hash.add(name,(void *) e1);
}
// Add new type to the list
// We'll first check to see if it's already been added
e2 = e1->next;
while (e2) {
if (strcmp(e2->name, eqname) == 0) {
if (cast)
e2->cast = copy_string(cast);
return;
}
e2 = e2->next;
}
e2 = new EqEntry;
e2->name = copy_string(eqname);
e2->cast = copy_string(cast);
if (type)
e2->type = new DataType(type);
else
e2->type = 0;
e2->next = e1->next; // Add onto the linked list for name
e1->next = e2;
}
// --------------------------------------------------------------
// typeeq_addtypedef(char *name, char *eqname, DataType *t)
//
// Adds a new typedef declaration to the equivelency list.
// --------------------------------------------------------------
void typeeq_addtypedef(char *name, char *eqname, DataType *t) {
EqEntry *e1,*e2;
if (!te_init) typeeq_init();
if (!t) {
t = new DataType(T_USER);
strcpy(t->name, eqname);
}
// printf("addtypedef: %s : %s : %s\n", name, eqname, t->print_type());
// First we're going to add the equivalence, no matter what
typeeq_add(name,eqname,0,t);
// Now find the hash entry
e1 = (EqEntry *) typeeq_hash.lookup(name);
if (!e1) return;
// Walk down the list and make other equivalences
e2 = e1->next;
while (e2) {
if (strcmp(e2->name, eqname) != 0) {
typeeq_add(e2->name, eqname,e2->cast,t);
typeeq_add(eqname, e2->name,e2->cast,e2->type);
}
e2 = e2->next;
}
}
// ----------------------------------------------------------------
// void emit_ptr_equivalence(FILE *f)
//
// Dump out the pointer equivalence table to file.
//
// Changed to register datatypes with the type checker in order
// to support proper type-casting (needed for multiple inheritance)
// ----------------------------------------------------------------
void emit_ptr_equivalence(FILE *f) {
EqEntry *e1,*e2;
void typeeq_standard();
String ttable;
if (!te_init) typeeq_init();
ttable << "\
/*\n\
* This table is used by the pointer type-checker\n\
*/\n\
static struct { char *n1; char *n2; void *(*pcnv)(void *); } _swig_mapping[] = {\n";
e1 = (EqEntry *) typeeq_hash.first();
while (e1) {
e2 = e1->next;
// Walk through the equivalency list
while (e2) {
if (e2->cast)
ttable << tab4 << "{ \"" << e1->name << "\",\"" << e2->name << "\"," << e2->cast << "},\n";
else
ttable << tab4 << "{ \"" << e1->name << "\",\"" << e2->name << "\",0},\n";
e2 = e2->next;
}
e1 = (EqEntry *) typeeq_hash.next();
}
ttable << "{0,0,0}};\n";
fprintf(f_wrappers,"%s\n", ttable.get());
fprintf(f,"{\n");
fprintf(f," int i;\n");
fprintf(f," for (i = 0; _swig_mapping[i].n1; i++)\n");
fprintf(f," SWIG_RegisterMapping(_swig_mapping[i].n1,_swig_mapping[i].n2,_swig_mapping[i].pcnv);\n");
fprintf(f,"}\n");
String ctable;
ctable << "/*\n";
ctable << "typedef struct {\n"
<< " const char *name; \n"
<< " void *(*convert)(void *);\n"
<< "} SwigType;\n";
e1 = (EqEntry *) typeeq_hash.first();
while (e1) {
e2 = e1->next;
ctable << "static SwigType " << e1->name << "[] = {";
// Walk through the equivalency list
while (e2) {
ctable << "{ \"" << e2->name << "\", ";
if (e2->cast)
ctable << e2->cast << "},";
else
ctable << "0},";
e2 = e2->next;
}
ctable << "{0,0}};\n";
e1 = (EqEntry *) typeeq_hash.next();
}
ctable << "*/\n";
fprintf(f_wrappers,"%s\n", ctable.get());
}
// ------------------------------------------------------------------------------
// typeeq_derived(char *n1, char *n2, char *cast=)
//
// Adds a one-way mapping between datatypes.
// ------------------------------------------------------------------------------
void typeeq_derived(char *n1, char *n2, char *cast=0) {
DataType t,t1;
String name,name2;
EqEntry *e1;
if (!te_init) typeeq_init();
t.type = T_USER;
t1.type = T_USER;
strcpy(t.name,n1);
strcpy(t1.name,n2);
name << t.print_mangle();
name2 << t1.print_mangle();
typeeq_add(name,name2,cast, &t1);
}
// ------------------------------------------------------------------------------
// typeeq_mangle(char *n1, char *n2, char *cast=)
//
// Adds a single type equivalence
// ------------------------------------------------------------------------------
void typeeq_mangle(char *n1, char *n2, char *cast=0) {
DataType t,t1;
String name,name2;
if (!te_init) typeeq_init();
strcpy(t.name,n1);
strcpy(t1.name,n2);
name << t.print_mangle();
name2 << t1.print_mangle();
typeeq_add(name,name2,cast);
}
// ------------------------------------------------------------------------------
// typeeq_standard(void)
//
// Generate standard type equivalences (well, pointers that can map into
// other pointers naturally).
//
// -------------------------------------------------------------------------------
void typeeq_standard(void) {
typeeq_mangle("int", "signed int");
typeeq_mangle("int", "unsigned int");
typeeq_mangle("signed int", "int");
typeeq_mangle("unsigned int", "int");
typeeq_mangle("short","signed short");
typeeq_mangle("signed short","short");
typeeq_mangle("short","unsigned short");
typeeq_mangle("unsigned short","short");
typeeq_mangle("long","signed long");
typeeq_mangle("signed long","long");
typeeq_mangle("long","unsigned long");
typeeq_mangle("unsigned long","long");
}
// ------------------------------------------------------------------------------
// type_undefined_check(void)
//
// Checks the hash table for undefined datatypes and prints a warning message.
// -------------------------------------------------------------------------------
void type_undefined_check(void) {
char *s;
s = (char *) undefined_types.first();
if (s) {
fprintf(stderr,"The following datatypes were used, but undefined.\n");
while (s) {
fprintf(stderr," %s\n",s);
s = (char *) undefined_types.next();
}
}
}
// ----------------------------------------------------------------------
// char *check_equivalent(DataType *t)
//
// Checks for type names equivalent to t. Returns a string with entries
// suitable for output.
// ----------------------------------------------------------------------
static char *
check_equivalent(DataType *t) {
EqEntry *e1, *e2;
static String out;
int npointer = t->is_pointer;
String m;
out = "";
while (t->is_pointer >= t->implicit_ptr) {
m = t->print_mangle();
if (!te_init) typeeq_init();
e1 = (EqEntry *) typeeq_hash.first();
while (e1) {
if (strcmp(m.get(),e1->name) == 0) {
e2 = e1->next;
while (e2) {
if (e2->type) {
e2->type->is_pointer += (npointer - t->is_pointer);
out << "{ \"" << e2->type->print_mangle() << "\",";
e2->type->is_pointer -= (npointer - t->is_pointer);
if (e2->cast)
out << e2->cast << "}, ";
else
out << "0}, ";
}
e2 = e2->next;
}
}
e1 = (EqEntry *) typeeq_hash.next();
}
t->is_pointer--;
}
t->is_pointer = npointer;
out << "{0}";
return out.get();
}
// ----------------------------------------------------------------------
// void DataType::remember()
//
// Marks a datatype as being used in the interface file. We use this to
// construct a big table of pointer values at the end.
// ----------------------------------------------------------------------
static Hash remembered;
void DataType::remember() {
DataType *t = new DataType(this);
remembered.add(t->print_mangle(),(void *) t);
}
void
emit_type_table() {
char *key;
String types, table;
int i = 0;
table << "static _swig_type_info *_swig_types_initial[] = {\n";
key = remembered.firstkey();
fprintf(f_runtime,"/* ---- TYPES TABLE (BEGIN) ---- */\n");
while (key) {
fprintf(f_runtime,"#define SWIGTYPE%s _swig_types[%d] \n", key, i);
types << "static _swig_type_info _swigt_" << key << "[] = {";
types << "{\"" << key << "\",0},";
types << "{\"" << key << "\",0},";
types << check_equivalent((DataType *)remembered.lookup(key)) << "};\n";
table << "_swigt_" << key << ", \n";
key = remembered.nextkey();
i++;
}
table << "0\n};\n";
fprintf(f_wrappers,"%s\n", types.get());
fprintf(f_wrappers,"%s\n", table.get());
fprintf(f_runtime,"static _swig_type_info *_swig_types[%d];\n", i+1);
fprintf(f_runtime,"/* ---- TYPES TABLE (END) ---- */\n\n");
String init;
init << tab4 << "{\n"
<< tab8 << "int i;\n"
<< tab8 << "for (i = 0; _swig_types_initial[i]; i++) {\n"
<< tab8 << tab4 << "_swig_types[i] = SWIG_TypeRegister(_swig_types_initial[i]);\n"
<< tab8 << "}\n"
<< tab4 << "}\n";
fprintf(f_init,"%s", init.get());
}