summaryrefslogtreecommitdiffstats
path: root/src/bind/dobinding.cpp
blob: 29da3c0a4882f093e7f655be080a61de1585d6d0 (plain)
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
/**
 * This is a simple mechanism to bind Inkscape to Java, and thence
 * to all of the nice things that can be layered upon that. 
 *
 * Authors:
 *   Bob Jamison
 *
 * Copyright (C) 2007 Bob Jamison
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */


#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <jni.h>

#ifdef __WIN32__
#include <windows.h>
#else
#include <dlfcn.h>
#include <errno.h>
#endif

#include "javabind.h"
#include "javabind-private.h"

#include <dom/dom.h>
#include <dom/domimpl.h>

namespace Inkscape
{
namespace Bind
{

using namespace org::w3c::dom;

/**
 * This file has the actual C++ --> Java bindings
 * This file can get quite large!
 */  


//########################################################################
//# BASE OBJECT
//########################################################################

static jlong getPointer(JNIEnv *env, jobject obj)
{
    jfieldID id = env->GetFieldID(env->GetObjectClass(obj), "_pointer", "J");
    jlong val = env->GetLongField(obj, id);
    return val;
}

static void setPointer(JNIEnv *env, jobject obj, jlong val)
{
    jfieldID id = env->GetFieldID(env->GetObjectClass(obj), "_pointer", "J");
    env->SetLongField(obj, id, val);
}

static void JNICALL DOMBase_construct
  (JNIEnv *env, jobject obj)
{
    setPointer(env, obj, 0L);
}

static void JNICALL DOMBase_destruct
  (JNIEnv *env, jobject obj)
{
    NodePtr *ptr = (NodePtr *)getPointer(env, obj);
    if (ptr)
        {
        delete ptr;
        }
    setPointer(env, obj, 0L);
}


static JNINativeMethod DOMBaseMethods[] =
{
{ (char *)"construct", (char *)"()V", (void *)DOMBase_construct },
{ (char *)"destruct",  (char *)"()V", (void *)DOMBase_destruct  },
{ NULL,  NULL, NULL }
};

//########################################################################
//# DOMImplementation
//########################################################################


void JNICALL DOMImplementation_nCreateDocument
  (JNIEnv *env, jobject obj)
{
    DOMImplementationImpl domImpl;
    DocumentTypePtr docType = domImpl.createDocumentType("", "", "");
    DocumentPtr doc = domImpl.createDocument("", "", docType);
    DocumentPtr *ptr = new DocumentPtr(doc);
    setPointer(env, obj, (jlong)ptr);
}



static JNINativeMethod DOMImplementationMethods[] =
{
{ (char *)"construct", (char *)"()V", (void *)DOMImplementation_nCreateDocument },
{ NULL,  NULL, NULL }
};



//########################################################################
//# MAIN
//########################################################################
typedef struct
{
    const char *className;
    JNINativeMethod *methods;
} NativeEntry;


static NativeEntry nativeEntries[] =
{
    { "org/inkscape/dom/DOMBase",           DOMBaseMethods            },
    { "org/inkscape/dom/DOMImplementation", DOMImplementationMethods  },
    { NULL,                                 NULL                      }
};



bool JavaBinderyImpl::doBinding()
{
    for (NativeEntry *ne = nativeEntries ; ne->className ; ne++)
        {
        bool ret = registerNatives(ne->className, ne->methods);
        if (!ret)
            {
            err("Could not bind native methods");
            return false;
            }
        }
    return true;
}




} // namespace Bind
} // namespace Inkscape

//########################################################################
//# E N D    O F    F I L E
//########################################################################