java_info.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:8k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1997, 1998, 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  *
  7.  * $Id: java_info.h,v 11.17 2000/07/31 20:28:30 dda Exp $
  8.  */
  9. #ifndef _JAVA_INFO_H_
  10. #define _JAVA_INFO_H_
  11. /*
  12.  * "Info" classes for Java implementation of Berkeley DB API.
  13.  * These classes hold extra information for which there is
  14.  * no room or counterpart in the base classes used in the C API.
  15.  * In the case of a DBT, the DBT_javainfo class is stored in the
  16.  * 'private' variable of the java Dbt, and the DBT_javainfo is subclassed
  17.  * from a DBT.  In the case of DB and DB_ENV, the appropriate
  18.  * info objects are pointed to by the DB and DB_ENV objects.
  19.  * This is convenient to implement callbacks.
  20.  */
  21. /****************************************************************
  22.  *
  23.  * Declaration of class DBT_javainfo
  24.  *
  25.  * A DBT_javainfo is created whenever a Dbt (java) object is created,
  26.  * and a pointer to it is stored in its private info storage.
  27.  * It is subclassed from DBT, because we must retain some extra
  28.  * information in it while it is in use.  In particular, when
  29.  * a java array is associated with it, we need to keep a Globally
  30.  * Locked reference to it so it is not GC'd.  This reference is
  31.  * destroyed when the Dbt is GC'd.
  32.  */
  33. typedef struct _dbt_javainfo
  34. {
  35. DBT dbt;
  36. DB *db_; /* associated DB */
  37. jobject dbtref_; /* the java Dbt object */
  38. jbyteArray array_;
  39. int offset_;
  40. int create_array_;      /* flag to create the array as needed */
  41. }
  42. DBT_JAVAINFO;  /* used with all 'dbtji' functions */
  43. extern DBT_JAVAINFO *dbjit_construct();
  44. extern void dbjit_release(DBT_JAVAINFO *dbjit, JNIEnv *jnienv);
  45. /****************************************************************
  46.  *
  47.  * Declaration of class DB_ENV_JAVAINFO
  48.  *
  49.  * A DB_ENV_JAVAINFO is allocated and stuffed into the cj_internal
  50.  * and the db_errpfx for every DB_ENV created.  It holds a
  51.  * little extra info that is needed to support callbacks.
  52.  *
  53.  * There's a bit of trickery here, because we have built this
  54.  * above a layer that has a C function callback that gets
  55.  * invoked when an error occurs.  One of the C callback's arguments
  56.  * is the prefix from the DB_ENV, but since we stuffed a pointer
  57.  * to our own DB_ENV_JAVAINFO into the prefix, we get that object as an
  58.  * argument to the C callback.  Thus, the C callback can have
  59.  * access to much more than just the prefix, and it needs that
  60.  * to call back into the Java enviroment.
  61.  *
  62.  * The DB_ENV_JAVAINFO object holds a copy of the Java Virtual Machine,
  63.  * which is needed to attach to the current running thread
  64.  * whenever we need to make a callback.  (This is more reliable
  65.  * than our previous approach, which was to save the thread
  66.  * that created the DbEnv).  It also has the Java callback object,
  67.  * as well as a 'default' callback object that is used when the
  68.  * caller sets the callback to null.  It also has the original
  69.  * error prefix, since we overwrote the one in the DB_ENV.
  70.  * There are also fields that are unrelated to the handling
  71.  * of callbacks, but are convenient to attach to a DB_ENV.
  72.  *
  73.  * Note: We assume that the Java layer is the only one
  74.  * fiddling with the contents of db_errpfx, db_errcall, cj_internal
  75.  * for a DB_ENV that was created via Java.  Since the Java layer should
  76.  * have the only pointer to such a DB_ENV, this should be true.
  77.  */
  78. typedef struct _db_env_javainfo
  79. {
  80. JavaVM *javavm_;
  81. int is_dbopen_;
  82. char *errpfx_;
  83. jobject jdbref_; /* temporary reference */
  84. jobject jenvref_; /* temporary reference */
  85. jobject default_errcall_; /* global reference */
  86. jobject errcall_; /* global reference */
  87. jobject feedback_; /* global reference */
  88. jobject tx_recover_; /* global reference */
  89. jobject recovery_init_; /* global reference */
  90. unsigned char *conflict_;
  91. }
  92. DB_ENV_JAVAINFO;  /* used with all 'dbjie' functions */
  93. /* create/initialize an object */
  94. extern DB_ENV_JAVAINFO *dbjie_construct(JNIEnv *jnienv,
  95.        jobject default_errcall,
  96.        int is_dbopen);
  97. /* release all objects held by this this one */
  98. extern void dbjie_dealloc(DB_ENV_JAVAINFO *, JNIEnv *jnienv);
  99. /* free this object, releasing anything allocated on its behalf */
  100. extern void dbjie_destroy(DB_ENV_JAVAINFO *, JNIEnv *jnienv);
  101. /* This gets the environment for the current thread */
  102. extern JNIEnv *dbjie_get_jnienv(DB_ENV_JAVAINFO *);
  103. extern void dbjie_set_errpfx(DB_ENV_JAVAINFO *, JNIEnv *jnienv,
  104.      jstring errpfx);
  105. extern jstring dbjie_get_errpfx(DB_ENV_JAVAINFO *, JNIEnv *jnienv);
  106. extern void dbjie_set_errcall(DB_ENV_JAVAINFO *, JNIEnv *jnienv,
  107.       jobject new_errcall);
  108. extern void dbjie_set_conflict(DB_ENV_JAVAINFO *, unsigned char *v);
  109. extern void dbjie_set_feedback_object(DB_ENV_JAVAINFO *, JNIEnv *jnienv,
  110.       DB_ENV *dbenv, jobject value);
  111. extern void dbjie_call_feedback(DB_ENV_JAVAINFO *, DB_ENV *dbenv, jobject jenv,
  112. int opcode, int percent);
  113. extern void dbjie_set_recovery_init_object(DB_ENV_JAVAINFO *, JNIEnv *jnienv,
  114.    DB_ENV *dbenv, jobject value);
  115. extern int dbjie_call_recovery_init(DB_ENV_JAVAINFO *, DB_ENV *dbenv,
  116.     jobject jenv);
  117. extern void dbjie_set_tx_recover_object(DB_ENV_JAVAINFO *, JNIEnv *jnienv,
  118. DB_ENV *dbenv, jobject value);
  119. extern int dbjie_call_tx_recover(DB_ENV_JAVAINFO *,
  120.  DB_ENV *dbenv, jobject jenv,
  121.  DBT *dbt, DB_LSN *lsn, int recops);
  122. extern jobject dbjie_get_errcall(DB_ENV_JAVAINFO *) ;
  123. extern int dbjie_is_dbopen(DB_ENV_JAVAINFO *);
  124. /****************************************************************
  125.  *
  126.  * Declaration of class DB_JAVAINFO
  127.  *
  128.  * A DB_JAVAINFO is allocated and stuffed into the cj_internal field
  129.  * for every DB created.  It holds a little extra info that is needed
  130.  * to support callbacks.
  131.  *
  132.  * Note: We assume that the Java layer is the only one
  133.  * fiddling with the contents of cj_internal
  134.  * for a DB that was created via Java.  Since the Java layer should
  135.  * have the only pointer to such a DB, this should be true.
  136.  */
  137. typedef struct _db_javainfo
  138. {
  139. JavaVM *javavm_;
  140. jobject jdbref_; /* temporary reference during callback */
  141. jobject feedback_; /* global reference */
  142. jobject append_recno_;  /* global reference */
  143. jobject bt_compare_;    /* global reference */
  144. jobject bt_prefix_; /* global reference */
  145. jobject dup_compare_; /* global reference */
  146. jobject h_hash_; /* global reference */
  147. jmethodID feedback_method_id_;
  148. jmethodID append_recno_method_id_;
  149. jmethodID bt_compare_method_id_;
  150. jmethodID bt_prefix_method_id_;
  151. jmethodID dup_compare_method_id_;
  152. jmethodID h_hash_method_id_;
  153. jint construct_flags_;
  154. } DB_JAVAINFO;
  155. /* create/initialize an object */
  156. extern DB_JAVAINFO *dbji_construct(JNIEnv *jnienv, jint flags);
  157. /* release all objects held by this this one */
  158. extern void dbji_dealloc(DB_JAVAINFO *, JNIEnv *jnienv);
  159. /* free this object, releasing anything allocated on its behalf */
  160. extern void dbji_destroy(DB_JAVAINFO *, JNIEnv *jnienv);
  161. /* This gets the environment for the current thread */
  162. extern JNIEnv *dbji_get_jnienv();
  163. extern jint dbji_get_flags();
  164. extern void dbji_set_feedback_object(DB_JAVAINFO *, JNIEnv *jnienv, DB *db, jobject value);
  165. extern void dbji_call_feedback(DB_JAVAINFO *, DB *db, jobject jdb,
  166.        int opcode, int percent);
  167. extern void dbji_set_append_recno_object(DB_JAVAINFO *, JNIEnv *jnienv, DB *db, jobject value);
  168. extern int dbji_call_append_recno(DB_JAVAINFO *, DB *db, jobject jdb,
  169.   DBT *dbt, jint recno);
  170. extern void dbji_set_bt_compare_object(DB_JAVAINFO *, JNIEnv *jnienv, DB *db, jobject value);
  171. extern int dbji_call_bt_compare(DB_JAVAINFO *, DB *db, jobject jdb,
  172. const DBT *dbt1, const DBT *dbt2);
  173. extern void dbji_set_bt_prefix_object(DB_JAVAINFO *, JNIEnv *jnienv, DB *db, jobject value);
  174. extern size_t dbji_call_bt_prefix(DB_JAVAINFO *, DB *db, jobject jdb,
  175.   const DBT *dbt1, const DBT *dbt2);
  176. extern void dbji_set_dup_compare_object(DB_JAVAINFO *, JNIEnv *jnienv, DB *db, jobject value);
  177. extern int dbji_call_dup_compare(DB_JAVAINFO *, DB *db, jobject jdb,
  178.  const DBT *dbt1, const DBT *dbt2);
  179. extern void dbji_set_h_hash_object(DB_JAVAINFO *, JNIEnv *jnienv, DB *db, jobject value);
  180. extern int dbji_call_h_hash(DB_JAVAINFO *, DB *db, jobject jdb,
  181.     const void *data, int len);
  182. #endif /* !_JAVA_INFO_H_ */