114 lines
3.4 KiB
C++
114 lines
3.4 KiB
C++
// Filename: interrogateFunction.h
|
|
// Created by: drose (01Aug00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef INTERROGATEFUNCTION_H
|
|
#define INTERROGATEFUNCTION_H
|
|
|
|
#include "dtoolbase.h"
|
|
|
|
#include "interrogateComponent.h"
|
|
|
|
#include <vector>
|
|
#include <map>
|
|
|
|
class IndexRemapper;
|
|
class CPPInstance;
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : InterrogateFunction
|
|
// Description : An internal representation of a function.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_DTOOLCONFIG InterrogateFunction : public InterrogateComponent {
|
|
public:
|
|
INLINE InterrogateFunction(InterrogateModuleDef *def = NULL);
|
|
INLINE InterrogateFunction(const InterrogateFunction ©);
|
|
void operator = (const InterrogateFunction ©);
|
|
|
|
INLINE bool is_global() const;
|
|
INLINE bool is_virtual() const;
|
|
INLINE bool is_method() const;
|
|
INLINE TypeIndex get_class() const;
|
|
|
|
INLINE bool has_scoped_name() const;
|
|
INLINE const string &get_scoped_name() const;
|
|
|
|
INLINE bool has_comment() const;
|
|
INLINE const string &get_comment() const;
|
|
|
|
INLINE bool has_prototype() const;
|
|
INLINE const string &get_prototype() const;
|
|
|
|
INLINE int number_of_c_wrappers() const;
|
|
INLINE FunctionWrapperIndex get_c_wrapper(int n) const;
|
|
|
|
INLINE int number_of_python_wrappers() const;
|
|
INLINE FunctionWrapperIndex get_python_wrapper(int n) const;
|
|
|
|
void output(ostream &out) const;
|
|
void input(istream &in);
|
|
|
|
void remap_indices(const IndexRemapper &remap);
|
|
|
|
private:
|
|
enum Flags {
|
|
F_global = 0x0001,
|
|
F_virtual = 0x0002,
|
|
F_method = 0x0004,
|
|
F_typecast = 0x0008,
|
|
F_getter = 0x0010,
|
|
F_setter = 0x0020,
|
|
};
|
|
|
|
int _flags;
|
|
string _scoped_name;
|
|
string _comment;
|
|
string _prototype;
|
|
TypeIndex _class;
|
|
|
|
typedef vector<FunctionWrapperIndex> Wrappers;
|
|
Wrappers _c_wrappers;
|
|
Wrappers _python_wrappers;
|
|
|
|
public:
|
|
// The rest of the members in this class aren't part of the public
|
|
// interface to interrogate, but are used internally as the
|
|
// interrogate database is built. They are valid only during the
|
|
// session of interrogate that generates the database, and will not
|
|
// be filled in when the database is reloaded from disk.
|
|
|
|
// This must be a pointer, rather than a concrete map, so we don't
|
|
// risk trying to create a map in one DLL and access it in another.
|
|
// Silly Windows.
|
|
typedef map<string, CPPInstance *> Instances;
|
|
Instances *_instances;
|
|
string _expression;
|
|
|
|
friend class InterrogateBuilder;
|
|
friend class InterfaceMakerC;
|
|
friend class InterfaceMakerPythonSimple;
|
|
friend class InterfaceMakerPythonNative;
|
|
friend class FunctionRemap;
|
|
};
|
|
|
|
INLINE ostream &operator << (ostream &out, const InterrogateFunction &function);
|
|
INLINE istream &operator >> (istream &in, InterrogateFunction &function);
|
|
|
|
#include "interrogateFunction.I"
|
|
|
|
#endif
|