Codemesh Runtime v3 C++ API Reference  3.9.205
Public Member Functions | List of all members
Test_JavaVM Struct Reference

A JavaVM type that simulates a Java backend for framework testing purposes. More...

#include <Test_JavaVM.h>

Inheritance diagram for Test_JavaVM:
Inheritance graph
[legend]
Collaboration diagram for Test_JavaVM:
Collaboration graph
[legend]

Public Member Functions

 Test_JavaVM ()
 The default constructor. More...
 
 ~Test_JavaVM ()
 Destructor. More...
 
jint bind_class (const char *name)
 Binds a classname to a "handle". More...
 
jstring RemoteNewString (const unsigned short *str, xmog_JNIEnv *env, int len=-1)
 Attempts to create a string on the server.
 
jstring RemoteNewString (const char *str, xmog_JNIEnv *env, xmog_base *encoding, int len=-1)
 Attempts to create a string on the server.
 
jstring RemoteNewString (const char *str, xmog_JNIEnv *env, const char *encoding, int len=-1)
 Attempts to create a string on the server.
 
jstring RemoteNewStringUtf (const char *str, xmog_JNIEnv *env)
 Attempts to create a string on the server.
 
jarray RemoteNewArray (const char *arrType, jsize size, xmog_JNIEnv *env)
 Creates an array and returns the handle. More...
 
virtual jarray RemoteNewPrimitiveArray (const char *arrType, xmog::xmog_data_code elemCode, void *pData, jsize length, jsize size, xmog_JNIEnv *env)
 Creates a primitive array from the given data and returns the handle. More...
 
void RemoteGetArrayRegion (const char *arrType, jarray array, jsize start, jsize len, void *buf, xmog_JNIEnv *env)
 Returns the values in a region of an array. More...
 
void RemoteSetArrayRegion (const char *arrType, jarray array, jsize start, jsize len, void *buf, xmog_JNIEnv *env)
 Sets the values of a region of an array. More...
 
jclass RemoteGetSuperClass (jclass sub, xmog_JNIEnv *env)
 Queries for a subtype's superclass. More...
 
jboolean RemoteIsAssignableFrom (jclass sub, jclass sup, xmog_JNIEnv *env)
 Queries for an inheritance relationship between two types. More...
 
jboolean RemoteIsInstanceOf (jobject obj, jclass clazz, xmog_JNIEnv *env)
 Queries for an instance-of relationship between an object and a type. More...
 
jclass RemoteGetClass (jobject obj, xmog_JNIEnv *env)
 Queries for the type of an object. More...
 
- Public Member Functions inherited from xmog_JavaVM
 xmog_JavaVM ()
 The default constructor.
 
 ~xmog_JavaVM ()
 Destructor. More...
 
xmog_jvmgetJvm () const
 Returns the higher-level abstraction that owns this instance.
 
void setJvm (xmog_jvm *jvm_)
 Sets the higher-level abstraction that owns this instance. More...
 
bool getInDestroy ()
 Returns true if this instance has started destroy processing.
 
void setInDestroy (bool b)
 Sets flag to true if this instance has started destroy processing.
 
- Public Member Functions inherited from xmog_remote_ref_map
 xmog_remote_ref_map (xmog_remote_ref_map *parentFrame)
 Constructs a reference map.
 
int get_data (jobject _ref, void **pData, size_t *pLength)
 Returns the cached data associated with a reference.
 
int delete_global (jobject _ref)
 Deletes a global reference from the map. More...
 
jobject new_global (jobject _ref, void *data=NULL, size_t size=0)
 Adds a global reference to the map.
 
int delete_local (jobject _ref)
 Deletes a local reference from the map. More...
 
jobject new_local (jobject _ref, void *data=NULL, size_t size=0)
 Adds a local reference to the map.
 
int delete_weakglobal (jobject _ref)
 Deletes a weak global reference from the map. More...
 
jobject new_weakglobal (jobject _ref, void *data=NULL, size_t size=0)
 Adds a weak global reference to the map.
 
xmog_remote_ref_mappush_frame ()
 Pushes a new frame on the stack and returns the new frame.
 
xmog_remote_ref_mappop_frame ()
 Pops a frame from the stack and returns the parent frame.
 
- Public Member Functions inherited from xmog_class_info_mapper
 xmog_class_info_mapper ()
 Constructs a mapper instance.
 
int register_class (jclass id, jclass super_id, const char *name, size_t numIfcs, jclass *ifcs)
 
int get_super (jclass sub, jclass &sup) const
 
int get_class_name (jclass id, char *&name) const
 
int get_num_ifcs (jclass sub, size_t &size) const
 
int get_ifc (jclass sub, size_t index, jclass &ifc) const
 
int is_assignable (jclass sub, jclass sup, jboolean &bAssignable) const
 

Additional Inherited Members

- Public Types inherited from xmog_remote_ref_map
typedef jobject Key
 
typedef xmog_remote_refValue
 
typedef ACE_Map_Manager< Key, Value, ACE_Null_Mutex > ObjectFrame
 
- Public Types inherited from xmog_class_info_mapper
typedef ACE_Map_Manager< jclass, xmog_class_info, ACE_Recursive_Thread_Mutex > ClassToClassInfoMap
 
- Protected Attributes inherited from xmog_JavaVM
xmog_jvmtheJvm
 A pointer to the higher level abstraction instance that owns this instance. More...
 
bool bInDestroy_
 A guard flag against recursive invocation of the DestroyJavaVM() method.
 

Detailed Description

A JavaVM type that simulates a Java backend for framework testing purposes.

Constructor & Destructor Documentation

◆ Test_JavaVM()

Test_JavaVM::Test_JavaVM ( )

The default constructor.

Sufficient for testing purposes because we don't really need to anything here.

◆ ~Test_JavaVM()

Test_JavaVM::~Test_JavaVM ( )

Destructor.

Member Function Documentation

◆ bind_class()

jint Test_JavaVM::bind_class ( const char *  name)

Binds a classname to a "handle".

If the classname is already bound, the existing handle is returned.

◆ RemoteGetArrayRegion()

void Test_JavaVM::RemoteGetArrayRegion ( const char *  arrType,
jarray  array,
jsize  start,
jsize  len,
void *  buf,
xmog_JNIEnv env 
)
virtual

Returns the values in a region of an array.

Parameters
arrTypethe array type in JNI representation ("Z" for bool, etc).
arraythe array object handle.
startthe starting index of the region in the array.
lenthe length of the region.
bufthe native buffer into which we get the value.
envthe local environment.

Implements xmog_JavaVM.

◆ RemoteGetClass()

jclass Test_JavaVM::RemoteGetClass ( jobject  obj,
xmog_JNIEnv env 
)
virtual

Queries for the type of an object.

Parameters
objthe object we're testing.
envthe local environment.

Implements xmog_JavaVM.

◆ RemoteGetSuperClass()

jclass Test_JavaVM::RemoteGetSuperClass ( jclass  sub,
xmog_JNIEnv env 
)
virtual

Queries for a subtype's superclass.

Parameters
subthe subtype's handle.
envthe local environment.

Implements xmog_JavaVM.

◆ RemoteIsAssignableFrom()

jboolean Test_JavaVM::RemoteIsAssignableFrom ( jclass  sub,
jclass  sup,
xmog_JNIEnv env 
)
virtual

Queries for an inheritance relationship between two types.

Parameters
subthe subtype's handle.
supthe supertype's handle.
envthe local environment.

Implements xmog_JavaVM.

◆ RemoteIsInstanceOf()

jboolean Test_JavaVM::RemoteIsInstanceOf ( jobject  obj,
jclass  clazz,
xmog_JNIEnv env 
)
virtual

Queries for an instance-of relationship between an object and a type.

Parameters
objthe object we're testing.
clazzthe type we're testing against.
envthe local environment.

Implements xmog_JavaVM.

◆ RemoteNewArray()

jarray Test_JavaVM::RemoteNewArray ( const char *  arrType,
jsize  size,
xmog_JNIEnv env 
)
virtual

Creates an array and returns the handle.

Parameters
arrTypethe array type name in UTF-8 representation.
sizethe array size.
envthe local environment.

Implements xmog_JavaVM.

◆ RemoteNewPrimitiveArray()

virtual jarray Test_JavaVM::RemoteNewPrimitiveArray ( const char *  arrType,
xmog::xmog_data_code  elemCode,
void *  pData,
jsize  length,
jsize  size,
xmog_JNIEnv env 
)
virtual

Creates a primitive array from the given data and returns the handle.

Parameters
arrTypethe array type name in UTF-8 representation.
elemCodethe data code of the element type.
pDatathe array data.
lengththe array length (number of elements).
sizethe array size in bytes.
envthe local environment.

Implements xmog_JavaVM.

◆ RemoteSetArrayRegion()

void Test_JavaVM::RemoteSetArrayRegion ( const char *  arrType,
jarray  array,
jsize  start,
jsize  len,
void *  buf,
xmog_JNIEnv env 
)
virtual

Sets the values of a region of an array.

Parameters
arrTypethe array type in JNI representation ("Z" for bool, etc).
arraythe array object handle.
startthe starting index of the region in the array.
lenthe length of the region.
bufthe native buffer into which we get the value.
envthe local environment.

Implements xmog_JavaVM.


The documentation for this struct was generated from the following file:

Copyright (c) 1999-2020 by Codemesh, Inc., ALL RIGHTS RESERVED.