1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// pgconfig.h - backend configuration classes
//
//////////////////////////////////////////////////////////////////////////
#ifndef __PGCONFIG
#define __PGCONFIG
#include <wx/hashmap.h>
class pgSet;
class pgConn;
class pgSettingItem;
class pgConfigLine
{
public:
pgConfigLine()
{
item = 0;
isComment = false;
}
pgConfigLine(pgConfigLine *line);
bool Differs(pgConfigLine *line);
wxString GetNewText();
pgSettingItem *item;
wxString value;
wxString comment;
bool isComment;
};
class pgConfigOrgLine : public pgConfigLine
{
public:
pgConfigOrgLine(const wxString str) : pgConfigLine()
{
text = str;
}
pgConfigOrgLine(pgConfigLine *line);
wxString GetNewText();
wxString text;
wxString commentIndent;
};
class pgHbaConfigLine
{
public:
pgHbaConfigLine(const wxString &line = wxEmptyString);
wxString GetText();
const wxChar *GetConnectType();
const wxChar *GetMethod();
void Init(const wxString &line);
enum pgHbaConnectType
{
PGC_LOCAL = 0,
PGC_HOST,
PGC_HOSTSSL,
PGC_HOSTNOSSL,
PGC_INVALIDCONF
};
enum pgHbaMethod
{
PGC_TRUST = 0,
PGC_REJECT,
PGC_MD5,
PGC_CRYPT,
PGC_PASSWORD,
PGC_KRB4,
PGC_KRB5,
PGC_IDENT,
PGC_PAM,
PGC_LDAP,
PGC_GSS,
PGC_SSPI,
PGC_CERT,
PGC_PEER,
PGC_RADIUS,
PGC_INVALIDMETHOD
};
wxString text;
wxString database, user, ipaddress, option;
pgHbaConnectType connectType;
pgHbaMethod method;
long item;
bool isValid;
bool isComment;
bool changed;
};
class pgPassConfigLine
{
public:
pgPassConfigLine(const wxString &line = wxEmptyString);
wxString GetText();
void Init(const wxString &line);
wxString text;
wxString hostname, port, database, username, password;
long item;
bool isComment;
};
class pgSettingItem
{
public:
enum pgConfigType
{
PGC_BOOL = 0,
PGC_INT,
PGC_REAL,
PGC_STRING
};
enum pgConfigContext
{
PGC_INTERNAL = 0,
PGC_POSTMASTER,
PGC_SIGHUP,
PGC_BACKEND,
PGC_SUSET,
PGC_USERLIMIT,
PGC_USERSET,
PGC_UNKNOWNCONTEXT
};
enum pgConfigSource
{
PGC_DEFAULT = 0,
PGC_ENVIRONMENT,
PGC_FILE,
PGC_ARGV,
PGC_UNPRIV,
PGC_DATABASE,
PGC_USER,
PGC_CLIENT,
PGC_OVERRIDE,
PGC_INTERACTIVE,
PGC_TEST,
PGC_SESSION,
PGC_UNKNOWNSOURCE
};
pgSettingItem()
{
orgLine = 0;
newLine = 0;
source = PGC_UNKNOWNSOURCE;
context = PGC_UNKNOWNCONTEXT;
}
~pgSettingItem()
{
if (newLine) delete newLine;
}
void SetType(const wxString &str);
void SetContext(const wxString &str);
void SetSource(const wxString &str);
wxString GetActiveValue();
wxString name;
wxString category;
wxString short_desc;
wxString extra_desc;
wxString value;
pgConfigType type;
pgConfigContext context;
pgConfigSource source;
wxString min_val, max_val;
pgConfigLine *newLine;
pgConfigOrgLine *orgLine;
};
WX_DECLARE_HASH_MAP(wxString, pgSettingItem *, wxStringHash, wxStringEqual, pgSettingItemHashmap);
WX_DECLARE_HASH_MAP(wxString, wxArrayString *, wxStringHash, wxStringEqual, pgCategoryHashmap);
class pgSettingReader
{
public:
virtual bool IsValid() = 0;
virtual pgSettingItem *GetNextItem() = 0;
virtual ~pgSettingReader() {}
};
class pgSettingFileReader : public pgSettingReader
{
wxString columnNames;
wxString buffer;
wxChar *bp;
public:
pgSettingFileReader(bool localized);
~pgSettingFileReader();
virtual bool IsValid()
{
return !buffer.IsEmpty();
}
virtual pgSettingItem *GetNextItem();
};
class pgSettingDbReader : public pgSettingReader
{
pgSet *set;
public:
pgSettingDbReader(pgConn *conn);
~pgSettingDbReader();
virtual bool IsValid()
{
return set != NULL;
}
virtual pgSettingItem *GetNextItem();
};
#endif
|