summaryrefslogtreecommitdiff
path: root/plugins/Variables/src/dbhelpers.h
blob: 8cc7332a6934570a3eab03cec743b7979a08a7e9 (plain)
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
/*
    Variables Plugin for Miranda-IM (www.miranda-im.org)
    Copyright 2003-2006 P. Boon

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

#ifndef PREFIX_ITH
#define PREFIX_ITH		""
#endif

// database helpers
static int __inline DBWriteIthSettingByte(DWORD i, HCONTACT hContact,const char *szModule,const char *szSetting,BYTE val) {

	char dbSetting[128];

	mir_snprintf(dbSetting, sizeof(dbSetting), "%s%u_%s", PREFIX_ITH, i, szSetting);
	return db_set_b(hContact, szModule, dbSetting, val);
}

static int __inline DBWriteIthSettingWord(DWORD i, HCONTACT hContact,const char *szModule,const char *szSetting,WORD val) {

	char dbSetting[128];

	mir_snprintf(dbSetting, sizeof(dbSetting), "%s%u_%s", PREFIX_ITH, i, szSetting);
	return db_set_w(hContact, szModule, dbSetting, val);
}

static int __inline DBWriteIthSettingDword(DWORD i, HCONTACT hContact,const char *szModule,const char *szSetting,DWORD val) {

	char dbSetting[128];

	mir_snprintf(dbSetting, sizeof(dbSetting), "%s%u_%s", PREFIX_ITH, i, szSetting);
	return db_set_dw(hContact, szModule, dbSetting, val);
}

static int __inline DBWriteIthSettingString(DWORD i, HCONTACT hContact,const char *szModule,const char *szSetting,const char *val) {

	char dbSetting[128];

	mir_snprintf(dbSetting, sizeof(dbSetting), "%s%u_%s", PREFIX_ITH, i, szSetting);
	return db_set_s(hContact, szModule, dbSetting, val);
}

static int __inline DBGetIthSettingByte(DWORD i, HCONTACT hContact, const char *szModule, const char *szSetting, int errorValue) {


	char dbSetting[128];

	mir_snprintf(dbSetting, sizeof(dbSetting), "%s%u_%s", PREFIX_ITH, i, szSetting);
	return db_get_b(hContact, szModule, dbSetting, errorValue);
}

static WORD __inline DBGetIthSettingWord(DWORD i, HCONTACT hContact, const char *szModule, const char *szSetting, int errorValue) {


	char dbSetting[128];

	mir_snprintf(dbSetting, sizeof(dbSetting), "%s%u_%s", PREFIX_ITH, i, szSetting);
	return db_get_w(hContact, szModule, dbSetting, errorValue);
}

static DWORD __inline DBGetIthSettingDword(DWORD i, HCONTACT hContact, const char *szModule, const char *szSetting, int errorValue) {


	char dbSetting[128];

	mir_snprintf(dbSetting, sizeof(dbSetting), "%s%u_%s", PREFIX_ITH, i, szSetting);
	return db_get_dw(hContact, szModule, dbSetting, errorValue);
}

static int __inline DBGetIthSetting(DWORD i, HCONTACT hContact, const char *szModule, const char *szSetting, DBVARIANT *dbv) {


	char dbSetting[128];

	mir_snprintf(dbSetting, sizeof(dbSetting), "%s%u_%s", PREFIX_ITH, i, szSetting);
	return db_get(hContact, szModule, dbSetting, dbv);
}

static int __inline DBDeleteIthSetting(DWORD i, HCONTACT hContact,const char *szModule,const char *szSetting) {

	char dbSetting[128];

	mir_snprintf(dbSetting, sizeof(dbSetting), "%s%u_%s", PREFIX_ITH, i, szSetting);
	return db_unset(hContact, szModule, dbSetting);
}

#define db_getb(a,b)		db_get_b(NULL, MODULENAME, a, b)
#define db_getw(a,b)		db_get_w(NULL, MODULENAME, a, b)
#define db_getd(a,b)		db_get_dw(NULL, MODULENAME, a, b)
#define db_gets(a,b)		db_get(NULL, MODULENAME, a, b)
#define db_setb(a,b)		db_set_b(NULL, MODULENAME, a, (BYTE)(b))
#define db_sets(a,b)		db_set_s(NULL, MODULENAME, a, b)
#define db_setts(a,b)		db_set_ts(NULL, MODULENAME, a, b)
#define db_setw(a,b)		db_set_w(NULL, MODULENAME, a, (WORD)(b))
#define db_setd(a,b)		db_set_dw(NULL, MODULENAME, a, (DWORD)(b))
#define db_del(a)			db_unset(NULL, MODULENAME, a);

#define dbi_getb(a,b,c)		DBGetIthSettingByte(a, NULL, MODULENAME, b, c)
#define dbi_getw(a,b,c)		DBGetIthSettingWord(a, NULL, MODULENAME, b, c)
#define dbi_getd(a,b,c)		DBGetIthSettingDword(a, NULL, MODULENAME, b, c)
#define dbi_gets(a,b,c)		DBGetIthSetting(a, NULL, MODULENAME, b, c)
#define dbi_setb(a,b,c)		DBWriteIthSettingByte(a, NULL, MODULENAME, b, (BYTE)(c))
#define dbi_sets(a,b,c)		DBWriteIthSettingString(a, NULL, MODULENAME, b, c)
#define dbi_setw(a,b,c)		DBWriteIthSettingWord(a, NULL, MODULENAME, b, (WORD)(c))
#define dbi_setd(a,b,c)		DBWriteIthSettingDword(a, NULL, MODULENAME, b, (DWORD)(c))
#define dbi_del(a,b)		DBDeleteIthSetting(a, NULL, MODULENAME, b);