2010-03-05 12:16:27 +01:00
|
|
|
#ifndef __PYWRAPS_HPP__
|
|
|
|
#define __PYWRAPS_HPP__
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Types
|
|
|
|
#ifndef PYUL_DEFINED
|
|
|
|
#define PYUL_DEFINED
|
2011-04-18 18:07:00 +02:00
|
|
|
typedef unsigned PY_LONG_LONG PY_ULONG_LONG;
|
2010-03-05 12:16:27 +01:00
|
|
|
#ifdef __EA64__
|
|
|
|
typedef unsigned PY_LONG_LONG pyul_t;
|
2010-06-28 14:36:40 +02:00
|
|
|
typedef PY_LONG_LONG pyl_t;
|
2010-03-05 12:16:27 +01:00
|
|
|
#else
|
|
|
|
typedef unsigned long pyul_t;
|
2010-06-28 14:36:40 +02:00
|
|
|
typedef long pyl_t;
|
2010-03-05 12:16:27 +01:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __EA64__
|
2010-06-28 14:36:40 +02:00
|
|
|
#define PY_FMT64 "K"
|
|
|
|
#define PY_SFMT64 "L"
|
2010-03-05 12:16:27 +01:00
|
|
|
#else
|
2010-06-28 14:36:40 +02:00
|
|
|
#define PY_FMT64 "k"
|
|
|
|
#define PY_SFMT64 "l"
|
2010-03-05 12:16:27 +01:00
|
|
|
#endif
|
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
#define S_IDAAPI_MODNAME "idaapi"
|
|
|
|
#define S_IDC_MODNAME "idc"
|
|
|
|
#define S_IDAAPI_EXECSCRIPT "IDAPython_ExecScript"
|
2010-07-19 15:00:33 +02:00
|
|
|
#define S_IDAAPI_COMPLETION "IDAPython_Completion"
|
2010-06-28 14:36:40 +02:00
|
|
|
|
2010-03-05 12:16:27 +01:00
|
|
|
// Vector of PyObject*
|
|
|
|
typedef qvector<PyObject *> ppyobject_vec_t;
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// PyIdc conversion object IDs
|
|
|
|
#define PY_ICID_INT64 0
|
|
|
|
#define PY_ICID_BYREF 1
|
|
|
|
#define PY_ICID_OPAQUE 2
|
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Constants used with the notify_when()
|
|
|
|
#define NW_OPENIDB 0x0001
|
|
|
|
#define NW_OPENIDB_SLOT 0
|
|
|
|
#define NW_CLOSEIDB 0x0002
|
|
|
|
#define NW_CLOSEIDB_SLOT 1
|
|
|
|
#define NW_INITIDA 0x0004
|
|
|
|
#define NW_INITIDA_SLOT 2
|
|
|
|
#define NW_TERMIDA 0x0008
|
|
|
|
#define NW_TERMIDA_SLOT 3
|
|
|
|
#define NW_REMOVE 0x0010 // Uninstall flag
|
|
|
|
#define NW_EVENTSCNT 4 // Count of notify_when codes
|
|
|
|
|
2010-03-05 12:16:27 +01:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Constants used by the pyvar_to_idcvar and idcvar_to_pyvar functions
|
|
|
|
#define CIP_FAILED -1 // Conversion error
|
|
|
|
#define CIP_IMMUTABLE 0 // Immutable object passed. Will not update the object but no error occured
|
|
|
|
#define CIP_OK 1 // Success
|
|
|
|
#define CIP_OK_NODECREF 2 // Success but do not decrement its reference
|
|
|
|
|
2011-04-18 18:07:00 +02:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
class CGilStateAuto
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
PyGILState_STATE state;
|
|
|
|
public:
|
|
|
|
CGilStateAuto()
|
|
|
|
{
|
|
|
|
state = PyGILState_Ensure();
|
|
|
|
}
|
|
|
|
|
|
|
|
~CGilStateAuto()
|
|
|
|
{
|
|
|
|
PyGILState_Release(state);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
// Declare a variable to acquire/release the GIL
|
|
|
|
#define PYW_GIL_AUTO_ENSURE CGilStateAuto GIL_STATE_AUTO
|
|
|
|
|
|
|
|
// Macros to acquire/release GIL in a given scope
|
|
|
|
#define PYW_GIL_ENSURE_N(name) PyGILState_STATE gil_state##name = PyGILState_Ensure()
|
|
|
|
#define PYW_GIL_RELEASE_N(name) PyGILState_Release(gil_state##name)
|
|
|
|
|
|
|
|
#define PYW_GIL_ENSURE PYW_GIL_ENSURE_N(_)
|
|
|
|
#define PYW_GIL_RELEASE PYW_GIL_RELEASE_N(_)
|
2010-03-05 12:16:27 +01:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// All the exported functions from PyWraps are forward declared here
|
2010-06-28 14:36:40 +02:00
|
|
|
insn_t *insn_t_get_clink(PyObject *self);
|
|
|
|
op_t *op_t_get_clink(PyObject *self);
|
2010-03-05 12:16:27 +01:00
|
|
|
|
|
|
|
// Tries to import a module and swallows the exception if it fails and returns NULL
|
2010-07-13 18:43:53 +02:00
|
|
|
PyObject *PyW_TryImportModule(const char *name);
|
2010-06-28 14:36:40 +02:00
|
|
|
|
|
|
|
// Tries to get an attribute and swallows the exception if it fails and returns NULL
|
2010-07-13 18:43:53 +02:00
|
|
|
PyObject *PyW_TryGetAttrString(PyObject *py_var, const char *attr);
|
2010-06-28 14:36:40 +02:00
|
|
|
|
2011-06-10 17:21:21 +02:00
|
|
|
// Returns the linked object (void *) from a PyObject
|
|
|
|
void *pyobj_get_clink(PyObject *pyobj);
|
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
// Converts a Python number (LONGLONG or normal integer) to an IDC variable (VT_LONG or VT_INT64)
|
2010-07-13 18:43:53 +02:00
|
|
|
bool PyW_GetNumberAsIDC(PyObject *py_var, idc_value_t *idc_var);
|
|
|
|
|
|
|
|
// Returns a qstring from a Python attribute string
|
|
|
|
bool PyW_GetStringAttr(
|
|
|
|
PyObject *py_obj,
|
|
|
|
const char *attr_name,
|
|
|
|
qstring *str);
|
2010-06-28 14:36:40 +02:00
|
|
|
|
|
|
|
// Converts a Python number to an uint64 and indicates whether the number was a long number
|
2010-07-13 18:43:53 +02:00
|
|
|
bool PyW_GetNumber(PyObject *py_var, uint64 *num, bool *is_64 = NULL);
|
2010-06-28 14:36:40 +02:00
|
|
|
|
|
|
|
// Checks if an Python object can be treated like a sequence
|
2010-07-13 18:43:53 +02:00
|
|
|
bool PyW_IsSequenceType(PyObject *obj);
|
2010-06-28 14:36:40 +02:00
|
|
|
|
|
|
|
// Returns an error string from the last exception (and clears it)
|
2010-07-13 18:43:53 +02:00
|
|
|
bool PyW_GetError(qstring *out = NULL);
|
2010-06-28 14:36:40 +02:00
|
|
|
|
2010-03-05 12:16:27 +01:00
|
|
|
// If an error occured (it calls PyGetError) it displays it and return TRUE
|
2011-04-18 18:07:00 +02:00
|
|
|
// This function is used when calling callbacks
|
|
|
|
bool PyW_ShowCbErr(const char *cb_name);
|
2010-06-28 14:36:40 +02:00
|
|
|
|
|
|
|
// Utility function to create a class instance whose constructor takes zero arguments
|
|
|
|
PyObject *create_idaapi_class_instance0(const char *clsname);
|
|
|
|
|
|
|
|
// Utility function to create linked class instances
|
|
|
|
PyObject *create_idaapi_linked_class_instance(const char *clsname, void *lnk);
|
|
|
|
|
|
|
|
// [De]Initializes PyWraps
|
|
|
|
bool init_pywraps();
|
|
|
|
void deinit_pywraps();
|
|
|
|
|
|
|
|
// Returns the string representation of a PyObject
|
2010-07-13 18:43:53 +02:00
|
|
|
bool PyW_ObjectToString(PyObject *obj, qstring *out);
|
2010-06-28 14:36:40 +02:00
|
|
|
|
|
|
|
// Utility function to convert a python object to an IDC object
|
|
|
|
// and sets a python exception on failure.
|
|
|
|
bool convert_pyobj_to_idc_exc(PyObject *py_obj, idc_value_t *idc_obj);
|
|
|
|
|
|
|
|
// Converts Python variable to IDC variable
|
|
|
|
// gvar_sn is used in case the Python object was a created from a call to idcvar_to_pyvar and the IDC object was a VT_REF
|
|
|
|
int pyvar_to_idcvar(
|
|
|
|
PyObject *py_var,
|
|
|
|
idc_value_t *idc_var,
|
|
|
|
int *gvar_sn = NULL);
|
|
|
|
|
|
|
|
// Converts from IDC to Python
|
|
|
|
// We support converting VT_REF IDC variable types
|
|
|
|
int idcvar_to_pyvar(
|
|
|
|
const idc_value_t &idc_var,
|
2010-03-05 12:16:27 +01:00
|
|
|
PyObject **py_var);
|
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
// Walks a Python list or Sequence and calls the callback
|
|
|
|
Py_ssize_t pyvar_walk_list(
|
|
|
|
PyObject *py_list,
|
|
|
|
int (idaapi *cb)(PyObject *py_item, Py_ssize_t index, void *ud) = NULL,
|
|
|
|
void *ud = NULL);
|
|
|
|
|
2011-04-18 18:07:00 +02:00
|
|
|
// Converts an intvec_t to a Python list object
|
|
|
|
PyObject *PyW_IntVecToPyList(const intvec_t &intvec);
|
|
|
|
|
|
|
|
// Converts an Python list to an intvec
|
2011-06-10 16:54:03 +02:00
|
|
|
bool PyW_PyListToIntVec(PyObject *py_list, intvec_t &intvec);
|
2011-04-18 18:07:00 +02:00
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
// Returns a reference to a class
|
|
|
|
PyObject *get_idaapi_attr(const char *attr);
|
|
|
|
|
2011-06-10 17:21:21 +02:00
|
|
|
// Returns a reference to a class by its ID
|
|
|
|
PyObject *get_idaapi_attr_by_id(const int class_id);
|
|
|
|
|
2010-06-28 14:36:40 +02:00
|
|
|
// notify_when()
|
|
|
|
bool pywraps_nw_term();
|
|
|
|
bool pywraps_nw_notify(int slot, ...);
|
|
|
|
bool pywraps_nw_init();
|
2010-03-05 12:16:27 +01:00
|
|
|
|
2011-04-18 18:07:00 +02:00
|
|
|
const char *pywraps_check_autoscripts();
|
|
|
|
|
2010-03-05 12:16:27 +01:00
|
|
|
#endif
|