mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-26 18:21:59 +00:00
- IfcJni: Fix access violation errors by creating a copy of the byte[]
- Add version identifier to bimserver_plugin and IfcJni
This commit is contained in:
@@ -64,6 +64,7 @@
|
|||||||
#include <gp_Trsf.hxx>
|
#include <gp_Trsf.hxx>
|
||||||
#include <gp_Trsf2d.hxx>
|
#include <gp_Trsf2d.hxx>
|
||||||
|
|
||||||
|
#include "../ifcparse/IfcParse.h"
|
||||||
#include "../ifcgeom/IfcShapeList.h"
|
#include "../ifcgeom/IfcShapeList.h"
|
||||||
|
|
||||||
namespace IfcGeomObjects {
|
namespace IfcGeomObjects {
|
||||||
|
|||||||
+64
-55
@@ -1,28 +1,28 @@
|
|||||||
/********************************************************************************
|
/********************************************************************************
|
||||||
* *
|
* *
|
||||||
* This file is part of IfcOpenShell. *
|
* This file is part of IfcOpenShell. *
|
||||||
* *
|
* *
|
||||||
* IfcOpenShell is free software: you can redistribute it and/or modify *
|
* IfcOpenShell is free software: you can redistribute it and/or modify *
|
||||||
* it under the terms of the Lesser GNU General Public License as published by *
|
* it under the terms of the Lesser GNU General Public License as published by *
|
||||||
* the Free Software Foundation, either version 3.0 of the License, or *
|
* the Free Software Foundation, either version 3.0 of the License, or *
|
||||||
* (at your option) any later version. *
|
* (at your option) any later version. *
|
||||||
* *
|
* *
|
||||||
* IfcOpenShell is distributed in the hope that it will be useful, *
|
* IfcOpenShell is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* Lesser GNU General Public License for more details. *
|
* Lesser GNU General Public License for more details. *
|
||||||
* *
|
* *
|
||||||
* You should have received a copy of the Lesser GNU General Public License *
|
* You should have received a copy of the Lesser GNU General Public License *
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
||||||
* *
|
* *
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
|
|
||||||
/********************************************************************************
|
/********************************************************************************
|
||||||
* *
|
* *
|
||||||
* This is a JNI interface to IfcOpenShell for use with the open source *
|
* This is a JNI interface to IfcOpenShell for use with the open source *
|
||||||
* http://BIMserver.org *
|
* http://BIMserver.org *
|
||||||
* *
|
* *
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
|
|
||||||
#include "org_ifcopenshell_IfcOpenShellModel.h"
|
#include "org_ifcopenshell_IfcOpenShellModel.h"
|
||||||
#include "../ifcgeom/IfcGeomObjects.h"
|
#include "../ifcgeom/IfcGeomObjects.h"
|
||||||
@@ -30,47 +30,56 @@
|
|||||||
bool has_more = false;
|
bool has_more = false;
|
||||||
|
|
||||||
JNIEXPORT jobject JNICALL Java_org_ifcopenshell_IfcOpenShellModel_getGeometry (JNIEnv * env, jobject) {
|
JNIEXPORT jobject JNICALL Java_org_ifcopenshell_IfcOpenShellModel_getGeometry (JNIEnv * env, jobject) {
|
||||||
if ( ! has_more ) return 0;
|
if ( ! has_more ) return 0;
|
||||||
jclass class_def = env->FindClass ("org/ifcopenshell/IfcGeomObject");
|
jclass class_def = env->FindClass ("org/ifcopenshell/IfcGeomObject");
|
||||||
if ( ! class_def ) return 0;
|
if ( ! class_def ) return 0;
|
||||||
jmethodID jconstructor = env->GetMethodID(class_def, "<init>", "(ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[I[F[F)V");
|
jmethodID jconstructor = env->GetMethodID(class_def, "<init>", "(ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[I[F[F)V");
|
||||||
if ( ! jconstructor ) return 0;
|
if ( ! jconstructor ) return 0;
|
||||||
const IfcGeomObjects::IfcGeomObject* o = IfcGeomObjects::Get();
|
const IfcGeomObjects::IfcGeomObject* o = IfcGeomObjects::Get();
|
||||||
|
|
||||||
jstring name = env->NewStringUTF(o->name.c_str());
|
jstring name = env->NewStringUTF(o->name.c_str());
|
||||||
jstring type = env->NewStringUTF(o->type.c_str());
|
jstring type = env->NewStringUTF(o->type.c_str());
|
||||||
jstring guid = env->NewStringUTF(o->guid.c_str());
|
jstring guid = env->NewStringUTF(o->guid.c_str());
|
||||||
|
|
||||||
jintArray indices = env->NewIntArray(o->mesh->faces.size());
|
jintArray indices = env->NewIntArray(o->mesh->faces.size());
|
||||||
jfloatArray positions = env->NewFloatArray(o->mesh->verts.size());
|
jfloatArray positions = env->NewFloatArray(o->mesh->verts.size());
|
||||||
jfloatArray normals = env->NewFloatArray(o->mesh->normals.size());
|
jfloatArray normals = env->NewFloatArray(o->mesh->normals.size());
|
||||||
|
|
||||||
env->SetIntArrayRegion(indices,0,o->mesh->faces.size(),(jint*) &o->mesh->faces[0]);
|
env->SetIntArrayRegion(indices,0,o->mesh->faces.size(),(jint*) &o->mesh->faces[0]);
|
||||||
env->SetFloatArrayRegion(positions,0,o->mesh->verts.size(),(jfloat*) &o->mesh->verts[0]);
|
env->SetFloatArrayRegion(positions,0,o->mesh->verts.size(),(jfloat*) &o->mesh->verts[0]);
|
||||||
env->SetFloatArrayRegion(normals,0,o->mesh->normals.size(),(jfloat*) &o->mesh->normals[0]);
|
env->SetFloatArrayRegion(normals,0,o->mesh->normals.size(),(jfloat*) &o->mesh->normals[0]);
|
||||||
|
|
||||||
jobject return_obj = env->NewObject(class_def, jconstructor, o->id, name, type, guid, indices, positions, normals);
|
jobject return_obj = env->NewObject(class_def, jconstructor, o->id, name, type, guid, indices, positions, normals);
|
||||||
|
|
||||||
env->DeleteLocalRef(name);
|
env->DeleteLocalRef(name);
|
||||||
env->DeleteLocalRef(type);
|
env->DeleteLocalRef(type);
|
||||||
env->DeleteLocalRef(guid);
|
env->DeleteLocalRef(guid);
|
||||||
env->DeleteLocalRef(indices);
|
env->DeleteLocalRef(indices);
|
||||||
env->DeleteLocalRef(positions);
|
env->DeleteLocalRef(positions);
|
||||||
env->DeleteLocalRef(normals);
|
env->DeleteLocalRef(normals);
|
||||||
env->DeleteLocalRef(class_def);
|
env->DeleteLocalRef(class_def);
|
||||||
|
|
||||||
has_more = IfcGeomObjects::Next();
|
has_more = IfcGeomObjects::Next();
|
||||||
if ( ! has_more ) IfcGeomObjects::CleanUp();
|
if ( ! has_more ) IfcGeomObjects::CleanUp();
|
||||||
|
|
||||||
return return_obj;
|
return return_obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
JNIEXPORT jboolean JNICALL Java_org_ifcopenshell_IfcOpenShellModel_setIfcData (JNIEnv * env, jobject, jbyteArray jdata) {
|
JNIEXPORT jboolean JNICALL Java_org_ifcopenshell_IfcOpenShellModel_setIfcData (JNIEnv * env, jobject, jbyteArray jdata) {
|
||||||
void* data = env->GetByteArrayElements(jdata, NULL);
|
if ( ! jdata ) return false;
|
||||||
const int length = env->GetArrayLength(jdata);
|
const int length = env->GetArrayLength(jdata);
|
||||||
if ( ! data || ! length ) return false;
|
jboolean is_copy = false;
|
||||||
IfcGeomObjects::Settings(IfcGeomObjects::USE_WORLD_COORDS,true);
|
jbyte* jbytes = env->GetByteArrayElements(jdata, &is_copy);
|
||||||
IfcGeomObjects::Settings(IfcGeomObjects::WELD_VERTICES,false);
|
if ( ! jbytes || ! length ) return false;
|
||||||
IfcGeomObjects::Settings(IfcGeomObjects::CONVERT_BACK_UNITS,true);
|
void* data = new char[length];
|
||||||
return has_more = IfcGeomObjects::Init(data,length);
|
memcpy(data,jbytes,length);
|
||||||
|
env->ReleaseByteArrayElements(jdata, jbytes, JNI_ABORT);
|
||||||
|
IfcGeomObjects::Settings(IfcGeomObjects::USE_WORLD_COORDS, true);
|
||||||
|
IfcGeomObjects::Settings(IfcGeomObjects::WELD_VERTICES, false);
|
||||||
|
IfcGeomObjects::Settings(IfcGeomObjects::CONVERT_BACK_UNITS, true);
|
||||||
|
return has_more = IfcGeomObjects::Init(data, length);
|
||||||
|
}
|
||||||
|
|
||||||
|
JNIEXPORT jstring JNICALL Java_org_ifcopenshell_IfcOpenShellModel_getPluginVersion (JNIEnv * env, jobject) {
|
||||||
|
return env->NewStringUTF(IFCOPENSHELL_VERSION);
|
||||||
}
|
}
|
||||||
@@ -23,6 +23,14 @@ JNIEXPORT jobject JNICALL Java_org_ifcopenshell_IfcOpenShellModel_getGeometry
|
|||||||
JNIEXPORT jboolean JNICALL Java_org_ifcopenshell_IfcOpenShellModel_setIfcData
|
JNIEXPORT jboolean JNICALL Java_org_ifcopenshell_IfcOpenShellModel_setIfcData
|
||||||
(JNIEnv *, jobject, jbyteArray);
|
(JNIEnv *, jobject, jbyteArray);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Class: org_ifcopenshell_IfcOpenShellModel
|
||||||
|
* Method: getPluginVersion
|
||||||
|
* Signature: ()Ljava/lang/String;
|
||||||
|
*/
|
||||||
|
JNIEXPORT jstring JNICALL Java_org_ifcopenshell_IfcOpenShellModel_getPluginVersion
|
||||||
|
(JNIEnv *, jobject);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -27,6 +27,8 @@
|
|||||||
#ifndef IFCPARSE_H
|
#ifndef IFCPARSE_H
|
||||||
#define IFCPARSE_H
|
#define IFCPARSE_H
|
||||||
|
|
||||||
|
#define IFCOPENSHELL_VERSION "0.3.0-rc2"
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|||||||
Reference in New Issue
Block a user