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
|
/*****************************************************************************
Copyright 2004 Steve M�nard
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*****************************************************************************/
#ifndef _JPYPE_PYTHON_H_
#define _JPYPE_PYTHON_H_
// This file defines the _jpype module's interface and initializes it
#include <Python.h>
#include <jpype.h>
// TODO figure a better way to do this .. Python dependencies should not be in common code
#include <pyport.h>
#if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN)
typedef int Py_ssize_t;
#define PY_SSIZE_T_MAX INT_MAX
#define PY_SSIZE_T_MIN INT_MIN
#endif
#include "pythonenv.h"
namespace JPypeModule
{
PyObject* startup(PyObject* obj, PyObject* args);
PyObject* attach(PyObject* obj, PyObject* args);
PyObject* dumpJVMStats(PyObject* obj);
PyObject* shutdown(PyObject* obj);
PyObject* synchronized(PyObject* obj, PyObject* args);
PyObject* isStarted(PyObject* obj);
PyObject* attachThread(PyObject* obj);
PyObject* detachThread(PyObject* obj);
PyObject* isThreadAttached(PyObject* obj);
PyObject* getJException(PyObject* obj, PyObject* args);
PyObject* raiseJava(PyObject* obj, PyObject* args);
PyObject* attachThreadAsDaemon(PyObject* obj);
PyObject* startReferenceQueue(PyObject* obj, PyObject* args);
PyObject* stopReferenceQueue(PyObject* obj);
PyObject* setConvertStringObjects(PyObject* obj, PyObject* args);
PyObject* setResource(PyObject* obj, PyObject* args);
}
namespace JPypeJavaClass
{
PyObject* findClass(PyObject* obj, PyObject* args);
};
namespace JPypeJavaProxy
{
PyObject* createProxy(PyObject*, PyObject* arg);
};
namespace JPypeJavaArray
{
PyObject* findArrayClass(PyObject* obj, PyObject* args);
PyObject* getArrayLength(PyObject* self, PyObject* arg);
PyObject* getArrayItem(PyObject* self, PyObject* arg);
PyObject* getArraySlice(PyObject* self, PyObject* arg);
PyObject* setArraySlice(PyObject* self, PyObject* arg);
PyObject* newArray(PyObject* self, PyObject* arg);
PyObject* setArrayItem(PyObject* self, PyObject* arg);
PyObject* setArrayValues(PyObject* self, PyObject* arg);
};
namespace JPypeJavaNio
{
PyObject* convertToDirectBuffer(PyObject* self, PyObject* arg);
};
namespace JPypeJavaException
{
void errorOccurred();
};
#include "py_monitor.h"
#include "py_method.h"
#include "py_class.h"
#include "py_field.h"
#include "py_hostenv.h"
#include "jpype_memory_view.h"
extern PythonHostEnvironment* hostEnv;
// Utility method
PyObject* detachRef(HostRef* ref);
#endif // _JPYPE_PYTHON_H_
|