mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
56e2771321
the beginning. Defining the STRING class and begining to use it (MYSQL) 2) Change the xtrace, use_tempfile and exact_info connect variables from GLOBAL to SESSION. Remaining GLOBAL variables have been made readonly. 3) Take care of LEX_STRING variables. The .str should not be regarded as allways being 0 terminated. This is handled by the Strz functions that make sure to return 0 terminated strings. Bug fix: - When inserting in MYSQL table with special column(s) a query such as: insert into t2 values(0,4,'new04'),(0,5,'new05'); failed saying: column id (the special column) not found in t2. It is now accepted but must be counted in values (these 0 are ignored) - ROWID was returning row numbers based 0. Now it is from base 1. modified: storage/connect/array.cpp storage/connect/blkfil.cpp storage/connect/colblk.cpp storage/connect/connect.cc storage/connect/filamap.cpp storage/connect/filamdbf.cpp storage/connect/filamfix.cpp storage/connect/filamtxt.cpp storage/connect/filamvct.cpp storage/connect/filamzip.cpp storage/connect/filamzip.h storage/connect/filter.cpp storage/connect/global.h storage/connect/ha_connect.cc storage/connect/ha_connect.h storage/connect/libdoc.cpp storage/connect/mycat.cc storage/connect/myconn.cpp storage/connect/odbconn.cpp storage/connect/plgdbutl.cpp storage/connect/plugutil.c storage/connect/reldef.cpp storage/connect/tabcol.cpp storage/connect/tabdos.cpp storage/connect/tabfix.cpp storage/connect/tabfmt.cpp storage/connect/table.cpp storage/connect/tabmul.cpp storage/connect/tabmysql.cpp storage/connect/tabmysql.h storage/connect/taboccur.cpp storage/connect/tabodbc.cpp storage/connect/tabpivot.cpp storage/connect/tabsys.cpp storage/connect/tabtbl.cpp storage/connect/tabutil.cpp storage/connect/tabvct.cpp storage/connect/tabwmi.cpp storage/connect/tabwmi.h storage/connect/tabxcl.cpp storage/connect/tabxml.cpp storage/connect/user_connect.cc storage/connect/valblk.cpp storage/connect/value.cpp storage/connect/value.h storage/connect/xindex.cpp storage/connect/xobject.cpp storage/connect/xobject.h storage/connect/xtable.h
160 lines
6.5 KiB
C++
160 lines
6.5 KiB
C++
/*************** Xobject H Declares Source Code File (.H) **************/
|
|
/* Name: XOBJECT.H Version 2.4 */
|
|
/* */
|
|
/* (C) Copyright to the author Olivier BERTRAND 1998-2014 */
|
|
/* */
|
|
/* This file contains the XOBJECT and derived classes declares. */
|
|
/***********************************************************************/
|
|
|
|
#ifndef __XOBJECT__H
|
|
#define __XOBJECT__H
|
|
|
|
/***********************************************************************/
|
|
/* Include required application header files */
|
|
/* block.h is header containing Block global declarations. */
|
|
/***********************************************************************/
|
|
#include "block.h"
|
|
#include "valblk.h" // includes value.h
|
|
|
|
/***********************************************************************/
|
|
/* Types used in some class definitions. */
|
|
/***********************************************************************/
|
|
typedef class STRING *PSTRG;
|
|
|
|
/***********************************************************************/
|
|
/* The pointer to the one and only needed void object. */
|
|
/***********************************************************************/
|
|
extern PXOB const pXVOID;
|
|
|
|
/***********************************************************************/
|
|
/* Class XOBJECT is the base class for all classes that can be used */
|
|
/* in evaluation operations: FILTER, EXPRESSION, SCALF, FNC, COLBLK, */
|
|
/* SELECT, FILTER as well as all the constant object types. */
|
|
/***********************************************************************/
|
|
class DllExport XOBJECT : public BLOCK {
|
|
public:
|
|
XOBJECT(void) {Value = NULL; Constant = false;}
|
|
|
|
// Implementation
|
|
PVAL GetValue(void) {return Value;}
|
|
bool IsConstant(void) {return Constant;}
|
|
virtual int GetType(void) {return TYPE_XOBJECT;}
|
|
virtual int GetResultType(void) {return TYPE_VOID;}
|
|
virtual int GetKey(void) {return 0;}
|
|
#if defined(_DEBUG)
|
|
virtual void SetKey(int k) {assert(false);}
|
|
#else // !_DEBUG
|
|
virtual void SetKey(int k) {} // Only defined for COLBLK
|
|
#endif // !_DEBUG
|
|
virtual int GetLength(void) = 0;
|
|
virtual int GetLengthEx(void) = 0;
|
|
virtual PSZ GetCharValue(void);
|
|
virtual short GetShortValue(void);
|
|
virtual int GetIntValue(void);
|
|
virtual double GetFloatValue(void);
|
|
virtual int GetScale(void) = 0;
|
|
|
|
// Methods
|
|
virtual void Reset(void) {}
|
|
virtual bool Compare(PXOB) = 0;
|
|
virtual bool Init(PGLOBAL) {return false;}
|
|
virtual bool Eval(PGLOBAL) {return false;}
|
|
virtual bool SetFormat(PGLOBAL, FORMAT&) = 0;
|
|
|
|
protected:
|
|
PVAL Value; // The current value of the object.
|
|
bool Constant; // true for an object having a constant value.
|
|
}; // end of class XOBJECT
|
|
|
|
/***********************************************************************/
|
|
/* Class XVOID: represent a void (null) object. */
|
|
/* Used to represent a void parameter for count(*) or for a filter. */
|
|
/***********************************************************************/
|
|
class DllExport XVOID : public XOBJECT {
|
|
public:
|
|
XVOID(void) {Constant = true;}
|
|
|
|
// Implementation
|
|
virtual int GetType(void) {return TYPE_VOID;}
|
|
virtual int GetLength(void) {return 0;}
|
|
virtual int GetLengthEx(void) {return 0;}
|
|
virtual PSZ GetCharValue(void) {return NULL;}
|
|
virtual int GetIntValue(void) {return 0;}
|
|
virtual double GetFloatValue(void) {return 0.0;}
|
|
virtual int GetScale() {return 0;}
|
|
|
|
// Methods
|
|
virtual bool Compare(PXOB xp) {return xp->GetType() == TYPE_VOID;}
|
|
virtual bool SetFormat(PGLOBAL, FORMAT&) {return true;}
|
|
}; // end of class XVOID
|
|
|
|
|
|
/***********************************************************************/
|
|
/* Class CONSTANT: represents a constant XOBJECT of any value type. */
|
|
/* Note that the CONSTANT class is a friend of the VALUE class; */
|
|
/***********************************************************************/
|
|
class DllExport CONSTANT : public XOBJECT {
|
|
public:
|
|
CONSTANT(PGLOBAL g, void *value, short type);
|
|
CONSTANT(PGLOBAL g, int n);
|
|
CONSTANT(PVAL valp) {Value = valp; Constant = true;}
|
|
|
|
// Implementation
|
|
virtual int GetType(void) {return TYPE_CONST;}
|
|
virtual int GetResultType(void) {return Value->Type;}
|
|
virtual int GetLength(void) {return Value->GetValLen();}
|
|
virtual int GetScale() {return Value->GetValPrec();}
|
|
virtual int GetLengthEx(void);
|
|
|
|
// Methods
|
|
virtual bool Compare(PXOB xp);
|
|
virtual bool SetFormat(PGLOBAL g, FORMAT& fmt)
|
|
{return Value->SetConstFormat(g, fmt);}
|
|
void Convert(PGLOBAL g, int newtype);
|
|
void SetValue(PVAL vp) {Value = vp;}
|
|
virtual void Print(PGLOBAL g, FILE *, uint);
|
|
virtual void Print(PGLOBAL g, char *, uint);
|
|
}; // end of class CONSTANT
|
|
|
|
/***********************************************************************/
|
|
/* Class STRING handles variable length char strings. */
|
|
/* It is mainly used to avoid buffer overrun. */
|
|
/***********************************************************************/
|
|
class DllExport STRING : public BLOCK {
|
|
public:
|
|
// Constructor
|
|
STRING(PGLOBAL g, uint n, PSZ str = NULL);
|
|
|
|
// Implementation
|
|
inline int GetLength(void) {return (int)Length;}
|
|
inline PSZ GetStr(void) {return Strp;}
|
|
inline uint32 GetSize(void) {return Size;}
|
|
|
|
// Methods
|
|
inline void Reset(void) {*Strp = 0;}
|
|
bool Set(PSZ s);
|
|
bool Set(char *s, uint n);
|
|
bool Append(PSZ s);
|
|
bool Append(STRING &str);
|
|
bool Append(char c);
|
|
bool Resize(uint n);
|
|
inline void Trim(void) {(void)Resize(Length + 1);}
|
|
inline void Chop(void) {if (Length) Strp[--Length] = 0;}
|
|
inline void RepLast(char c) {if (Length) Strp[Length-1] = c;}
|
|
inline void Truncate(uint n) {if (n >= 0 && n < Length)
|
|
{Strp[n] = 0; Length = n;}}
|
|
|
|
protected:
|
|
char *Realloc(uint len);
|
|
inline char *GetNext(void)
|
|
{return ((char*)G->Sarea)+((PPOOLHEADER)G->Sarea)->To_Free;}
|
|
|
|
// Members
|
|
PGLOBAL G; // To avoid parameter
|
|
PSZ Strp; // The char string
|
|
uint Length; // String length
|
|
uint Size; // Allocated size
|
|
char *Next; // Next alloc position
|
|
}; // end of class STRING
|
|
|
|
#endif
|