mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 20:36:16 +01:00 
			
		
		
		
	modified: storage/connect/array.cpp modified: storage/connect/blkfil.cpp modified: storage/connect/block.h modified: storage/connect/bson.cpp modified: storage/connect/cmgoconn.cpp modified: storage/connect/colblk.cpp modified: storage/connect/domdoc.cpp modified: storage/connect/filamap.cpp modified: storage/connect/filamdbf.cpp modified: storage/connect/filamfix.cpp modified: storage/connect/filamgz.cpp modified: storage/connect/filamtxt.cpp modified: storage/connect/filamvct.cpp modified: storage/connect/filamzip.cpp modified: storage/connect/filter.cpp modified: storage/connect/filter.h modified: storage/connect/fmdlex.c modified: storage/connect/global.h modified: storage/connect/ha_connect.cc modified: storage/connect/javaconn.cpp modified: storage/connect/javaconn.h modified: storage/connect/jdbconn.cpp modified: storage/connect/jmgfam.cpp modified: storage/connect/json.cpp modified: storage/connect/macutil.cpp modified: storage/connect/macutil.h modified: storage/connect/maputil.cpp modified: storage/connect/mycat.cc modified: storage/connect/myconn.cpp modified: storage/connect/myconn.h modified: storage/connect/myutil.cpp modified: storage/connect/odbconn.cpp modified: storage/connect/odbconn.h modified: storage/connect/os.h modified: storage/connect/osutil.c modified: storage/connect/plgdbsem.h modified: storage/connect/plgdbutl.cpp modified: storage/connect/plugutil.cpp modified: storage/connect/rcmsg.c modified: storage/connect/reldef.cpp modified: storage/connect/reldef.h modified: storage/connect/tabdos.cpp modified: storage/connect/tabext.cpp modified: storage/connect/tabfix.cpp modified: storage/connect/tabfmt.cpp modified: storage/connect/tabjdbc.cpp modified: storage/connect/tabmac.cpp modified: storage/connect/tabmac.h modified: storage/connect/tabmul.cpp modified: storage/connect/tabmul.h modified: storage/connect/tabmysql.cpp modified: storage/connect/taboccur.cpp modified: storage/connect/tabodbc.cpp modified: storage/connect/tabpivot.cpp modified: storage/connect/tabrest.cpp modified: storage/connect/tabrest.h modified: storage/connect/tabsys.cpp modified: storage/connect/tabtbl.cpp modified: storage/connect/tabutil.cpp modified: storage/connect/tabvct.cpp modified: storage/connect/tabwmi.cpp modified: storage/connect/tabxcl.cpp modified: storage/connect/tabxml.cpp modified: storage/connect/valblk.cpp modified: storage/connect/value.cpp modified: storage/connect/xindex.cpp modified: storage/connect/xindex.h - Fix Date errors and SSL warnings modified: storage/connect/mysql-test/connect/r/jdbc.result modified: storage/connect/mysql-test/connect/r/jdbc_new.result modified: storage/connect/mysql-test/connect/t/jdbc.test modified: storage/connect/mysql-test/connect/t/jdbc_new.test - Update java source files modified: storage/connect/Mongo2Interface.java modified: storage/connect/Mongo3Interface.java added: storage/connect/Client2.java added: storage/connect/Client3.java added: storage/connect/TestInsert2.java added: storage/connect/TestInsert3.java
		
			
				
	
	
		
			130 lines
		
	
	
	
		
			4.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			130 lines
		
	
	
	
		
			4.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/***********************************************************************/
 | 
						|
/*  JavaConn.h : header file for the Java connection classes.          */
 | 
						|
/***********************************************************************/
 | 
						|
 | 
						|
/***********************************************************************/
 | 
						|
/*  Included C-definition files required by the interface.             */
 | 
						|
/***********************************************************************/
 | 
						|
#include "block.h"
 | 
						|
#include "jdbccat.h"
 | 
						|
 | 
						|
/***********************************************************************/
 | 
						|
/*  Java native interface.                                             */
 | 
						|
/***********************************************************************/
 | 
						|
#include <jni.h>
 | 
						|
 | 
						|
/***********************************************************************/
 | 
						|
/*  Constants and defines.                                             */
 | 
						|
/***********************************************************************/
 | 
						|
//  Miscellaneous sizing info
 | 
						|
#define MAX_NUM_OF_MSG   10     // Max number of error messages
 | 
						|
//efine MAX_CURRENCY     30     // Max size of Currency($) string
 | 
						|
#define MAX_TNAME_LEN    32     // Max size of table names
 | 
						|
//efine MAX_FNAME_LEN    256    // Max size of field names
 | 
						|
//efine MAX_STRING_INFO  256    // Max size of string from SQLGetInfo
 | 
						|
//efine MAX_DNAME_LEN    256    // Max size of Recordset names
 | 
						|
//efine MAX_CONNECT_LEN  512    // Max size of Connect string
 | 
						|
//efine MAX_CURSOR_NAME  18     // Max size of a cursor name
 | 
						|
//efine DEFAULT_FIELD_TYPE 0    // TYPE_NULL
 | 
						|
 | 
						|
#if !defined(_WIN32)
 | 
						|
typedef unsigned char *PUCHAR;
 | 
						|
#endif   // !_WIN32
 | 
						|
 | 
						|
enum JCATINFO {
 | 
						|
	JCAT_TAB = 1,      // JDBC Tables
 | 
						|
	JCAT_COL = 2,      // JDBC Columns
 | 
						|
	JCAT_KEY = 3,      // JDBC PrimaryKeys
 | 
						|
};
 | 
						|
 | 
						|
/***********************************************************************/
 | 
						|
/*  This structure is used to control the catalog functions.           */
 | 
						|
/***********************************************************************/
 | 
						|
typedef struct tagJCATPARM {
 | 
						|
	JCATINFO Id;                 // Id to indicate function 
 | 
						|
	PQRYRES  Qrp;                // Result set pointer
 | 
						|
	PCSZ     DB;                 // Database (Schema)
 | 
						|
	PCSZ     Tab;                // Table name or pattern
 | 
						|
	PCSZ     Pat;                // Table type or column pattern
 | 
						|
} JCATPARM;
 | 
						|
 | 
						|
typedef jint(JNICALL *CRTJVM) (JavaVM **, void **, void *);
 | 
						|
typedef jint(JNICALL *GETJVM) (JavaVM **, jsize, jsize *);
 | 
						|
#if defined(_DEBUG)
 | 
						|
typedef jint(JNICALL *GETDEF) (void *);
 | 
						|
#endif   // _DEBUG
 | 
						|
 | 
						|
//class JAVAConn;
 | 
						|
 | 
						|
/***********************************************************************/
 | 
						|
/*  JAVAConn class.                                                    */
 | 
						|
/***********************************************************************/
 | 
						|
class DllExport JAVAConn : public BLOCK {
 | 
						|
	friend class TDBJMG;
 | 
						|
	friend class JMGDISC;
 | 
						|
private:
 | 
						|
	JAVAConn();                      // Standard (unused) constructor
 | 
						|
 | 
						|
public:
 | 
						|
	// Constructor
 | 
						|
	JAVAConn(PGLOBAL g, PCSZ wrapper);
 | 
						|
 | 
						|
	// Set static variables
 | 
						|
	static void SetJVM(void) {
 | 
						|
		LibJvm = NULL;
 | 
						|
		CreateJavaVM = NULL;
 | 
						|
		GetCreatedJavaVMs = NULL;
 | 
						|
#if defined(_DEBUG)
 | 
						|
		GetDefaultJavaVMInitArgs = NULL;
 | 
						|
#endif   // _DEBUG
 | 
						|
	}	// end of SetJVM
 | 
						|
 | 
						|
	static void ResetJVM(void);
 | 
						|
	static bool GetJVM(PGLOBAL g);
 | 
						|
 | 
						|
	// Implementation
 | 
						|
public:
 | 
						|
	//virtual ~JAVAConn();
 | 
						|
	bool IsOpen(void) { return m_Opened; }
 | 
						|
	bool IsConnected(void) { return m_Connected; }
 | 
						|
 | 
						|
	// Java operations
 | 
						|
protected:
 | 
						|
	char *GetUTFString(jstring s);
 | 
						|
	bool gmID(PGLOBAL g, jmethodID& mid, const char *name, const char *sig);
 | 
						|
	bool Check(jint rc = 0);
 | 
						|
 | 
						|
public:
 | 
						|
	virtual void AddJars(PSTRG jpop, char sep) = 0;
 | 
						|
	virtual bool Connect(PJPARM sop) = 0;
 | 
						|
	virtual bool Open(PGLOBAL g);
 | 
						|
	virtual bool MakeCursor(PGLOBAL g, PTDB tdbp, PCSZ options, 
 | 
						|
		                                            PCSZ filter, bool pipe) = 0;
 | 
						|
	virtual void Close(void);
 | 
						|
 | 
						|
protected:
 | 
						|
	// Members
 | 
						|
#if defined(_WIN32)
 | 
						|
	static HANDLE LibJvm;              // Handle to the jvm DLL
 | 
						|
#else   // !_WIN32
 | 
						|
	static void  *LibJvm;              // Handle for the jvm shared library
 | 
						|
#endif  // !_WIN32
 | 
						|
	static CRTJVM CreateJavaVM;
 | 
						|
	static GETJVM GetCreatedJavaVMs;
 | 
						|
#if defined(_DEBUG)
 | 
						|
	static GETDEF GetDefaultJavaVMInitArgs;
 | 
						|
#endif   // _DEBUG
 | 
						|
	PGLOBAL   m_G;
 | 
						|
	JavaVM   *jvm;                      // Pointer to the JVM (Java Virtual Machine)
 | 
						|
	JNIEnv   *env;                      // Pointer to native interface
 | 
						|
	jclass    jdi;											// Pointer to the java wrapper class
 | 
						|
	jobject   job;											// The java wrapper class object
 | 
						|
	jmethodID errid;										// The GetErrmsg method ID
 | 
						|
	PFBLOCK   fp;
 | 
						|
	bool      m_Opened;
 | 
						|
	bool      m_Connected;
 | 
						|
	PCSZ      DiscFunc;
 | 
						|
	PCSZ      Msg;
 | 
						|
	PCSZ      m_Wrap;
 | 
						|
	int       m_Rows;
 | 
						|
}; // end of JAVAConn class definition
 |