Commit | Line | Data |
---|---|---|
cc022855 | 1 | /* |
7ac71e60 | 2 | ** NetXMS - Network Management System |
d02f6b92 | 3 | ** Copyright (C) 2003-2013 Victor Kirhenshtein |
cbcaf8c8 VK |
4 | ** |
5 | ** This program is free software; you can redistribute it and/or modify | |
68f384ea VK |
6 | ** it under the terms of the GNU Lesser General Public License as published by |
7 | ** the Free Software Foundation; either version 3 of the License, or | |
cbcaf8c8 VK |
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 | ** | |
68f384ea | 15 | ** You should have received a copy of the GNU Lesser General Public License |
cbcaf8c8 VK |
16 | ** along with this program; if not, write to the Free Software |
17 | ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
18 | ** | |
456d5d1c | 19 | ** File: nms_agent.h |
cbcaf8c8 VK |
20 | ** |
21 | **/ | |
22 | ||
23 | #ifndef _nms_agent_h_ | |
24 | #define _nms_agent_h_ | |
25 | ||
359784de VK |
26 | #ifdef _WIN32 |
27 | #ifdef LIBNXAGENT_EXPORTS | |
28 | #define LIBNXAGENT_EXPORTABLE __declspec(dllexport) | |
29 | #else | |
30 | #define LIBNXAGENT_EXPORTABLE __declspec(dllimport) | |
31 | #endif | |
32 | #else /* _WIN32 */ | |
33 | #define LIBNXAGENT_EXPORTABLE | |
34 | #endif | |
35 | ||
36 | ||
adc00755 | 37 | #include <nms_common.h> |
64584976 | 38 | #include <nms_util.h> |
e6c91aac | 39 | #include <nxconfig.h> |
bb48198e | 40 | #include <nxdbapi.h> |
6827d635 | 41 | |
acc04d96 VK |
42 | /** |
43 | * Initialization function declaration macro | |
44 | */ | |
a0a945fb | 45 | #if defined(_STATIC_AGENT) || defined(_NETWARE) |
e6c91aac | 46 | #define DECLARE_SUBAGENT_ENTRY_POINT(name) extern "C" BOOL NxSubAgentRegister_##name(NETXMS_SUBAGENT_INFO **ppInfo, Config *config) |
a0a945fb | 47 | #else |
b5138dfb | 48 | #ifdef _WIN32 |
a0a945fb | 49 | #define DECLSPEC_EXPORT __declspec(dllexport) __cdecl |
b5138dfb VK |
50 | #else |
51 | #define DECLSPEC_EXPORT | |
52 | #endif | |
e6c91aac | 53 | #define DECLARE_SUBAGENT_ENTRY_POINT(name) extern "C" BOOL DECLSPEC_EXPORT NxSubAgentRegister(NETXMS_SUBAGENT_INFO **ppInfo, Config *config) |
b5138dfb VK |
54 | #endif |
55 | ||
86c126f5 VK |
56 | /** |
57 | * Constants | |
58 | */ | |
cbcaf8c8 | 59 | #define AGENT_LISTEN_PORT 4700 |
deaa4491 | 60 | #define AGENT_PROTOCOL_VERSION 2 |
cbcaf8c8 | 61 | #define MAX_RESULT_LENGTH 256 |
e22f1644 VK |
62 | #define MAX_CMD_LEN 256 |
63 | #define COMMAND_TIMEOUT 60 | |
47e0446b | 64 | #define MAX_SUBAGENT_NAME 64 |
86c126f5 | 65 | #define MAX_INSTANCE_COLUMNS 8 |
cbcaf8c8 | 66 | |
d02f6b92 VK |
67 | /** |
68 | * Agent policy types | |
69 | */ | |
6ca3b41c | 70 | #define AGENT_POLICY_CONFIG 1 |
f47c176c | 71 | #define AGENT_POLICY_LOG_PARSER 2 |
6ca3b41c | 72 | |
169fa953 TD |
73 | /** |
74 | * Agent log parser policy folder | |
75 | */ | |
76 | #define LOGPARSER_AP_FOLDER _T("logparser_ap") | |
b123ecb3 | 77 | #define CONFIG_AP_FOLDER _T("config_ap") |
169fa953 | 78 | |
d02f6b92 VK |
79 | /** |
80 | * Error codes | |
81 | */ | |
967893bb VK |
82 | #define ERR_SUCCESS ((UINT32)0) |
83 | #define ERR_UNKNOWN_COMMAND ((UINT32)400) | |
84 | #define ERR_AUTH_REQUIRED ((UINT32)401) | |
85 | #define ERR_ACCESS_DENIED ((UINT32)403) | |
86 | #define ERR_UNKNOWN_PARAMETER ((UINT32)404) | |
87 | #define ERR_REQUEST_TIMEOUT ((UINT32)408) | |
88 | #define ERR_AUTH_FAILED ((UINT32)440) | |
89 | #define ERR_ALREADY_AUTHENTICATED ((UINT32)441) | |
90 | #define ERR_AUTH_NOT_REQUIRED ((UINT32)442) | |
91 | #define ERR_INTERNAL_ERROR ((UINT32)500) | |
92 | #define ERR_NOT_IMPLEMENTED ((UINT32)501) | |
93 | #define ERR_OUT_OF_RESOURCES ((UINT32)503) | |
94 | #define ERR_NOT_CONNECTED ((UINT32)900) | |
95 | #define ERR_CONNECTION_BROKEN ((UINT32)901) | |
96 | #define ERR_BAD_RESPONSE ((UINT32)902) | |
97 | #define ERR_IO_FAILURE ((UINT32)903) | |
98 | #define ERR_RESOURCE_BUSY ((UINT32)904) | |
99 | #define ERR_EXEC_FAILED ((UINT32)905) | |
100 | #define ERR_ENCRYPTION_REQUIRED ((UINT32)906) | |
101 | #define ERR_NO_CIPHERS ((UINT32)907) | |
102 | #define ERR_INVALID_PUBLIC_KEY ((UINT32)908) | |
103 | #define ERR_INVALID_SESSION_KEY ((UINT32)909) | |
104 | #define ERR_CONNECT_FAILED ((UINT32)910) | |
105 | #define ERR_MALFORMED_COMMAND ((UINT32)911) | |
106 | #define ERR_SOCKET_ERROR ((UINT32)912) | |
107 | #define ERR_BAD_ARGUMENTS ((UINT32)913) | |
108 | #define ERR_SUBAGENT_LOAD_FAILED ((UINT32)914) | |
109 | #define ERR_FILE_OPEN_ERROR ((UINT32)915) | |
110 | #define ERR_FILE_STAT_FAILED ((UINT32)916) | |
111 | #define ERR_MEM_ALLOC_FAILED ((UINT32)917) | |
112 | #define ERR_FILE_DELETE_FAILED ((UINT32)918) | |
9c786c0f | 113 | #define ERR_NO_SESSION_AGENT ((UINT32)919) |
87fff547 | 114 | #define ERR_SERVER_ID_UNSET ((UINT32)920) |
82493366 | 115 | #define ERR_NO_SUCH_INSTANCE ((UINT32)921) |
cbcaf8c8 | 116 | |
a1273b42 VK |
117 | /** |
118 | * Bulk data reconciliation DCI processing status codes | |
119 | */ | |
120 | #define BULK_DATA_REC_RETRY 0 | |
121 | #define BULK_DATA_REC_SUCCESS 1 | |
122 | #define BULK_DATA_REC_FAILURE 2 | |
123 | ||
f7319eac VK |
124 | /** |
125 | * Max bulk data block size | |
126 | */ | |
9cf1b53c | 127 | #define MAX_BULK_DATA_BLOCK_SIZE 8192 |
f7319eac | 128 | |
d02f6b92 VK |
129 | /** |
130 | * Parameter handler return codes | |
131 | */ | |
82493366 VK |
132 | #define SYSINFO_RC_SUCCESS 0 |
133 | #define SYSINFO_RC_UNSUPPORTED 1 | |
134 | #define SYSINFO_RC_ERROR 2 | |
135 | #define SYSINFO_RC_NO_SUCH_INSTANCE 3 | |
cbcaf8c8 | 136 | |
d02f6b92 VK |
137 | /** |
138 | * WinPerf features | |
139 | */ | |
967893bb VK |
140 | #define WINPERF_AUTOMATIC_SAMPLE_COUNT ((UINT32)0x00000001) |
141 | #define WINPERF_REMOTE_COUNTER_CONFIG ((UINT32)0x00000002) | |
cbcaf8c8 | 142 | |
74540dab VK |
143 | /** |
144 | * User session states (used by session agents) | |
145 | */ | |
146 | #define USER_SESSION_ACTIVE 0 | |
147 | #define USER_SESSION_CONNECTED 1 | |
148 | #define USER_SESSION_DISCONNECTED 2 | |
149 | #define USER_SESSION_IDLE 3 | |
150 | #define USER_SESSION_OTHER 4 | |
151 | ||
d02f6b92 VK |
152 | /** |
153 | * Descriptions for common parameters | |
154 | */ | |
bf3b7f79 VK |
155 | #define DCIDESC_FS_AVAIL _T("Available space on file system {instance}") |
156 | #define DCIDESC_FS_AVAILPERC _T("Percentage of available space on file system {instance}") | |
157 | #define DCIDESC_FS_FREE _T("Free space on file system {instance}") | |
158 | #define DCIDESC_FS_FREEPERC _T("Percentage of free space on file system {instance}") | |
159 | #define DCIDESC_FS_TOTAL _T("Total space on file system {instance}") | |
4a675f94 | 160 | #define DCIDESC_FS_TYPE _T("Type of file system {instance}") |
bf3b7f79 VK |
161 | #define DCIDESC_FS_USED _T("Used space on file system {instance}") |
162 | #define DCIDESC_FS_USEDPERC _T("Percentage of used space on file system {instance}") | |
11b75b2e | 163 | #define DCIDESC_NET_INTERFACE_64BITCOUNTERS _T("Is 64bit interface counters supported") |
bf3b7f79 VK |
164 | #define DCIDESC_NET_INTERFACE_ADMINSTATUS _T("Administrative status of interface {instance}") |
165 | #define DCIDESC_NET_INTERFACE_BYTESIN _T("Number of input bytes on interface {instance}") | |
166 | #define DCIDESC_NET_INTERFACE_BYTESOUT _T("Number of output bytes on interface {instance}") | |
167 | #define DCIDESC_NET_INTERFACE_DESCRIPTION _T("Description of interface {instance}") | |
168 | #define DCIDESC_NET_INTERFACE_INERRORS _T("Number of input errors on interface {instance}") | |
169 | #define DCIDESC_NET_INTERFACE_LINK _T("Link status for interface {instance}") | |
170 | #define DCIDESC_NET_INTERFACE_MTU _T("MTU for interface {instance}") | |
171 | #define DCIDESC_NET_INTERFACE_OPERSTATUS _T("Operational status of interface {instance}") | |
172 | #define DCIDESC_NET_INTERFACE_OUTERRORS _T("Number of output errors on interface {instance}") | |
173 | #define DCIDESC_NET_INTERFACE_PACKETSIN _T("Number of input packets on interface {instance}") | |
174 | #define DCIDESC_NET_INTERFACE_PACKETSOUT _T("Number of output packets on interface {instance}") | |
175 | #define DCIDESC_NET_INTERFACE_SPEED _T("Speed of interface {instance}") | |
176 | #define DCIDESC_NET_IP_FORWARDING _T("IP forwarding status") | |
177 | #define DCIDESC_NET_IP6_FORWARDING _T("IPv6 forwarding status") | |
ecdf8898 VK |
178 | #define DCIDESC_NET_RESOLVER_ADDRBYNAME _T("Resolver: address for name {instance}") |
179 | #define DCIDESC_NET_RESOLVER_NAMEBYADDR _T("Resolver: name for address {instance}") | |
bf3b7f79 VK |
180 | #define DCIDESC_PHYSICALDISK_FIRMWARE _T("Firmware version of hard disk {instance}") |
181 | #define DCIDESC_PHYSICALDISK_MODEL _T("Model of hard disk {instance}") | |
182 | #define DCIDESC_PHYSICALDISK_SERIALNUMBER _T("Serial number of hard disk {instance}") | |
183 | #define DCIDESC_PHYSICALDISK_SMARTATTR _T("") | |
184 | #define DCIDESC_PHYSICALDISK_SMARTSTATUS _T("Status of hard disk {instance} reported by SMART") | |
185 | #define DCIDESC_PHYSICALDISK_TEMPERATURE _T("Temperature of hard disk {instance}") | |
41580924 VK |
186 | #define DCIDESC_SYSTEM_CPU_CACHE_SIZE _T("CPU {instance}: cache size (KB)") |
187 | #define DCIDESC_SYSTEM_CPU_CORE_ID _T("CPU {instance}: core ID") | |
bf3b7f79 | 188 | #define DCIDESC_SYSTEM_CPU_COUNT _T("Number of CPU in the system") |
41580924 VK |
189 | #define DCIDESC_SYSTEM_CPU_FREQUENCY _T("CPU {instance}: frequency") |
190 | #define DCIDESC_SYSTEM_CPU_MODEL _T("CPU {instance}: model") | |
191 | #define DCIDESC_SYSTEM_CPU_PHYSICAL_ID _T("CPU {instance}: physical ID") | |
bf3b7f79 | 192 | #define DCIDESC_SYSTEM_HOSTNAME _T("Host name") |
5741ae09 VK |
193 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_AVAILABLE _T("Available physical memory") |
194 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_AVAILABLE_PCT _T("Percentage of available physical memory") | |
195 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_BUFFERS _T("Physical memory used for buffers") | |
196 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_BUFFERS_PCT _T("Percentage of physical memory used for buffers") | |
197 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_CACHED _T("Physical memory used for cache") | |
198 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_CACHED_PCT _T("Percentage of physical memory used for cache") | |
bf3b7f79 VK |
199 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_FREE _T("Free physical memory") |
200 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_FREE_PCT _T("Percentage of free physical memory") | |
201 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_TOTAL _T("Total amount of physical memory") | |
202 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_USED _T("Used physical memory") | |
203 | #define DCIDESC_SYSTEM_MEMORY_PHYSICAL_USED_PCT _T("Percentage of used physical memory") | |
03a48429 VK |
204 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_ACTIVE _T("Active virtual memory") |
205 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_ACTIVE_PCT _T("Percentage of active virtual memory") | |
bf3b7f79 VK |
206 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_FREE _T("Free virtual memory") |
207 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_FREE_PCT _T("Percentage of free virtual memory") | |
208 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_TOTAL _T("Total amount of virtual memory") | |
209 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_USED _T("Used virtual memory") | |
210 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_USED_PCT _T("Percentage of used virtual memory") | |
211 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_AVAILABLE _T("Available virtual memory") | |
212 | #define DCIDESC_SYSTEM_MEMORY_VIRTUAL_AVAILABLE_PCT _T("Percentage of available virtual memory") | |
213 | #define DCIDESC_SYSTEM_MEMORY_SWAP_FREE _T("Free swap space") | |
214 | #define DCIDESC_SYSTEM_MEMORY_SWAP_FREE_PCT _T("Percentage of free swap space") | |
215 | #define DCIDESC_SYSTEM_MEMORY_SWAP_TOTAL _T("Total amount of swap space") | |
216 | #define DCIDESC_SYSTEM_MEMORY_SWAP_USED _T("Used swap space") | |
217 | #define DCIDESC_SYSTEM_MEMORY_SWAP_USED_PCT _T("Percentage of used swap space") | |
cd30e53b VK |
218 | #define DCIDESC_SYSTEM_MSGQUEUE_BYTES _T("Message queue {instance}: bytes in queue") |
219 | #define DCIDESC_SYSTEM_MSGQUEUE_BYTES_MAX _T("Message queue {instance}: maximum allowed bytes in queue") | |
220 | #define DCIDESC_SYSTEM_MSGQUEUE_CHANGE_TIME _T("Message queue {instance}: last change time") | |
221 | #define DCIDESC_SYSTEM_MSGQUEUE_MESSAGES _T("Message queue {instance}: number of messages") | |
222 | #define DCIDESC_SYSTEM_MSGQUEUE_RECV_TIME _T("Message queue {instance}: last receive time") | |
223 | #define DCIDESC_SYSTEM_MSGQUEUE_SEND_TIME _T("Message queue {instance}: last send time") | |
bf3b7f79 VK |
224 | #define DCIDESC_SYSTEM_UNAME _T("System uname") |
225 | #define DCIDESC_AGENT_ACCEPTEDCONNECTIONS _T("Number of connections accepted by agent") | |
226 | #define DCIDESC_AGENT_ACCEPTERRORS _T("Number of accept() call errors") | |
227 | #define DCIDESC_AGENT_ACTIVECONNECTIONS _T("Number of active connections to agent") | |
228 | #define DCIDESC_AGENT_AUTHENTICATIONFAILURES _T("Number of authentication failures") | |
229 | #define DCIDESC_AGENT_CONFIG_SERVER _T("Configuration server address set on agent startup") | |
df26f039 | 230 | #define DCIDESC_AGENT_DATACOLLQUEUESIZE _T("Agent data collector queue size") |
bf3b7f79 VK |
231 | #define DCIDESC_AGENT_FAILEDREQUESTS _T("Number of failed requests to agent") |
232 | #define DCIDESC_AGENT_GENERATED_TRAPS _T("Number of traps generated by agent") | |
05db3127 | 233 | #define DCIDESC_AGENT_IS_SUBAGENT_LOADED _T("Check if given subagent is loaded") |
bf3b7f79 | 234 | #define DCIDESC_AGENT_LAST_TRAP_TIME _T("Timestamp of last generated trap") |
7b30e5ae VK |
235 | #define DCIDESC_AGENT_LOCALDB_FAILED_QUERIES _T("Agent local database: failed queries") |
236 | #define DCIDESC_AGENT_LOCALDB_SLOW_QUERIES _T("Agent local database: long running queries") | |
237 | #define DCIDESC_AGENT_LOCALDB_STATUS _T("Agent local database: status") | |
238 | #define DCIDESC_AGENT_LOCALDB_TOTAL_QUERIES _T("Agent local database: total queries executed") | |
239 | #define DCIDESC_AGENT_LOG_STATUS _T("Agent log status") | |
bf3b7f79 VK |
240 | #define DCIDESC_AGENT_PROCESSEDREQUESTS _T("Number of requests processed by agent") |
241 | #define DCIDESC_AGENT_REGISTRAR _T("Registrar server address set on agent startup") | |
242 | #define DCIDESC_AGENT_REJECTEDCONNECTIONS _T("Number of connections rejected by agent") | |
243 | #define DCIDESC_AGENT_SENT_TRAPS _T("Number of traps successfully sent to server") | |
05db3127 | 244 | #define DCIDESC_AGENT_SOURCEPACKAGESUPPORT _T("Check if source packages are supported") |
bf3b7f79 | 245 | #define DCIDESC_AGENT_SUPPORTEDCIPHERS _T("List of ciphers supported by agent") |
374afd7b VK |
246 | #define DCIDESC_AGENT_THREADPOOL_ACTIVEREQUESTS _T("Agent thread pool {instance}: active requests") |
247 | #define DCIDESC_AGENT_THREADPOOL_CURRSIZE _T("Agent thread pool {instance}: current size") | |
248 | #define DCIDESC_AGENT_THREADPOOL_LOAD _T("Agent thread pool {instance}: current load") | |
249 | #define DCIDESC_AGENT_THREADPOOL_LOADAVG _T("Agent thread pool {instance}: load average (1 minute)") | |
250 | #define DCIDESC_AGENT_THREADPOOL_LOADAVG_5 _T("Agent thread pool {instance}: load average (5 minutes)") | |
251 | #define DCIDESC_AGENT_THREADPOOL_LOADAVG_15 _T("Agent thread pool {instance}: load average (15 minutes)") | |
252 | #define DCIDESC_AGENT_THREADPOOL_MAXSIZE _T("Agent thread pool {instance}: max size") | |
253 | #define DCIDESC_AGENT_THREADPOOL_MINSIZE _T("Agent thread pool {instance}: min size") | |
254 | #define DCIDESC_AGENT_THREADPOOL_USAGE _T("Agent thread pool {instance}: usage") | |
bf3b7f79 VK |
255 | #define DCIDESC_AGENT_TIMEDOUTREQUESTS _T("Number of timed out requests to agent") |
256 | #define DCIDESC_AGENT_UNSUPPORTEDREQUESTS _T("Number of requests for unsupported parameters") | |
257 | #define DCIDESC_AGENT_UPTIME _T("Agent's uptime") | |
258 | #define DCIDESC_AGENT_VERSION _T("Agent's version") | |
259 | #define DCIDESC_FILE_COUNT _T("Number of files {instance}") | |
5ad4ed06 | 260 | #define DCIDESC_FILE_FOLDERCOUNT _T("Number of folders {instance}") |
bf3b7f79 VK |
261 | #define DCIDESC_FILE_HASH_CRC32 _T("CRC32 checksum of {instance}") |
262 | #define DCIDESC_FILE_HASH_MD5 _T("MD5 hash of {instance}") | |
263 | #define DCIDESC_FILE_HASH_SHA1 _T("SHA1 hash of {instance}") | |
264 | #define DCIDESC_FILE_SIZE _T("Size of file {instance}") | |
265 | #define DCIDESC_FILE_TIME_ACCESS _T("Time of last access to file {instance}") | |
266 | #define DCIDESC_FILE_TIME_CHANGE _T("Time of last status change of file {instance}") | |
267 | #define DCIDESC_FILE_TIME_MODIFY _T("Time of last modification of file {instance}") | |
8ce7501b | 268 | #define DCIDESC_SYSTEM_CURRENTTIME _T("Current system time") |
bf3b7f79 VK |
269 | #define DCIDESC_SYSTEM_PLATFORMNAME _T("Platform name") |
270 | #define DCIDESC_PROCESS_COUNT _T("Number of {instance} processes") | |
271 | #define DCIDESC_PROCESS_COUNTEX _T("Number of {instance} processes (extended)") | |
272 | #define DCIDESC_PROCESS_CPUTIME _T("Total execution time for process {instance}") | |
273 | #define DCIDESC_PROCESS_GDIOBJ _T("GDI objects used by process {instance}") | |
92b25da9 | 274 | #define DCIDESC_PROCESS_HANDLES _T("Number of handles in process {instance}") |
bf3b7f79 VK |
275 | #define DCIDESC_PROCESS_IO_OTHERB _T("") |
276 | #define DCIDESC_PROCESS_IO_OTHEROP _T("") | |
277 | #define DCIDESC_PROCESS_IO_READB _T("") | |
278 | #define DCIDESC_PROCESS_IO_READOP _T("") | |
279 | #define DCIDESC_PROCESS_IO_WRITEB _T("") | |
280 | #define DCIDESC_PROCESS_IO_WRITEOP _T("") | |
281 | #define DCIDESC_PROCESS_KERNELTIME _T("Total execution time in kernel mode for process {instance}") | |
282 | #define DCIDESC_PROCESS_PAGEFAULTS _T("Page faults for process {instance}") | |
283 | #define DCIDESC_PROCESS_SYSCALLS _T("Number of system calls made by process {instance}") | |
284 | #define DCIDESC_PROCESS_THREADS _T("Number of threads in process {instance}") | |
285 | #define DCIDESC_PROCESS_USEROBJ _T("USER objects used by process {instance}") | |
286 | #define DCIDESC_PROCESS_USERTIME _T("Total execution time in user mode for process {instance}") | |
287 | #define DCIDESC_PROCESS_VMSIZE _T("Virtual memory used by process {instance}") | |
288 | #define DCIDESC_PROCESS_WKSET _T("Physical memory used by process {instance}") | |
92b25da9 | 289 | #define DCIDESC_PROCESS_ZOMBIE_COUNT _T("Number of {instance} zombie processes") |
bf3b7f79 VK |
290 | #define DCIDESC_SYSTEM_APPADDRESSSPACE _T("Address space available to applications (MB)") |
291 | #define DCIDESC_SYSTEM_CONNECTEDUSERS _T("Number of logged in users") | |
92b25da9 | 292 | #define DCIDESC_SYSTEM_HANDLECOUNT _T("Total number of handles") |
bf3b7f79 VK |
293 | #define DCIDESC_SYSTEM_PROCESSCOUNT _T("Total number of processes") |
294 | #define DCIDESC_SYSTEM_SERVICESTATE _T("State of {instance} service") | |
bf3b7f79 VK |
295 | #define DCIDESC_SYSTEM_THREADCOUNT _T("Total number of threads") |
296 | #define DCIDESC_PDH_COUNTERVALUE _T("Value of PDH counter {instance}") | |
297 | #define DCIDESC_PDH_VERSION _T("Version of PDH.DLL") | |
298 | #define DCIDESC_SYSTEM_UPTIME _T("System uptime") | |
299 | #define DCIDESC_SYSTEM_CPU_LOADAVG _T("Average CPU load for last minute") | |
300 | #define DCIDESC_SYSTEM_CPU_LOADAVG5 _T("Average CPU load for last 5 minutes") | |
301 | #define DCIDESC_SYSTEM_CPU_LOADAVG15 _T("Average CPU load for last 15 minutes") | |
302 | ||
303 | ||
304 | #define DCIDESC_SYSTEM_CPU_USAGE_EX _T("Average CPU {instance} utilization for last minute") | |
305 | #define DCIDESC_SYSTEM_CPU_USAGE5_EX _T("Average CPU {instance} utilization for last 5 minutes") | |
306 | #define DCIDESC_SYSTEM_CPU_USAGE15_EX _T("Average CPU {instance} utilization for last 15 minutes") | |
307 | #define DCIDESC_SYSTEM_CPU_USAGE _T("Average CPU utilization for last minute") | |
308 | #define DCIDESC_SYSTEM_CPU_USAGE5 _T("Average CPU utilization for last 5 minutes") | |
309 | #define DCIDESC_SYSTEM_CPU_USAGE15 _T("Average CPU utilization for last 15 minutes") | |
310 | ||
311 | #define DCIDESC_SYSTEM_CPU_USAGE_USER_EX _T("Average CPU {instance} utilization (user) for last minute") | |
312 | #define DCIDESC_SYSTEM_CPU_USAGE5_USER_EX _T("Average CPU {instance} utilization (user) for last 5 minutes") | |
313 | #define DCIDESC_SYSTEM_CPU_USAGE15_USER_EX _T("Average CPU {instance} utilization (user) for last 15 minutes") | |
314 | #define DCIDESC_SYSTEM_CPU_USAGE_USER _T("Average CPU utilization (user) for last minute") | |
315 | #define DCIDESC_SYSTEM_CPU_USAGE5_USER _T("Average CPU utilization (user) for last 5 minutes") | |
316 | #define DCIDESC_SYSTEM_CPU_USAGE15_USER _T("Average CPU utilization (user) for last 15 minutes") | |
317 | ||
318 | #define DCIDESC_SYSTEM_CPU_USAGE_NICE_EX _T("Average CPU {instance} utilization (nice) for last minute") | |
319 | #define DCIDESC_SYSTEM_CPU_USAGE5_NICE_EX _T("Average CPU {instance} utilization (nice) for last 5 minutes") | |
320 | #define DCIDESC_SYSTEM_CPU_USAGE15_NICE_EX _T("Average CPU {instance} utilization (nice) for last 15 minutes") | |
321 | #define DCIDESC_SYSTEM_CPU_USAGE_NICE _T("Average CPU utilization (nice) for last minute") | |
322 | #define DCIDESC_SYSTEM_CPU_USAGE5_NICE _T("Average CPU utilization (nice) for last 5 minutes") | |
323 | #define DCIDESC_SYSTEM_CPU_USAGE15_NICE _T("Average CPU utilization (nice) for last 15 minutes") | |
324 | ||
325 | #define DCIDESC_SYSTEM_CPU_USAGE_SYSTEM_EX _T("Average CPU {instance} utilization (system) for last minute") | |
326 | #define DCIDESC_SYSTEM_CPU_USAGE5_SYSTEM_EX _T("Average CPU {instance} utilization (system) for last 5 minutes") | |
327 | #define DCIDESC_SYSTEM_CPU_USAGE15_SYSTEM_EX _T("Average CPU {instance} utilization (system) for last 15 minutes") | |
328 | #define DCIDESC_SYSTEM_CPU_USAGE_SYSTEM _T("Average CPU utilization (system) for last minute") | |
329 | #define DCIDESC_SYSTEM_CPU_USAGE5_SYSTEM _T("Average CPU utilization (system) for last 5 minutes") | |
330 | #define DCIDESC_SYSTEM_CPU_USAGE15_SYSTEM _T("Average CPU utilization (system) for last 15 minutes") | |
331 | ||
332 | #define DCIDESC_SYSTEM_CPU_USAGE_IDLE_EX _T("Average CPU {instance} utilization (idle) for last minute") | |
333 | #define DCIDESC_SYSTEM_CPU_USAGE5_IDLE_EX _T("Average CPU {instance} utilization (idle) for last 5 minutes") | |
334 | #define DCIDESC_SYSTEM_CPU_USAGE15_IDLE_EX _T("Average CPU {instance} utilization (idle) for last 15 minutes") | |
335 | #define DCIDESC_SYSTEM_CPU_USAGE_IDLE _T("Average CPU utilization (idle) for last minute") | |
336 | #define DCIDESC_SYSTEM_CPU_USAGE5_IDLE _T("Average CPU utilization (idle) for last 5 minutes") | |
337 | #define DCIDESC_SYSTEM_CPU_USAGE15_IDLE _T("Average CPU utilization (idle) for last 15 minutes") | |
338 | ||
339 | #define DCIDESC_SYSTEM_CPU_USAGE_IOWAIT_EX _T("Average CPU {instance} utilization (iowait) for last minute") | |
340 | #define DCIDESC_SYSTEM_CPU_USAGE5_IOWAIT_EX _T("Average CPU {instance} utilization (iowait) for last 5 minutes") | |
341 | #define DCIDESC_SYSTEM_CPU_USAGE15_IOWAIT_EX _T("Average CPU {instance} utilization (iowait) for last 15 minutes") | |
342 | #define DCIDESC_SYSTEM_CPU_USAGE_IOWAIT _T("Average CPU utilization (iowait) for last minute") | |
343 | #define DCIDESC_SYSTEM_CPU_USAGE5_IOWAIT _T("Average CPU utilization (iowait) for last 5 minutes") | |
344 | #define DCIDESC_SYSTEM_CPU_USAGE15_IOWAIT _T("Average CPU utilization (iowait) for last 15 minutes") | |
345 | ||
346 | #define DCIDESC_SYSTEM_CPU_USAGE_IRQ_EX _T("Average CPU {instance} utilization (irq) for last minute") | |
347 | #define DCIDESC_SYSTEM_CPU_USAGE5_IRQ_EX _T("Average CPU {instance} utilization (irq) for last 5 minutes") | |
348 | #define DCIDESC_SYSTEM_CPU_USAGE15_IRQ_EX _T("Average CPU {instance} utilization (irq) for last 15 minutes") | |
349 | #define DCIDESC_SYSTEM_CPU_USAGE_IRQ _T("Average CPU utilization (irq) for last minute") | |
350 | #define DCIDESC_SYSTEM_CPU_USAGE5_IRQ _T("Average CPU utilization (irq) for last 5 minutes") | |
351 | #define DCIDESC_SYSTEM_CPU_USAGE15_IRQ _T("Average CPU utilization (irq) for last 15 minutes") | |
352 | ||
353 | #define DCIDESC_SYSTEM_CPU_USAGE_SOFTIRQ_EX _T("Average CPU {instance} utilization (softirq) for last minute") | |
354 | #define DCIDESC_SYSTEM_CPU_USAGE5_SOFTIRQ_EX _T("Average CPU {instance} utilization (softirq) for last 5 minutes") | |
355 | #define DCIDESC_SYSTEM_CPU_USAGE15_SOFTIRQ_EX _T("Average CPU {instance} utilization (softirq) for last 15 minutes") | |
356 | #define DCIDESC_SYSTEM_CPU_USAGE_SOFTIRQ _T("Average CPU utilization (softirq) for last minute") | |
357 | #define DCIDESC_SYSTEM_CPU_USAGE5_SOFTIRQ _T("Average CPU utilization (softirq) for last 5 minutes") | |
358 | #define DCIDESC_SYSTEM_CPU_USAGE15_SOFTIRQ _T("Average CPU utilization (softirq) for last 15 minutes") | |
359 | ||
360 | #define DCIDESC_SYSTEM_CPU_USAGE_STEAL_EX _T("Average CPU {instance} utilization (steal) for last minute") | |
361 | #define DCIDESC_SYSTEM_CPU_USAGE5_STEAL_EX _T("Average CPU {instance} utilization (steal) for last 5 minutes") | |
362 | #define DCIDESC_SYSTEM_CPU_USAGE15_STEAL_EX _T("Average CPU {instance} utilization (steal) for last 15 minutes") | |
363 | #define DCIDESC_SYSTEM_CPU_USAGE_STEAL _T("Average CPU utilization (steal) for last minute") | |
364 | #define DCIDESC_SYSTEM_CPU_USAGE5_STEAL _T("Average CPU utilization (steal) for last 5 minutes") | |
365 | #define DCIDESC_SYSTEM_CPU_USAGE15_STEAL _T("Average CPU utilization (steal) for last 15 minutes") | |
366 | ||
367 | #define DCIDESC_SYSTEM_CPU_USAGE_GUEST_EX _T("Average CPU {instance} utilization (guest) for last minute") | |
368 | #define DCIDESC_SYSTEM_CPU_USAGE5_GUEST_EX _T("Average CPU {instance} utilization (guest) for last 5 minutes") | |
369 | #define DCIDESC_SYSTEM_CPU_USAGE15_GUEST_EX _T("Average CPU {instance} utilization (guest) for last 15 minutes") | |
370 | #define DCIDESC_SYSTEM_CPU_USAGE_GUEST _T("Average CPU utilization (guest) for last minute") | |
371 | #define DCIDESC_SYSTEM_CPU_USAGE5_GUEST _T("Average CPU utilization (guest) for last 5 minutes") | |
372 | #define DCIDESC_SYSTEM_CPU_USAGE15_GUEST _T("Average CPU utilization (guest) for last 15 minutes") | |
373 | ||
374 | #define DCIDESC_SYSTEM_IO_DISKQUEUE _T("Average disk queue length for last minute") | |
3e00a175 VK |
375 | #define DCIDESC_SYSTEM_IO_DISKQUEUE_MIN _T("Minimum disk queue length for last minute") |
376 | #define DCIDESC_SYSTEM_IO_DISKQUEUE_MAX _T("Maximum disk queue length for last minute") | |
bf3b7f79 | 377 | #define DCIDESC_SYSTEM_IO_DISKQUEUE_EX _T("Average disk queue length of device {instance} for last minute") |
3e00a175 VK |
378 | #define DCIDESC_SYSTEM_IO_DISKQUEUE_EX_MIN _T("Minimum disk queue length of device {instance} for last minute") |
379 | #define DCIDESC_SYSTEM_IO_DISKQUEUE_EX_MAX _T("Maximum disk queue length of device {instance} for last minute") | |
bf3b7f79 VK |
380 | #define DCIDESC_SYSTEM_IO_DISKTIME _T("Percent of CPU time spent on I/O for last minute") |
381 | #define DCIDESC_SYSTEM_IO_DISKTIME_EX _T("Percent of CPU time spent on I/O on device {instance} for last minute") | |
382 | #define DCIDESC_SYSTEM_IO_WAITTIME _T("Average I/O request wait time") | |
383 | #define DCIDESC_SYSTEM_IO_WAITTIME_EX _T("Average I/O request wait time for device {instance}") | |
384 | #define DCIDESC_SYSTEM_IO_READS _T("Average number of read operations for last minute") | |
3e00a175 VK |
385 | #define DCIDESC_SYSTEM_IO_READS_MIN _T("Minimum number of read operations for last minute") |
386 | #define DCIDESC_SYSTEM_IO_READS_MAX _T("Maximum number of read operations for last minute") | |
bf3b7f79 | 387 | #define DCIDESC_SYSTEM_IO_READS_EX _T("Average number of read operations on device {instance} for last minute") |
3e00a175 VK |
388 | #define DCIDESC_SYSTEM_IO_READS_EX_MIN _T("Minimum number of read operations on device {instance} for last minute") |
389 | #define DCIDESC_SYSTEM_IO_READS_EX_MAX _T("Maximum number of read operations on device {instance} for last minute") | |
bf3b7f79 | 390 | #define DCIDESC_SYSTEM_IO_WRITES _T("Average number of write operations for last minute") |
3e00a175 VK |
391 | #define DCIDESC_SYSTEM_IO_WRITES_MIN _T("Minimum number of write operations for last minute") |
392 | #define DCIDESC_SYSTEM_IO_WRITES_MAX _T("Maximum number of write operations for last minute") | |
bf3b7f79 | 393 | #define DCIDESC_SYSTEM_IO_WRITES_EX _T("Average number of write operations on device {instance} for last minute") |
3e00a175 VK |
394 | #define DCIDESC_SYSTEM_IO_WRITES_EX_MIN _T("Minimum number of write operations on device {instance} for last minute") |
395 | #define DCIDESC_SYSTEM_IO_WRITES_EX_MAX _T("Maximum number of write operations on device {instance} for last minute") | |
bf3b7f79 | 396 | #define DCIDESC_SYSTEM_IO_XFERS _T("Average number of I/O transfers for last minute") |
3e00a175 VK |
397 | #define DCIDESC_SYSTEM_IO_XFERS_MIN _T("Minimum number of I/O transfers for last minute") |
398 | #define DCIDESC_SYSTEM_IO_XFERS_MAX _T("Maximum number of I/O transfers for last minute") | |
bf3b7f79 | 399 | #define DCIDESC_SYSTEM_IO_XFERS_EX _T("Average number of I/O transfers on device {instance} for last minute") |
3e00a175 VK |
400 | #define DCIDESC_SYSTEM_IO_XFERS_EX_MIN _T("Minimum number of I/O transfers on device {instance} for last minute") |
401 | #define DCIDESC_SYSTEM_IO_XFERS_EX_MAX _T("Maximum number of I/O transfers on device {instance} for last minute") | |
bf3b7f79 | 402 | #define DCIDESC_SYSTEM_IO_BYTEREADS _T("Average number of bytes read for last minute") |
3e00a175 VK |
403 | #define DCIDESC_SYSTEM_IO_BYTEREADS_MIN _T("Minimum number of bytes read for last minute") |
404 | #define DCIDESC_SYSTEM_IO_BYTEREADS_MAX _T("Maximum number of bytes read for last minute") | |
bf3b7f79 | 405 | #define DCIDESC_SYSTEM_IO_BYTEREADS_EX _T("Average number of bytes read on device {instance} for last minute") |
3e00a175 VK |
406 | #define DCIDESC_SYSTEM_IO_BYTEREADS_EX_MIN _T("Minimum number of bytes read on device {instance} for last minute") |
407 | #define DCIDESC_SYSTEM_IO_BYTEREADS_EX_MAX _T("Maximum number of bytes read on device {instance} for last minute") | |
bf3b7f79 | 408 | #define DCIDESC_SYSTEM_IO_BYTEWRITES _T("Average number of bytes written for last minute") |
3e00a175 VK |
409 | #define DCIDESC_SYSTEM_IO_BYTEWRITES_MIN _T("Minimum number of bytes written for last minute") |
410 | #define DCIDESC_SYSTEM_IO_BYTEWRITES_MAX _T("Maximum number of bytes written for last minute") | |
bf3b7f79 | 411 | #define DCIDESC_SYSTEM_IO_BYTEWRITES_EX _T("Average number of bytes written on device {instance} for last minute") |
3e00a175 VK |
412 | #define DCIDESC_SYSTEM_IO_BYTEWRITES_EX_MIN _T("Minimum number of bytes written on device {instance} for last minute") |
413 | #define DCIDESC_SYSTEM_IO_BYTEWRITES_EX_MAX _T("Maximum number of bytes written on device {instance} for last minute") | |
bf3b7f79 VK |
414 | #define DCIDESC_SYSTEM_IO_OPENFILES _T("Number of open files") |
415 | ||
416 | ||
417 | #define DCIDESC_DEPRECATED _T("<deprecated>") | |
30c68fa1 AK |
418 | |
419 | ||
74540dab | 420 | #define DCTDESC_AGENT_SESSION_AGENTS _T("Registered session agents") |
ad12a86f | 421 | #define DCTDESC_AGENT_SUBAGENTS _T("Loaded subagents") |
a8799146 | 422 | #define DCTDESC_FILESYSTEM_VOLUMES _T("File system volumes") |
ac60d715 | 423 | #define DCTDESC_SYSTEM_INSTALLED_PRODUCTS _T("Installed products") |
92b25da9 | 424 | #define DCTDESC_SYSTEM_OPEN_FILES _T("Open files") |
ad12a86f | 425 | #define DCTDESC_SYSTEM_PROCESSES _T("Processes") |
cc8ce218 | 426 | |
5944946e VK |
427 | /** |
428 | * API for CommSession | |
429 | */ | |
6fbaa926 | 430 | class AbstractCommSession : public RefCountObject |
5944946e VK |
431 | { |
432 | public: | |
9319c166 VK |
433 | virtual bool isMasterServer() = 0; |
434 | virtual bool isControlServer() = 0; | |
d1dfba1a | 435 | virtual bool canAcceptData() = 0; |
0d956dd9 | 436 | virtual bool canAcceptTraps() = 0; |
e13420c1 | 437 | virtual bool canAcceptFileUpdates() = 0; |
e9902466 | 438 | virtual UINT64 getServerId() = 0; |
8c75ad41 | 439 | virtual const InetAddress& getServerAddress() = 0; |
9319c166 | 440 | |
ea3993c8 VK |
441 | virtual bool isIPv6Aware() = 0; |
442 | ||
6fbaa926 VK |
443 | virtual void sendMessage(NXCPMessage *msg) = 0; |
444 | virtual void sendRawMessage(NXCP_MESSAGE *msg) = 0; | |
9319c166 | 445 | virtual bool sendFile(UINT32 requestId, const TCHAR *file, long offset) = 0; |
63ff3c9d | 446 | virtual UINT32 doRequest(NXCPMessage *msg, UINT32 timeout) = 0; |
a1273b42 | 447 | virtual NXCPMessage *doRequestEx(NXCPMessage *msg, UINT32 timeout) = 0; |
6fbaa926 | 448 | virtual UINT32 generateRequestId() = 0; |
9319c166 | 449 | virtual UINT32 openFile(TCHAR* nameOfFile, UINT32 requestId) = 0; |
5944946e VK |
450 | }; |
451 | ||
0f506caa VK |
452 | /** |
453 | * Subagent's parameter information | |
454 | */ | |
6827d635 VK |
455 | typedef struct |
456 | { | |
4687826e | 457 | TCHAR name[MAX_PARAM_NAME]; |
060c5a11 | 458 | LONG (* handler)(const TCHAR *, const TCHAR *, TCHAR *, AbstractCommSession *); |
4687826e VK |
459 | const TCHAR *arg; |
460 | int dataType; // Use DT_DEPRECATED to indicate deprecated parameter | |
461 | TCHAR description[MAX_DB_STRING]; | |
6827d635 VK |
462 | } NETXMS_SUBAGENT_PARAM; |
463 | ||
0f506caa VK |
464 | /** |
465 | * Subagent's push parameter information | |
466 | */ | |
f480bdd4 VK |
467 | typedef struct |
468 | { | |
469 | TCHAR name[MAX_PARAM_NAME]; | |
470 | int dataType; | |
471 | TCHAR description[MAX_DB_STRING]; | |
472 | } NETXMS_SUBAGENT_PUSHPARAM; | |
473 | ||
0f506caa VK |
474 | /** |
475 | * Subagent's list information | |
476 | */ | |
901c96c7 VK |
477 | typedef struct |
478 | { | |
4687826e | 479 | TCHAR name[MAX_PARAM_NAME]; |
060c5a11 | 480 | LONG (* handler)(const TCHAR *, const TCHAR *, StringList *, AbstractCommSession *); |
4687826e | 481 | const TCHAR *arg; |
cb97f4dd | 482 | TCHAR description[MAX_DB_STRING]; |
4687826e VK |
483 | } NETXMS_SUBAGENT_LIST; |
484 | ||
cb97f4dd VK |
485 | /** |
486 | * Subagent's table column information | |
487 | */ | |
488 | typedef struct | |
489 | { | |
490 | TCHAR name[MAX_COLUMN_NAME]; | |
491 | TCHAR displayName[MAX_COLUMN_NAME]; | |
492 | int dataType; | |
493 | bool isInstance; | |
494 | } NETXMS_SUBAGENT_TABLE_COLUMN; | |
495 | ||
0f506caa VK |
496 | /** |
497 | * Subagent's table information | |
498 | */ | |
4687826e VK |
499 | typedef struct |
500 | { | |
501 | TCHAR name[MAX_PARAM_NAME]; | |
060c5a11 | 502 | LONG (* handler)(const TCHAR *, const TCHAR *, Table *, AbstractCommSession *); |
4687826e | 503 | const TCHAR *arg; |
52f5ee00 | 504 | TCHAR instanceColumns[MAX_COLUMN_NAME * MAX_INSTANCE_COLUMNS]; |
cc8ce218 | 505 | TCHAR description[MAX_DB_STRING]; |
cb97f4dd VK |
506 | int numColumns; |
507 | NETXMS_SUBAGENT_TABLE_COLUMN *columns; | |
4687826e | 508 | } NETXMS_SUBAGENT_TABLE; |
901c96c7 | 509 | |
0f506caa VK |
510 | /** |
511 | * Subagent's action information | |
512 | */ | |
37778a1d VK |
513 | typedef struct |
514 | { | |
4687826e | 515 | TCHAR name[MAX_PARAM_NAME]; |
060c5a11 | 516 | LONG (* handler)(const TCHAR *, StringList *, const TCHAR *, AbstractCommSession *); |
4687826e VK |
517 | const TCHAR *arg; |
518 | TCHAR description[MAX_DB_STRING]; | |
37778a1d VK |
519 | } NETXMS_SUBAGENT_ACTION; |
520 | ||
cb97f4dd | 521 | #define NETXMS_SUBAGENT_INFO_MAGIC ((UINT32)0x20150626) |
ded831ac | 522 | |
b368969c | 523 | class NXCPMessage; |
d618c3ae | 524 | |
5944946e VK |
525 | /** |
526 | * Subagent initialization structure | |
527 | */ | |
6827d635 VK |
528 | typedef struct |
529 | { | |
967893bb | 530 | UINT32 magic; // Magic number to check if subagent uses correct version of this structure |
4687826e VK |
531 | TCHAR name[MAX_SUBAGENT_NAME]; |
532 | TCHAR version[32]; | |
533 | BOOL (* init)(Config *); // Called to initialize subagent. Can be NULL. | |
534 | void (* shutdown)(); // Called at subagent unload. Can be NULL. | |
b368969c | 535 | BOOL (* commandHandler)(UINT32 command, NXCPMessage *request, NXCPMessage *response, AbstractCommSession *session); |
967893bb | 536 | UINT32 numParameters; |
4687826e | 537 | NETXMS_SUBAGENT_PARAM *parameters; |
967893bb | 538 | UINT32 numLists; |
4687826e | 539 | NETXMS_SUBAGENT_LIST *lists; |
967893bb | 540 | UINT32 numTables; |
4687826e | 541 | NETXMS_SUBAGENT_TABLE *tables; |
967893bb | 542 | UINT32 numActions; |
4687826e | 543 | NETXMS_SUBAGENT_ACTION *actions; |
967893bb | 544 | UINT32 numPushParameters; |
4687826e | 545 | NETXMS_SUBAGENT_PUSHPARAM *pushParameters; |
6827d635 | 546 | } NETXMS_SUBAGENT_INFO; |
3b376ea0 | 547 | |
0f506caa VK |
548 | /** |
549 | * Inline functions for returning parameters | |
550 | */ | |
a765d97c | 551 | inline void ret_string(TCHAR *rbuf, const TCHAR *value) |
cbcaf8c8 | 552 | { |
a23d8e0d | 553 | nx_strncpy(rbuf, value, MAX_RESULT_LENGTH); |
cbcaf8c8 VK |
554 | } |
555 | ||
f3387429 VK |
556 | inline void ret_wstring(TCHAR *rbuf, const WCHAR *value) |
557 | { | |
558 | #ifdef UNICODE | |
559 | nx_strncpy(rbuf, value, MAX_RESULT_LENGTH); | |
560 | #else | |
561 | WideCharToMultiByte(CP_ACP, WC_COMPOSITECHECK | WC_DEFAULTCHAR, value, -1, rbuf, MAX_RESULT_LENGTH, NULL, NULL); | |
562 | rbuf[MAX_RESULT_LENGTH - 1] = 0; | |
563 | #endif | |
564 | } | |
565 | ||
566 | inline void ret_mbstring(TCHAR *rbuf, const char *value) | |
567 | { | |
568 | #ifdef UNICODE | |
569 | MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, value, -1, rbuf, MAX_RESULT_LENGTH); | |
570 | rbuf[MAX_RESULT_LENGTH - 1] = 0; | |
571 | #else | |
572 | nx_strncpy(rbuf, value, MAX_RESULT_LENGTH); | |
573 | #endif | |
574 | } | |
575 | ||
0212dc5a | 576 | inline void ret_int(TCHAR *rbuf, LONG value) |
cbcaf8c8 | 577 | { |
66d07089 | 578 | #if defined(_WIN32) && (_MSC_VER >= 1300) |
6e38075b | 579 | _sntprintf_s(rbuf, MAX_RESULT_LENGTH, _TRUNCATE, _T("%ld"), (long)value); |
a23d8e0d | 580 | #else |
6e38075b | 581 | _sntprintf(rbuf, MAX_RESULT_LENGTH, _T("%ld"), (long)value); |
a23d8e0d | 582 | #endif |
cbcaf8c8 VK |
583 | } |
584 | ||
967893bb | 585 | inline void ret_uint(TCHAR *rbuf, UINT32 value) |
cbcaf8c8 | 586 | { |
66d07089 | 587 | #if defined(_WIN32) && (_MSC_VER >= 1300) |
6e38075b | 588 | _sntprintf_s(rbuf, MAX_RESULT_LENGTH, _TRUNCATE, _T("%lu"), (unsigned long)value); |
a23d8e0d | 589 | #else |
6e38075b | 590 | _sntprintf(rbuf, MAX_RESULT_LENGTH, _T("%lu"), (unsigned long)value); |
a23d8e0d | 591 | #endif |
cbcaf8c8 VK |
592 | } |
593 | ||
018fda4d | 594 | inline void ret_double(TCHAR *rbuf, double value) |
cbcaf8c8 | 595 | { |
66d07089 | 596 | #if defined(_WIN32) && (_MSC_VER >= 1300) |
a23d8e0d VK |
597 | _sntprintf_s(rbuf, MAX_RESULT_LENGTH, _TRUNCATE, _T("%f"), value); |
598 | #else | |
8b86c5dc | 599 | _sntprintf(rbuf, MAX_RESULT_LENGTH, _T("%f"), value); |
a23d8e0d | 600 | #endif |
cbcaf8c8 VK |
601 | } |
602 | ||
018fda4d | 603 | inline void ret_int64(TCHAR *rbuf, INT64 value) |
cbcaf8c8 | 604 | { |
66d07089 | 605 | #if defined(_WIN32) && (_MSC_VER >= 1300) |
a23d8e0d | 606 | _sntprintf_s(rbuf, MAX_RESULT_LENGTH, _TRUNCATE, _T("%I64d"), value); |
cbcaf8c8 | 607 | #else /* _WIN32 */ |
ccc34207 | 608 | _sntprintf(rbuf, MAX_RESULT_LENGTH, INT64_FMT, value); |
cbcaf8c8 VK |
609 | #endif /* _WIN32 */ |
610 | } | |
611 | ||
018fda4d | 612 | inline void ret_uint64(TCHAR *rbuf, QWORD value) |
cbcaf8c8 | 613 | { |
66d07089 | 614 | #if defined(_WIN32) && (_MSC_VER >= 1300) |
a23d8e0d | 615 | _sntprintf_s(rbuf, MAX_RESULT_LENGTH, _TRUNCATE, _T("%I64u"), value); |
cbcaf8c8 | 616 | #else /* _WIN32 */ |
ccc34207 | 617 | _sntprintf(rbuf, MAX_RESULT_LENGTH, UINT64_FMT, value); |
cbcaf8c8 VK |
618 | #endif /* _WIN32 */ |
619 | } | |
620 | ||
359784de VK |
621 | /** |
622 | * API for subagents | |
623 | */ | |
0e0867c6 | 624 | bool LIBNXAGENT_EXPORTABLE AgentGetParameterArgA(const TCHAR *param, int index, char *arg, int maxSize, bool inBrackets = true); |
625 | bool LIBNXAGENT_EXPORTABLE AgentGetParameterArgW(const TCHAR *param, int index, WCHAR *arg, int maxSize, bool inBrackets = true); | |
f3387429 VK |
626 | #ifdef UNICODE |
627 | #define AgentGetParameterArg AgentGetParameterArgW | |
628 | #else | |
629 | #define AgentGetParameterArg AgentGetParameterArgA | |
630 | #endif | |
631 | ||
359784de | 632 | void LIBNXAGENT_EXPORTABLE AgentWriteLog(int logLevel, const TCHAR *format, ...) |
6e383343 | 633 | #if !defined(UNICODE) && (defined(__GNUC__) || defined(__clang__)) |
640b6719 VK |
634 | __attribute__ ((format(printf, 2, 3))) |
635 | #endif | |
636 | ; | |
359784de VK |
637 | void LIBNXAGENT_EXPORTABLE AgentWriteLog2(int logLevel, const TCHAR *format, va_list args); |
638 | void LIBNXAGENT_EXPORTABLE AgentWriteDebugLog(int level, const TCHAR *format, ...) | |
6e383343 | 639 | #if !defined(UNICODE) && (defined(__GNUC__) || defined(__clang__)) |
640b6719 VK |
640 | __attribute__ ((format(printf, 2, 3))) |
641 | #endif | |
642 | ; | |
359784de VK |
643 | void LIBNXAGENT_EXPORTABLE AgentWriteDebugLog2(int level, const TCHAR *format, va_list args); |
644 | ||
645 | void LIBNXAGENT_EXPORTABLE AgentSendTrap(UINT32 dwEvent, const TCHAR *eventName, const char *pszFormat, ...); | |
646 | void LIBNXAGENT_EXPORTABLE AgentSendTrap2(UINT32 dwEvent, const TCHAR *eventName, int nCount, TCHAR **ppszArgList); | |
647 | ||
34b9a3e7 | 648 | bool LIBNXAGENT_EXPORTABLE AgentEnumerateSessions(EnumerationCallbackResult (* callback)(AbstractCommSession *, void *), void *data); |
6fbaa926 | 649 | AbstractCommSession LIBNXAGENT_EXPORTABLE *AgentFindServerSession(UINT64 serverId); |
359784de VK |
650 | |
651 | bool LIBNXAGENT_EXPORTABLE AgentSendFileToServer(void *session, UINT32 requestId, const TCHAR *file, long offset); | |
652 | ||
653 | bool LIBNXAGENT_EXPORTABLE AgentPushParameterData(const TCHAR *parameter, const TCHAR *value); | |
654 | bool LIBNXAGENT_EXPORTABLE AgentPushParameterDataInt32(const TCHAR *parameter, LONG value); | |
655 | bool LIBNXAGENT_EXPORTABLE AgentPushParameterDataUInt32(const TCHAR *parameter, UINT32 value); | |
656 | bool LIBNXAGENT_EXPORTABLE AgentPushParameterDataInt64(const TCHAR *parameter, INT64 value); | |
657 | bool LIBNXAGENT_EXPORTABLE AgentPushParameterDataUInt64(const TCHAR *parameter, QWORD value); | |
658 | bool LIBNXAGENT_EXPORTABLE AgentPushParameterDataDouble(const TCHAR *parameter, double value); | |
659 | ||
660 | CONDITION LIBNXAGENT_EXPORTABLE AgentGetShutdownCondition(); | |
661 | bool LIBNXAGENT_EXPORTABLE AgentSleepAndCheckForShutdown(UINT32 sleepTime); | |
359784de | 662 | const TCHAR LIBNXAGENT_EXPORTABLE *AgentGetDataDirectory(); |
23d3d35d | 663 | |
bb48198e | 664 | DB_HANDLE LIBNXAGENT_EXPORTABLE AgentGetLocalDatabaseHandle(); |
f1cfab13 | 665 | |
ac7a2e92 TD |
666 | TCHAR LIBNXAGENT_EXPORTABLE *ReadRegistryAsString(const TCHAR *attr, TCHAR *buffer = NULL, int bufSize = 0, const TCHAR *defaultValue = NULL); |
667 | INT32 LIBNXAGENT_EXPORTABLE ReadRegistryAsInt32(const TCHAR *attr, INT32 defaultValue); | |
668 | INT64 LIBNXAGENT_EXPORTABLE ReadRegistryAsInt64(const TCHAR *attr, INT64 defaultValue); | |
669 | bool LIBNXAGENT_EXPORTABLE WriteRegistry(const TCHAR *attr, const TCHAR *value); | |
f1cfab13 VK |
670 | bool LIBNXAGENT_EXPORTABLE WriteRegistry(const TCHAR *attr, INT32 value); |
671 | bool LIBNXAGENT_EXPORTABLE WriteRegistry(const TCHAR *attr, INT64 value); | |
ac7a2e92 | 672 | bool LIBNXAGENT_EXPORTABLE DeleteRegistryEntry(const TCHAR *attr); |
bb48198e | 673 | |
cbcaf8c8 | 674 | #endif /* _nms_agent_h_ */ |