privacore-open-source-searc.../Parms.h

311 lines
9.9 KiB
C++

// Matt Wells, copyright Feb 2002
// Ideally, CollectionRec.h and SearchInput.h should be automatically generated
// from Parms.cpp. But Parms need to be marked if they contribute to
// SearchInput::makeKey() for caching the SERPS.
#ifndef GB_PARMS_H
#define GB_PARMS_H
#include <inttypes.h>
#include "collnum_t.h"
class CollectionRec;
class UdpSlot;
class SafeBuf;
class WaitEntry;
enum parameter_object_type_t {
OBJ_CONF = 1 ,
OBJ_COLL ,
OBJ_SI , // SearchInput class
OBJ_GBREQUEST , // for GigablastRequest class of parms
OBJ_IR , // InjectionRequest class from PageInject.h
OBJ_NONE,
OBJ_UNSET // used for detecting unset values
};
enum parameter_type_t {
TYPE_UNSET = 0,
TYPE_BOOL = 1,
TYPE_CHECKBOX = 3,
TYPE_CHAR = 4,
TYPE_CMD = 6,
TYPE_FLOAT = 7,
TYPE_IP = 8,
TYPE_INT32 = 9,
TYPE_INT64 = 10,
TYPE_NONE = 11,
TYPE_PRIORITY = 12,
TYPE_STRING = 16,
TYPE_STRINGBOX = 17,
TYPE_STRINGNONEMPTY = 18,
TYPE_COMMENT = 24,
TYPE_INT32_CONST = 28,
TYPE_SAFEBUF = 30,
TYPE_FILEUPLOADBUTTON = 32,
TYPE_DOUBLE = 33,
TYPE_CHARPTR = 34
};
// bit flags for Parm::m_flags
#define PF_COOKIE 0x00000001 // store in cookie?
#define PF_REBUILDQUERYLANGSETTINGS 0x00000002
#define PF_REBUILDSITENUMINLINKSSETTINGS 0x00000004
#define PF_REBUILDSPIDERSETTINGS 0x00000008
#define PF_API 0x00000010
#define PF_REBUILDURLFILTERS 0x00000020
#define PF_NOSYNC 0x00000040 // Don't synchronize the parameter value across hosts
#define PF_REBUILDDNSSETTINGS 0x00000080
#define PF_HIDDEN 0x00000100 // Hidden parameter/setting
#define PF_NOSAVE 0x00000200 // Don't save to gb.conf/coll.conf/..
#define PF_DUP 0x00000400 // Underlying variable is coverd by other parameter already
#define PF_TEXTAREA 0x00000800
#define PF_COLLDEFAULT 0x00001000
#define PF_NOAPI 0x00002000
#define PF_REQUIRED 0x00004000
#define PF_REBUILDPROXYTABLE 0x00008000
#define PF_NOHTML 0x00010000
#define PF_CLONE 0x00020000
#define PF_PRIVATE 0x00040000 // for password to not show in api
#define PF_SMALLTEXTAREA 0x00080000
#define PF_REBUILDACTIVELIST 0x00100000
#define PF_REBUILDRANKINGSETTINGS 0x00200000 // ranking setting. Reinitialize any derived values
#define PF_TABLESPLIT 0x00400000 // split into separate table
#define PF_REBUILDSITEMEDIANPAGETEMPSETTINGS 0x00800000
class Parm {
public:
Parm();
~Parm();
const char *m_title; // displayed above m_desc on admin gui page
const char *m_desc; // description of variable displayed on admin gui page
const char *m_cgi; // cgi name, contains %i if an array
const char *m_xml; // default to rendition of m_title if NULL
int32_t m_off; // this variable's offset into the CollectionRec class
int32_t m_arrayCountOffset; // Arrays element count offset into the CollectionRec class
char m_colspan;
parameter_type_t m_type; // TYPE_BOOL, TYPE_LONG, ...
int32_t m_page; // PAGE_MASTER, PAGE_SPIDER, ... see Pages.h
parameter_object_type_t m_obj; // OBJ_CONF/OBJ_COLL/...
// the maximum number of elements supported in the array.
// this is 1 if NOT an array (i.e. array of only one parm).
// in such cases a "count" is NOT stored before the parm in
// CollectionRec.h or Conf.h.
bool isArray() const { return (m_max>1); }
int32_t m_max; // max elements in the array
// if array is fixed size, how many elements in it?
// this is 0 if not a FIXED size array.
int32_t m_fixed;
int32_t m_size; // max string size
const char *m_def; // default value of this variable if not in either conf
int32_t m_defOff; // if default value points to a collectionrec parm!
int32_t m_defOff2; //default form g_conf
bool m_cast; // true if we should broadcast to all hosts (default)
const char *m_units;
bool m_addin; // add "insert above" link to gui when displaying array
char m_rowid; // id of row controls are in, if any
bool m_rdonly;// if in read-only mode, blank out this control?
bool m_hdrs; // print headers for row or print title/desc for single?
int32_t m_flags;
int32_t m_parmNum; // slot # in the m_parms[] array that we are
bool (*m_func)(const char *parmRec);
// some functions can block, like when deleting a coll because
// the tree might be saving, so they take a "we" ptr
bool (*m_func2)(const char *parmRec, class WaitEntry *we);
int32_t m_plen; // offset of length for TYPE_STRINGS (m_htmlHeadLen...)
bool m_group; // start of a new group of controls?
bool m_save; // save to xml file? almost always true
int32_t m_min;
// these are used for search parms in PageResults.cpp
int32_t m_sminc ;// offset of min in CollectionRec (-1 for none)
int32_t m_smaxc ;// offset of max in CollectionRec (-1 for none)
int32_t m_smin; // absolute min
int32_t m_smax; // absolute max
bool m_sync; // this parm should be synced
int32_t m_cgiHash; // hash of m_cgi
int32_t getNumInArray(collnum_t collnum) const;
bool printVal(class SafeBuf *sb , collnum_t collnum , int32_t occNum) const;
};
#define MAX_PARMS 940
#include "Xml.h"
class Parms {
public:
Parms();
void init();
static bool registerHandler3e();
static bool registerHandler3f();
bool sendPageGeneric ( class TcpSocket *s, class HttpRequest *r );
bool printParmTable ( SafeBuf *sb , TcpSocket *s , HttpRequest *r );
bool printParms (SafeBuf* sb, TcpSocket *s , HttpRequest *r );
bool printParms2 (SafeBuf* sb,
int32_t page,
CollectionRec *cr,
int32_t nc ,
int32_t pd ,
bool isCrawlbot ,
char format, //bool isJSON,
TcpSocket *sock,
bool isMasterAdmin,
bool isCollAdmin
);
bool printParm ( SafeBuf* sb,
Parm *m ,
int32_t mm , // m = &m_parms[mm]
int32_t j ,
int32_t jend ,
char *THIS ,
const char *coll ,
const char *bg ,
int32_t nc ,
int32_t pd ,
char format , //= FORMAT_HTML,
bool isMasterAdmin ,
bool isCollAdmin ,
class TcpSocket *sock );
bool setFromRequest ( HttpRequest *r , //int32_t user,
TcpSocket* s,
class CollectionRec *newcr ,
char *THIS ,
parameter_object_type_t objType);
bool insertParm ( int32_t i , int32_t an , char *THIS ) ;
bool removeParm ( int32_t i , int32_t an , char *THIS ) ;
void setParm(char *THIS, Parm *m, int32_t array_index, const char *s);
void setToDefault(char *THIS, parameter_object_type_t objType,
CollectionRec *argcr );
bool setFromFile ( void *THIS ,
const char *filename,
const char *filenameDef,
parameter_object_type_t objType);
bool setXmlFromFile(Xml *xml, const char *filename, class SafeBuf *sb );
bool saveToXml(char *THIS, char *f, parameter_object_type_t objType);
bool getParmHtmlEncoded(SafeBuf *sb, const Parm *m, const char *s);
bool setGigablastRequest ( class TcpSocket *s ,
class HttpRequest *hr ,
class GigablastRequest *gr );
bool inSyncWithHost0() const { return m_inSyncWithHost0; }
void overlapTest ( char step ) ;
Parm *getParm(int32_t i) { return m_parms+i; }
int32_t getNumParms() const { return m_numParms; }
bool convertUIToInternal(const char *field_base_name, parameter_type_t type, const char *s, char *adjusted_value);
private:
//
// new functions
//
bool addNewParmToList1 ( SafeBuf *parmList ,
collnum_t collnum ,
const char *parmValString ,
int32_t occNum ,
const char *parmName ) ;
bool addNewParmToList2 ( SafeBuf *parmList ,
collnum_t collnum ,
const char *parmValString ,
int32_t occNum ,
Parm *m ) ;
bool addCurrentParmToList2 ( SafeBuf *parmList ,
collnum_t collnum ,
int32_t occNum ,
Parm *m ) ;
public:
bool convertHttpRequestToParmList (HttpRequest *hr,SafeBuf *parmList,
int32_t page , TcpSocket *sock );
private:
Parm *getParmFast2 ( int32_t cgiHash32 ) ;
Parm *getParmFast1 ( const char *cgi , int32_t *occNum ) ;
Parm *getParmFromParmRec(const char *rec);
public:
bool broadcastParmList ( SafeBuf *parmList ,
void *state ,
void (* callback)(void *) ,
bool sendToGrunts = true ,
bool sendToProxies = false ,
// send to this single hostid? -1 means all
int32_t hostId = -1 ,
int32_t hostId2 = -1 ); // hostid range?
private:
bool doParmSendingLoop ( ) ;
bool syncParmsWithHost0 ( ) ;
bool makeSyncHashList ( SafeBuf *hashList ) ;
bool addAllParmsToList ( SafeBuf *parmList, collnum_t collnum ) ;
bool updateParm(const char *rec, class WaitEntry *we, bool *changed);
bool cloneCollRec ( char *srcCR , char *dstCR ) ;
static bool CommandInsertUrlFiltersRow(const char *rec);
static bool CommandRemoveUrlFiltersRow(const char *rec);
#ifndef PRIVACORE_SAFE_VERSION
static bool CommandCloneColl(const char *rec);
static bool CommandAddColl(const char *rec);
#endif
static bool CommandInSync(const char *rec);
static void gotParmReplyWrapper(void *state, UdpSlot *slot);
static void handleRequest3e(UdpSlot *slot, int32_t /*niceness*/);
static void gotReplyFromHost0Wrapper(void *state, UdpSlot *slot );
public: //main.cpp needs this:
static void tryToSyncWrapper(int fd, void *state);
private:
static void parmLoop(int fd, void *state);
static void handleRequest3fLoop2(void *state, UdpSlot *slot);
static void handleRequest3fLoop3(int fd, void *state);
static void handleRequest3fLoop(void *weArg);
static void handleRequest3f(UdpSlot *slot, int32_t /*niceness*/);
//
// end new functions
//
bool m_inSyncWithHost0;
bool m_triedToSync;
bool m_isDefaultLoaded;
Parm m_parms [ MAX_PARMS ];
int32_t m_numParms;
// for parsing default.conf file for collection recs for OBJ_COLL
Xml m_xml2;
};
extern Parms g_parms;
#endif // GB_PARMS_H