mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
3e36eb230b
modified: storage/connect/array.cpp modified: storage/connect/array.h modified: storage/connect/blkfil.cpp modified: storage/connect/blkfil.h modified: storage/connect/block.h modified: storage/connect/colblk.cpp modified: storage/connect/colblk.h modified: storage/connect/csort.h modified: storage/connect/filamvct.cpp modified: storage/connect/filter.cpp modified: storage/connect/filter.h modified: storage/connect/global.h modified: storage/connect/json.h modified: storage/connect/plgdbsem.h modified: storage/connect/plgdbutl.cpp modified: storage/connect/tabcol.cpp modified: storage/connect/tabcol.h modified: storage/connect/tabdos.cpp modified: storage/connect/tabdos.h modified: storage/connect/tabjson.cpp modified: storage/connect/table.cpp modified: storage/connect/tabodbc.cpp modified: storage/connect/tabodbc.h modified: storage/connect/tabsys.h modified: storage/connect/tabxml.h modified: storage/connect/value.cpp modified: storage/connect/value.h modified: storage/connect/xindex.cpp modified: storage/connect/xindex.h modified: storage/connect/xobject.cpp modified: storage/connect/xobject.h modified: storage/connect/xtable.h Set values as nullable when retrieving catalog info modified: storage/connect/jdbconn.cpp modified: storage/connect/mysql-test/connect/r/odbc_oracle.result modified: storage/connect/odbconn.cpp Change format of Jpath modified: storage/connect/json.cpp modified: storage/connect/jsonudf.cpp modified: storage/connect/mysql-test/connect/r/json.result modified: storage/connect/mysql-test/connect/r/json_udf.result modified: storage/connect/mysql-test/connect/r/json_udf_bin.result modified: storage/connect/mysql-test/connect/r/zip.result modified: storage/connect/mysql-test/connect/t/json.test modified: storage/connect/mysql-test/connect/t/json_udf.test modified: storage/connect/mysql-test/connect/t/json_udf_bin.test modified: storage/connect/mysql-test/connect/t/zip.test modified: storage/connect/tabjson.cpp modified: storage/connect/tabjson.h modified: storage/connect/tabmgo.cpp Change null representation from ??? to <null> modified: storage/connect/json.cpp Change the name of UDF that are equal to a native JSON function name modified: storage/connect/jsonudf.cpp modified: storage/connect/jsonudf.h modified: storage/connect/mysql-test/connect/t/json_udf.inc modified: storage/connect/mysql-test/connect/t/json_udf2.inc Fix bug in making JSON project info modified: storage/connect/mongofam.cpp Fix COMPUTE when one argument is null modified: storage/connect/value.cpp Value is null only when nullable modified: storage/connect/value.h
151 lines
5 KiB
C++
151 lines
5 KiB
C++
// TABWMI.H Olivier Bertrand 2012
|
|
// WMI: Virtual table to Get WMI information
|
|
#define _WIN32_DCOM
|
|
#include <wbemidl.h>
|
|
# pragma comment(lib, "wbemuuid.lib")
|
|
#include <iostream>
|
|
using namespace std;
|
|
#include <comdef.h>
|
|
|
|
/***********************************************************************/
|
|
/* Definitions. */
|
|
/***********************************************************************/
|
|
typedef class WMIDEF *PWMIDEF;
|
|
typedef class TDBWMI *PTDBWMI;
|
|
typedef class WMICOL *PWMICOL;
|
|
typedef class TDBWCL *PTDBWCL;
|
|
typedef class WCLCOL *PWCLCOL;
|
|
|
|
/***********************************************************************/
|
|
/* Structure used by WMI column info functions. */
|
|
/***********************************************************************/
|
|
typedef struct _WMIutil {
|
|
IWbemServices *Svc;
|
|
IWbemClassObject *Cobj;
|
|
} WMIUTIL, *PWMIUT;
|
|
|
|
/***********************************************************************/
|
|
/* Functions used externally. */
|
|
/***********************************************************************/
|
|
PQRYRES WMIColumns(PGLOBAL g, PCSZ nsp, PCSZ cls, bool info);
|
|
|
|
/* -------------------------- WMI classes ---------------------------- */
|
|
|
|
/***********************************************************************/
|
|
/* WMI: Virtual table to get the WMI information. */
|
|
/***********************************************************************/
|
|
class WMIDEF : public TABDEF { /* Logical table description */
|
|
friend class TDBWMI;
|
|
friend class TDBWCL;
|
|
friend class TDBWCX;
|
|
public:
|
|
// Constructor
|
|
WMIDEF(void) {Pseudo = 3; Nspace = NULL; Wclass = NULL; Ems = 0;}
|
|
|
|
// Implementation
|
|
virtual const char *GetType(void) {return "WMI";}
|
|
|
|
// Methods
|
|
virtual bool DefineAM(PGLOBAL g, LPCSTR am, int poff);
|
|
virtual PTDB GetTable(PGLOBAL g, MODE m);
|
|
|
|
protected:
|
|
// Members
|
|
char *Nspace;
|
|
char *Wclass;
|
|
int Ems;
|
|
}; // end of WMIDEF
|
|
|
|
/***********************************************************************/
|
|
/* This is the class declaration for the WMI table. */
|
|
/***********************************************************************/
|
|
class TDBWMI : public TDBASE {
|
|
friend class WMICOL;
|
|
public:
|
|
// Constructor
|
|
TDBWMI(PWMIDEF tdp);
|
|
|
|
// Implementation
|
|
virtual AMT GetAmType(void) {return TYPE_AM_WMI;}
|
|
|
|
// Methods
|
|
virtual int GetRecpos(void);
|
|
virtual int GetProgCur(void) {return N;}
|
|
virtual int RowNumber(PGLOBAL g, bool b = false) {return N + 1;}
|
|
|
|
// Database routines
|
|
virtual PCOL MakeCol(PGLOBAL g, PCOLDEF cdp, PCOL cprec, int n);
|
|
virtual int Cardinality(PGLOBAL g) {return GetMaxSize(g);}
|
|
virtual int GetMaxSize(PGLOBAL g);
|
|
virtual bool OpenDB(PGLOBAL g);
|
|
virtual int ReadDB(PGLOBAL g);
|
|
virtual int WriteDB(PGLOBAL g);
|
|
virtual int DeleteDB(PGLOBAL g, int irc);
|
|
virtual void CloseDB(PGLOBAL g);
|
|
|
|
protected:
|
|
// Specific routines
|
|
bool Initialize(PGLOBAL g);
|
|
char *MakeWQL(PGLOBAL g);
|
|
void DoubleSlash(PGLOBAL g);
|
|
bool GetWMIInfo(PGLOBAL g);
|
|
|
|
// Members
|
|
IWbemServices *Svc; // IWbemServices pointer
|
|
IEnumWbemClassObject *Enumerator;
|
|
IWbemClassObject *ClsObj;
|
|
char *Nspace; // Namespace
|
|
char *Wclass; // Class name
|
|
char *ObjPath; // Used for direct access
|
|
char *Kvp; // Itou
|
|
int Ems; // Estimated max size
|
|
PCOL Kcol; // Key column
|
|
HRESULT Res;
|
|
PVBLK Vbp;
|
|
bool Init;
|
|
bool Done;
|
|
ULONG Rc;
|
|
int N; // Row number
|
|
}; // end of class TDBWMI
|
|
|
|
/***********************************************************************/
|
|
/* Class WMICOL: WMI Address column. */
|
|
/***********************************************************************/
|
|
class WMICOL : public COLBLK {
|
|
friend class TDBWMI;
|
|
public:
|
|
// Constructors
|
|
WMICOL(PCOLDEF cdp, PTDB tdbp, int n);
|
|
|
|
// Implementation
|
|
virtual int GetAmType(void) {return TYPE_AM_WMI;}
|
|
|
|
// Methods
|
|
virtual void ReadColumn(PGLOBAL g);
|
|
|
|
protected:
|
|
WMICOL(void) {} // Default constructor not to be used
|
|
|
|
// Members
|
|
PTDBWMI Tdbp; // Points to WMI table block
|
|
VARIANT Prop; // Property value
|
|
CIMTYPE Ctype; // CIM Type
|
|
HRESULT Res;
|
|
}; // end of class WMICOL
|
|
|
|
/***********************************************************************/
|
|
/* This is the class declaration for the WMI catalog table. */
|
|
/***********************************************************************/
|
|
class TDBWCL : public TDBCAT {
|
|
public:
|
|
// Constructor
|
|
TDBWCL(PWMIDEF tdp);
|
|
|
|
protected:
|
|
// Specific routines
|
|
virtual PQRYRES GetResult(PGLOBAL g);
|
|
|
|
// Members
|
|
char *Nsp; // Name space
|
|
char *Cls; // Class
|
|
}; // end of class TDBWCL
|