~ubuntu-dev/ubuntu/lucid/zabbix/lucid-201002110857

« back to all changes in this revision

Viewing changes to src/libs/zbxsysinfo/win32/diskspace.c

  • Committer: Bazaar Package Importer
  • Author(s): Michael Ablassmeier
  • Date: 2007-07-02 09:06:51 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070702090651-8l6fl3fjw9rh6l2u
Tags: 1:1.4.1-2
Add patch from SVN in order to fix Incorrect processing of character '%'
in user parameters and remote commands.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
** ZABBIX
 
3
** Copyright (C) 2000-2005 SIA Zabbix
 
4
**
 
5
** This program is free software; you can redistribute it and/or modify
 
6
** it under the terms of the GNU General Public License as published by
 
7
** the Free Software Foundation; either version 2 of the License, or
 
8
** (at your option) any later version.
 
9
**
 
10
** This program is distributed in the hope that it will be useful,
 
11
** but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
** GNU General Public License for more details.
 
14
**
 
15
** You should have received a copy of the GNU General Public License
 
16
** along with this program; if not, write to the Free Software
 
17
** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
18
**/
 
19
 
 
20
#include "common.h"
 
21
 
 
22
#include "sysinfo.h"
 
23
 
 
24
 
 
25
int     VFS_FS_SIZE(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result)
 
26
{
 
27
        
 
28
        char
 
29
                path[MAX_PATH],
 
30
                mode[20];
 
31
 
 
32
        ULARGE_INTEGER freeBytes,totalBytes;
 
33
 
 
34
        if(num_param(param) > 2)
 
35
        {
 
36
                return SYSINFO_RET_FAIL;
 
37
        }
 
38
 
 
39
        if(get_param(param, 1, path, MAX_PATH) != 0)
 
40
        {
 
41
                return SYSINFO_RET_FAIL;
 
42
        }
 
43
 
 
44
        if(get_param(param, 2, mode, sizeof(mode)) != 0)
 
45
        {
 
46
                mode[0] = '\0';
 
47
        }
 
48
        if(mode[0] == '\0')
 
49
        {
 
50
                /* default parameter */
 
51
                zbx_snprintf(mode, sizeof(mode), "total");
 
52
        }
 
53
 
 
54
        if (!GetDiskFreeSpaceEx(path, &freeBytes, &totalBytes, NULL))
 
55
        {
 
56
                return SYSINFO_RET_FAIL;
 
57
        }
 
58
 
 
59
        if (strcmp(mode,"free") == 0)
 
60
        {
 
61
                SET_UI64_RESULT(result, freeBytes.QuadPart);
 
62
        }
 
63
        else if (strcmp(mode,"used") == 0)
 
64
        {
 
65
                SET_UI64_RESULT(result, totalBytes.QuadPart - freeBytes.QuadPart);
 
66
        }
 
67
        else if (strcmp(mode,"total") == 0)
 
68
        {
 
69
                SET_UI64_RESULT(result, totalBytes.QuadPart);
 
70
        }
 
71
        else if (strcmp(mode,"pfree") == 0)
 
72
        {
 
73
                SET_UI64_RESULT(result, (double)(__int64)freeBytes.QuadPart * 100. / (double)(__int64)totalBytes.QuadPart);
 
74
        }
 
75
        else if (strcmp(mode,"pused") == 0)
 
76
        {
 
77
                SET_UI64_RESULT(result, (double)((__int64)totalBytes.QuadPart-(__int64)freeBytes.QuadPart) * 100. / (double)(__int64)totalBytes.QuadPart);
 
78
        }
 
79
        else
 
80
        {
 
81
                return SYSINFO_RET_FAIL;
 
82
        }
 
83
 
 
84
        return SYSINFO_RET_OK;
 
85
}
 
86