mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +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
100 lines
3.2 KiB
C++
100 lines
3.2 KiB
C++
/*************** tabzip H Declares Source Code File (.H) ***************/
|
|
/* Name: tabzip.h Version 1.0 */
|
|
/* */
|
|
/* (C) Copyright to the author Olivier BERTRAND 2016 */
|
|
/* */
|
|
/* This file contains the ZIP classe declares. */
|
|
/***********************************************************************/
|
|
#include "osutil.h"
|
|
#include "block.h"
|
|
#include "colblk.h"
|
|
#include "xtable.h"
|
|
#include "unzip.h"
|
|
|
|
typedef class ZIPDEF *PZIPDEF;
|
|
typedef class TDBZIP *PTDBZIP;
|
|
typedef class ZIPCOL *PZIPCOL;
|
|
|
|
/***********************************************************************/
|
|
/* ZIP table: display info about a ZIP file. */
|
|
/***********************************************************************/
|
|
class DllExport ZIPDEF : public DOSDEF { /* Table description */
|
|
friend class TDBZIP;
|
|
friend class UNZFAM;
|
|
public:
|
|
// Constructor
|
|
ZIPDEF(void) {}
|
|
|
|
// Implementation
|
|
virtual const char *GetType(void) {return "ZIP";}
|
|
|
|
// Methods
|
|
virtual bool DefineAM(PGLOBAL g, LPCSTR am, int poff);
|
|
virtual PTDB GetTable(PGLOBAL g, MODE m);
|
|
|
|
protected:
|
|
// Members
|
|
PCSZ target; // The inside file to query
|
|
}; // end of ZIPDEF
|
|
|
|
/***********************************************************************/
|
|
/* This is the ZIP Access Method class declaration. */
|
|
/***********************************************************************/
|
|
class DllExport TDBZIP : public TDBASE {
|
|
friend class ZIPCOL;
|
|
public:
|
|
// Constructor
|
|
TDBZIP(PZIPDEF tdp);
|
|
|
|
// Implementation
|
|
virtual AMT GetAmType(void) {return TYPE_AM_ZIP;}
|
|
|
|
// Methods
|
|
virtual PCOL MakeCol(PGLOBAL g, PCOLDEF cdp, PCOL cprec, int n);
|
|
virtual int Cardinality(PGLOBAL g);
|
|
virtual int GetMaxSize(PGLOBAL g);
|
|
virtual int GetRecpos(void) {return 0;}
|
|
|
|
// Database routines
|
|
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:
|
|
bool open(PGLOBAL g, const char *filename);
|
|
void close(void);
|
|
|
|
// Members
|
|
unzFile zipfile; // The ZIP container file
|
|
PCSZ zfn; // The ZIP file name
|
|
//PSZ target;
|
|
unz_file_info64 finfo; // The current file info
|
|
char fn[FILENAME_MAX]; // The current file name
|
|
int nexterr; // Next file error
|
|
}; // end of class TDBZIP
|
|
|
|
/***********************************************************************/
|
|
/* Class ZIPCOL: ZIP access method column descriptor. */
|
|
/***********************************************************************/
|
|
class DllExport ZIPCOL : public COLBLK {
|
|
friend class TDBZIP;
|
|
public:
|
|
// Constructors
|
|
ZIPCOL(PCOLDEF cdp, PTDB tdbp, PCOL cprec, int i, PCSZ am = "ZIP");
|
|
|
|
// Implementation
|
|
virtual int GetAmType(void) { return TYPE_AM_ZIP; }
|
|
|
|
// Methods
|
|
virtual void ReadColumn(PGLOBAL g);
|
|
|
|
protected:
|
|
// Default constructor not to be used
|
|
ZIPCOL(void) {}
|
|
|
|
// Members
|
|
TDBZIP *Tdbz;
|
|
int flag;
|
|
}; // end of class ZIPCOL
|