/usr/share/pyshared/classRepresentation/objectGiws.py is in giws 2.0.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 | #!/usr/bin/python -u
# Copyright or Copr. INRIA/Scilab - Sylvestre LEDRU
#
# Sylvestre LEDRU - <sylvestre.ledru@inria.fr> <sylvestre@ledru.info>
#
# This software is a computer program whose purpose is to generate C++ wrapper
# for Java objects/methods.
#
# This software is governed by the CeCILL license under French law and
# abiding by the rules of distribution of free software. You can use,
# modify and/ or redistribute the software under the terms of the CeCILL
# license as circulated by CEA, CNRS and INRIA at the following URL
# "http://www.cecill.info".
#
# As a counterpart to the access to the source code and rights to copy,
# modify and redistribute granted by the license, users are provided only
# with a limited warranty and the software's author, the holder of the
# economic rights, and the successive licensors have only limited
# liability.
#
# In this respect, the user's attention is drawn to the risks associated
# with loading, using, modifying and/or developing or reproducing the
# software by the user in light of its specific status of free software,
# that may mean that it is complicated to manipulate, and that also
# therefore means that it is reserved for developers and experienced
# professionals having in-depth computer knowledge. Users are therefore
# encouraged to load and test the software's suitability as regards their
# requirements in conditions enabling the security of their systems and/or
# data to be ensured and, more generally, to use and operate it in the
# same conditions as regards security.
#
# The fact that you are presently reading this means that you have had
# knowledge of the CeCILL license and that you accept its terms.
#
# For more information, see the file COPYING
from methodGiws import methodGiws
from JNIFrameWork import JNIFrameWork
from datatypes.stringDataGiws import stringDataGiws
from configGiws import configGiws
class objectGiws:
__name=""
__methods=[]
__stringClassSet=False
# Which class it extends
__extends=None
def __init__(self, name):
self.__name=name
self.__methods=[]
def __init__(self, name, extends):
self.__name=name
self.__methods=[]
self.__extends=extends
def addMethod(self, method):
if isinstance(method,methodGiws):
self.__methods.append(method)
def getName(self):
return self.__name
def getMethods(self):
return self.__methods
def __getDeclarationOfCachingMethodID(self):
### Init the list of the cache of methodID
str=""
stringClassSet=False
for method in self.__methods:
str+="""%s=NULL;
"""%method.getUniqueNameOfTheMethod()
for param in method.getParameters():
### Avoids to load the class String each time we need it
if isinstance(param.getType(),stringDataGiws) and param.getType().isArray()==True and stringClassSet!=True and method.getModifier()!="static":
str+="""
jclass localStringArrayClass = curEnv->FindClass("java/lang/String");
stringArrayClass = static_cast<jclass>(curEnv->NewGlobalRef(localStringArrayClass));
curEnv->DeleteLocalRef(localStringArrayClass);
"""
stringClassSet=True
if self.getExtendedClass()!=None:
# Get the father object to work on it.
str+=self.getExtendedClass().__getDeclarationOfCachingMethodID()
return str
def __getConstructorWhichInstanciateTheNewObject(self):
""" """
# Management of the error when the class cannot be found
if configGiws().getThrowsException():
errorMgntClass=""" throw %s::JniClassNotFoundException(curEnv, this->className());"""%(configGiws().getExceptionFileName())
else:
errorMgntClass="""std::cerr << "Could not get the Class " << this->className() << std::endl;
curEnv->ExceptionDescribe();
exit(EXIT_FAILURE);"""
# Management of the error when the global ref could not be created
if configGiws().getThrowsException():
errorMgntCreation="""throw %s::JniObjectCreationException(curEnv, this->className());"""%(configGiws().getExceptionFileName())
else:
errorMgntCreation="""std::cerr << "Could not create a Global Ref of " << this->className() << std::endl;
curEnv->ExceptionDescribe();
exit(EXIT_FAILURE);"""
# Management of the error when it is not possible to retrieve the constructor
if configGiws().getThrowsException():
errorMgntConstructor="""throw %s::JniObjectCreationException(curEnv, this->className());"""%(configGiws().getExceptionFileName())
else:
errorMgntConstructor="""std::cerr << "Could not retrieve the constructor of the class " << this->className() << " with the profile : " << construct << param << std::endl;
curEnv->ExceptionDescribe();
exit(EXIT_FAILURE);"""
# Management of the error when it is not possible instantiate the obj
if configGiws().getThrowsException():
errorMgntInstantiate="""throw %s::JniObjectCreationException(curEnv, this->className());"""%(configGiws().getExceptionFileName())
else:
errorMgntInstantiate="""std::cerr << "Could not instantiate the object " << this->className() << " with the constructor : " << construct << param << std::endl;
curEnv->ExceptionDescribe();
exit(EXIT_FAILURE);"""
# Management of the error when it is not possible create a global ref
if configGiws().getThrowsException():
errorMgntRef="""throw %s::JniObjectCreationException(curEnv, this->className());"""%(configGiws().getExceptionFileName())
else:
errorMgntRef="""std::cerr << "Could not create a new global ref of " << this->className() << std::endl;
curEnv->ExceptionDescribe();
exit(EXIT_FAILURE);"""
### Init the list of the cache of methodID
strMethodID=self.__getDeclarationOfCachingMethodID()
constructorProfile="""%s::%s"""%(self.getName(), self.__getConstructorProfileWhichInstanciateTheNewObject())
if self.getExtendedClass()!=None:
constructorProfile+=""" : %s(fakeGiwsDataType::fakeGiwsDataType())""" % (self.getExtendedClass().getName())
return """%s {
jmethodID constructObject = NULL ;
jobject localInstance ;
jclass localClass ;
const std::string construct="<init>";
const std::string param="()V";
jvm=jvm_;
JNIEnv * curEnv = getCurrentEnv();
localClass = curEnv->FindClass( this->className().c_str() ) ;
if (localClass == NULL) {
%s
}
this->instanceClass = static_cast<jclass>(curEnv->NewGlobalRef(localClass));
/* localClass is not needed anymore */
curEnv->DeleteLocalRef(localClass);
if (this->instanceClass == NULL) {
%s
}
constructObject = curEnv->GetMethodID( this->instanceClass, construct.c_str() , param.c_str() ) ;
if(constructObject == NULL){
%s
}
localInstance = curEnv->NewObject( this->instanceClass, constructObject ) ;
if(localInstance == NULL){
%s
}
this->instance = curEnv->NewGlobalRef(localInstance) ;
if(this->instance == NULL){
%s
}
/* localInstance not needed anymore */
curEnv->DeleteLocalRef(localInstance);
/* Methods ID set to NULL */
%s
}
"""%(constructorProfile, errorMgntClass, errorMgntCreation, errorMgntConstructor, errorMgntInstantiate, errorMgntRef, strMethodID)
def __getConstructorWhichUsesAnAlreadyExistingJObject(self):
### Init the list of the cache of methodID
strMethodID=self.__getDeclarationOfCachingMethodID()
# Management of the error when the instance class could not be created a global ref
if configGiws().getThrowsException():
errorMgntRef="""throw %s::JniObjectCreationException(curEnv, this->className());"""%(configGiws().getExceptionFileName())
else:
errorMgntRef="""
std::cerr << "Could not create a Global Ref of " << this->className() << std::endl;
curEnv->ExceptionDescribe();
exit(EXIT_FAILURE);"""
# Management of the error when the instance class could not be created a global ref
if configGiws().getThrowsException():
errorMgntNewRef="""throw %s::JniObjectCreationException(curEnv, this->className());"""%(configGiws().getExceptionFileName())
else:
errorMgntNewRef="""
std::cerr << "Could not create a new global ref of " << this->className() << std::endl;
curEnv->ExceptionDescribe();
exit(EXIT_FAILURE);"""
constructorProfile="""%s::%s"""%(self.getName(), self.__getConstructorProfileWhichUsesAnAlreadyExistingJObject())
if self.getExtendedClass()!=None:
constructorProfile+=""" : %s(fakeGiwsDataType::fakeGiwsDataType()) """ % (self.getExtendedClass().getName())
return """
%s {
jvm=jvm_;
JNIEnv * curEnv = getCurrentEnv();
jclass localClass = curEnv->GetObjectClass(JObj);
this->instanceClass = static_cast<jclass>(curEnv->NewGlobalRef(localClass));
curEnv->DeleteLocalRef(localClass);
if (this->instanceClass == NULL) {
%s
}
this->instance = curEnv->NewGlobalRef(JObj) ;
if(this->instance == NULL){
%s
}
/* Methods ID set to NULL */
%s
}
"""%(constructorProfile, errorMgntRef, errorMgntNewRef, strMethodID)
# Returns the class the current one is extending
# Returns None if not existing
def getExtendedClass(self):
return self.__extends
def getConstructorBodyCXX(self):
str=self.__getConstructorWhichInstanciateTheNewObject()
str+=self.__getConstructorWhichUsesAnAlreadyExistingJObject()
return str
def __getConstructorProfileWhichInstanciateTheNewObject(self):
str="""%s(%s * %s_)"""% (self.getName(), JNIFrameWork().getJavaVMVariableType(), JNIFrameWork().getJavaVMVariable())
# if self.__extends!=None:
# str+=""": %s(fakeGiwsDataType::fakeGiwsDataType())"""%(self.__extends)
return str
def __getConstructorProfileWhichUsesAnAlreadyExistingJObject(self):
return """%s(%s * %s_, jobject JObj)"""% (self.getName(), JNIFrameWork().getJavaVMVariableType(), JNIFrameWork().getJavaVMVariable())
def getConstructorWhichUsesAnAlreadyExistingJObjectHeaderCXX(self):
return """%s;"""%self.__getConstructorProfileWhichUsesAnAlreadyExistingJObject()
def getConstructorWhichInstanciateTheNewObjectHeaderCXX(self):
return """%s;"""%self.__getConstructorProfileWhichInstanciateTheNewObject()
def __getFakeConstructorForExtendedClasses(self):
str=""
if self.getExtendedClass()==None:
# It is a potential master class, add the fake constructor
str+="""
/**
* This is a fake constructor to avoid the constructor
* chaining when dealing with extended giws classes
*/
#ifdef FAKEGIWSDATATYPE
%s(fakeGiwsDataType::fakeGiwsDataType /* unused */) {}
#endif
"""%(self.getName())
return str
def getMethodsProfileForMethodIdCache(self):
str=""
stringClassSet=False
for method in self.__methods:
str+="""jmethodID %s; // cache method id
"""%method.getUniqueNameOfTheMethod()
for param in method.getParameters():
### Avoids to load the class String each time we need it
if isinstance(param.getType(),stringDataGiws) and param.getType().isArray()==True and stringClassSet!=True:
str+="""jclass stringArrayClass;
"""
stringClassSet=True
self.__stringClassSet=True
return str
def getProtectedFields(self):
str=""
if self.getExtendedClass()==None:
str+="""
jobject instance;
jclass instanceClass; // cache class
"""
return str
def getMethodsCXX(self, type="header"):
i=1
str=""
for method in self.__methods:
if type=="header":
str=str+method.generateCXXHeader()
else:
str=str+method.generateCXXBody(self.getName())
if len(self.__methods)!=i:
str+="""
"""
i=i+1
return str
def generateCXXHeader(self, packageName):
JNIObjectName=packageName+"/"+self.getName()
if self.getExtendedClass()==None:
classProfile="""class GIWSEXPORT %s {""" % (self.getName())
else:
classProfile="""class GIWSEXPORT %s : public %s {
""" % (self.getName(), self.getExtendedClass().getName())
return """%s
private:
%s * %s;
protected:
%s
%s
// Caching (if any)
%s
/**
* Get the environment matching to the current thread.
*/
virtual JNIEnv * getCurrentEnv();
public:
// Constructor
/**
* Create a wrapping of the object from a JNIEnv.
* It will call the default constructor
* @param JEnv_ the Java Env
*/
%s
/**
* Create a wrapping of an already existing object from a JNIEnv.
* The object must have already been instantiated
* @param JEnv_ the Java Env
* @param JObj the object
*/
%s
%s
// Destructor
~%s();
// Generic method
// Synchronization methods
/**
* Enter monitor associated with the object.
* Equivalent of creating a "synchronized(obj)" scope in Java.
*/
void synchronize();
/**
* Exit monitor associated with the object.
* Equivalent of ending a "synchronized(obj)" scope.
*/
void endSynchronize();
// Methods
%s
/**
* Get class name to use for static methods
* @return class name to use for static methods
*/
%s
/**
* Get class to use for static methods
* @return class to use for static methods
*/
%s
};
""" % (classProfile, JNIFrameWork().getJavaVMVariableType(), JNIFrameWork().getJavaVMVariable(), self.getMethodsProfileForMethodIdCache(), self.getProtectedFields(), self.getCacheBuffer(), self.getConstructorWhichInstanciateTheNewObjectHeaderCXX(),self.getConstructorWhichUsesAnAlreadyExistingJObjectHeaderCXX(),self.__getFakeConstructorForExtendedClasses(), self.getName(), self.getMethodsCXX(), self.getClassNameProfile(JNIObjectName), self.getInitClassProfile())
def generateCXXBody(self):
return """
// Static declarations (if any)
%s
// Returns the current env
%s
// Destructor
%s
// Constructors
%s
// Generic methods
%s
%s
// Method(s)
%s
""" % (self.getStaticVariableDeclaration(), JNIFrameWork().getMethodGetCurrentEnv(self.getName()), JNIFrameWork().getObjectDestuctor(self.getName(),stringClassSet=self.__stringClassSet), self.getConstructorBodyCXX(), JNIFrameWork().getSynchronizeMethod(self.getName()) , JNIFrameWork().getEndSynchronizeMethod(self.getName()), self.getMethodsCXX("body"))
def getClassNameProfile(self, JNIObjectName):
return """
static const std::string className()
{
return "%s";
}
""" % (JNIObjectName)
def getInitClassProfile(self):
return """
static jclass initClass(JNIEnv * curEnv)
{
static jclass cls = 0;
if (cls == 0)
{
jclass _cls = curEnv->FindClass(className().c_str());
if (_cls)
{
cls = static_cast<jclass>(curEnv->NewGlobalRef(_cls));
}
}
return cls;
}
"""
def needCaching(self):
for method in self.__methods:
for param in method.getParameters():
if param.getType().isByteBufferBased() == True:
return True
return False
def getStaticVariableDeclaration(self):
str=""
if self.needCaching():
str="""
// Cache of the bytebuffer stuff
jclass %s::ByteOrderClass = NULL;
jmethodID %s::nativeOrderID = NULL;
jobject %s::nativeOrder = NULL;
jmethodID %s::orderID = NULL;
jclass %s::bbCls = NULL;
jmethodID %s::asdbIDByteBuffer = NULL;
jmethodID %s::asdbIDCharBuffer = NULL;
jmethodID %s::asdbIDDoubleBuffer = NULL;
jmethodID %s::asdbIDFloatBuffer = NULL;
jmethodID %s::asdbIDIntBuffer = NULL;
jmethodID %s::asdbIDLongBuffer = NULL;
jmethodID %s::asdbIDShortBuffer = NULL;""" % ( self.getName(), self.getName(), self.getName(), self.getName(), self.getName(), self.getName(), self.getName(), self.getName(), self.getName(), self.getName(), self.getName(), self.getName() )
return str
def getCacheBuffer(self):
str=""
if self.needCaching():
str="""
// Cache of the bytebuffer stuff
static jclass ByteOrderClass;
static jmethodID nativeOrderID;
static jobject nativeOrder;
static jmethodID orderID;
static jclass bbCls;
static jmethodID asdbIDByteBuffer;
static jmethodID asdbIDCharBuffer;
static jmethodID asdbIDDoubleBuffer;
static jmethodID asdbIDFloatBuffer;
static jmethodID asdbIDIntBuffer;
static jmethodID asdbIDLongBuffer;
static jmethodID asdbIDShortBuffer;
"""
return str
|