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
|
/*
$Id$
Copyright (C) 1999-2004 IC & S dbmail@ic-s.nl
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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef _DBMAIL_QUOTA_H
#define _DBMAIL_QUOTA_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "dbmailtypes.h"
/* A resource type.
* RT_STORAGE: "STORAGE"
*/
typedef enum {
RT_STORAGE
} resource_type_t;
/* A resource limit.
* type: the type of the resource
* usage: the current usage of the resource
* limit: the maximum allowed usage of the resource
*/
typedef struct {
resource_type_t type;
u64_t usage;
u64_t limit;
} resource_limit_t;
/* A quota root and its resource limits.
* root: the quota root, e.g. ""
* n_resources: the number of limted resources under this quota root
* resource[]: an array with `n_resources' elements, each entry
* describing a resource limit
*/
typedef struct {
char *root;
int n_resources;
resource_limit_t resource[0];
} quota_t;
/* Functions for manipulating quota_t objects */
quota_t *quota_alloc(int n_resources);
void quota_free(quota_t * quota);
void quota_set_resource_limit(quota_t * quota, int resource_idx,
resource_type_t type,
u64_t usage, u64_t limit);
int quota_set_root(quota_t * quota, char *root);
/* Functions for querying quota and quota root */
char *quota_get_quotaroot(u64_t useridnr, const char *mailbox,
char **errormsg);
quota_t *quota_get_quota(u64_t useridnr, char *quotaroot, char **errormsg);
#endif
|