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 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
|
/** @file
* VirtualBox - Logging.
*/
/*
* Copyright (C) 2006-2007 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
#ifndef ___VBox_log_h
#define ___VBox_log_h
/*
* Set the default loggroup.
*/
#ifndef LOG_GROUP
# define LOG_GROUP LOG_GROUP_DEFAULT
#endif
#include <iprt/log.h>
/** @defgroup grp_rt_vbox_log VirtualBox Logging
* @ingroup grp_rt_vbox
* @{
*/
/** PC port for debug output */
#define RTLOG_DEBUG_PORT 0x504
/**
* VirtualBox Logging Groups.
* (Remember to update LOGGROUP_NAMES!)
*
* @remark It should be pretty obvious, but just to have
* mentioned it, the values are sorted alphabetically (using the
* english alphabet) except for _DEFAULT which is always first.
*
* If anyone might be wondering what the alphabet looks like:
* A B C D E F G H I J K L M N O P Q R S T U V W X Y Z _
*/
typedef enum LOGGROUP
{
/** The default VBox group. */
LOG_GROUP_DEFAULT = RTLOGGROUP_FIRST_USER,
/** CFGM group. */
LOG_GROUP_CFGM,
/** CPUM group. */
LOG_GROUP_CPUM,
/** CSAM group. */
LOG_GROUP_CSAM,
/** Debug Console group. */
LOG_GROUP_DBGC,
/** DBGF group. */
LOG_GROUP_DBGF,
/** DBGF info group. */
LOG_GROUP_DBGF_INFO,
/** The debugger gui. */
LOG_GROUP_DBGG,
/** Generic Device group. */
LOG_GROUP_DEV,
/** ACPI Device group. */
LOG_GROUP_DEV_ACPI,
/** AHCI Device group. */
LOG_GROUP_DEV_AHCI,
/** APIC Device group. */
LOG_GROUP_DEV_APIC,
/** Audio Device group. */
LOG_GROUP_DEV_AUDIO,
/** DMA Controller group. */
LOG_GROUP_DEV_DMA,
/** Gigabit Ethernet Device group. */
LOG_GROUP_DEV_E1000,
/** Floppy Controller Device group. */
LOG_GROUP_DEV_FDC,
/** IDE Device group. */
LOG_GROUP_DEV_IDE,
/** The internal networking IP stack Device group. */
LOG_GROUP_DEV_INIP,
/** KeyBoard Controller Device group. */
LOG_GROUP_DEV_KBD,
/** NE2000 Device group. */
LOG_GROUP_DEV_NE2000,
/** Parallel Device group */
LOG_GROUP_DEV_PARALLEL,
/** PC Device group. */
LOG_GROUP_DEV_PC,
/** PC Architecture Device group. */
LOG_GROUP_DEV_PC_ARCH,
/** PC BIOS Device group. */
LOG_GROUP_DEV_PC_BIOS,
/** PCI Device group. */
LOG_GROUP_DEV_PCI,
/** PCNet Device group. */
LOG_GROUP_DEV_PCNET,
/** PIC Device group. */
LOG_GROUP_DEV_PIC,
/** PIT Device group. */
LOG_GROUP_DEV_PIT,
/** RTC Device group. */
LOG_GROUP_DEV_RTC,
/** Serial Device group */
LOG_GROUP_DEV_SERIAL,
/** USB Device group. */
LOG_GROUP_DEV_USB,
/** VGA Device group. */
LOG_GROUP_DEV_VGA,
/** VMM Device group. */
LOG_GROUP_DEV_VMM,
/** VMM Device group for backdoor logging. */
LOG_GROUP_DEV_VMM_BACKDOOR,
/** VMM Device group for logging guest backdoor logging to stderr. */
LOG_GROUP_DEV_VMM_STDERR,
/** Disassembler group. */
LOG_GROUP_DIS,
/** Generic driver group. */
LOG_GROUP_DRV,
/** ACPI driver group */
LOG_GROUP_DRV_ACPI,
/** Block driver group. */
LOG_GROUP_DRV_BLOCK,
/** Char driver group. */
LOG_GROUP_DRV_CHAR,
/** Floppy media driver group. */
LOG_GROUP_DRV_FLOPPY,
/** Host Base block driver group. */
LOG_GROUP_DRV_HOST_BASE,
/** Host DVD block driver group. */
LOG_GROUP_DRV_HOST_DVD,
/** Host floppy block driver group. */
LOG_GROUP_DRV_HOST_FLOPPY,
/** Host Parallel Driver group */
LOG_GROUP_DRV_HOST_PARALLEL,
/** Host Serial Driver Group */
LOG_GROUP_DRV_HOST_SERIAL,
/** The internal networking transport driver group. */
LOG_GROUP_DRV_INTNET,
/** iSCSI Initiator driver group. */
LOG_GROUP_DRV_ISCSI,
/** iSCSI TCP transport driver group. */
LOG_GROUP_DRV_ISCSI_TRANSPORT_TCP,
/** ISO (CD/DVD) media driver group. */
LOG_GROUP_DRV_ISO,
/** Keyboard Queue driver group. */
LOG_GROUP_DRV_KBD_QUEUE,
/** lwIP IP stack driver group. */
LOG_GROUP_DRV_LWIP,
/** Mouse Queue driver group. */
LOG_GROUP_DRV_MOUSE_QUEUE,
/** Named Pipe stream driver group. */
LOG_GROUP_DRV_NAMEDPIPE,
/** NAT network transport driver group */
LOG_GROUP_DRV_NAT,
/** Raw image driver group */
LOG_GROUP_DRV_RAW_IMAGE,
/** Async transport driver group */
LOG_GROUP_DRV_TRANSPORT_ASYNC,
/** TUN network transport driver group */
LOG_GROUP_DRV_TUN,
/** USB Proxy driver group. */
LOG_GROUP_DRV_USBPROXY,
/** VBoxHDD media driver group. */
LOG_GROUP_DRV_VBOXHDD,
/** VBox HDD container media driver group. */
LOG_GROUP_DRV_VD,
/** Virtual Switch transport driver group */
LOG_GROUP_DRV_VSWITCH,
/** VUSB driver group */
LOG_GROUP_DRV_VUSB,
/** EM group. */
LOG_GROUP_EM,
/** GMM group. */
LOG_GROUP_GMM,
/** GUI group. */
LOG_GROUP_GUI,
/** GVMM group. */
LOG_GROUP_GVMM,
/** HGCM group */
LOG_GROUP_HGCM,
/** HWACCM group. */
LOG_GROUP_HWACCM,
/** IOM group. */
LOG_GROUP_IOM,
/** XPCOM IPC group. */
LOG_GROUP_IPC,
/** Main group. */
LOG_GROUP_MAIN,
/** Misc. group intended for external use only. */
LOG_GROUP_MISC,
/** MM group. */
LOG_GROUP_MM,
/** MM group. */
LOG_GROUP_MM_HEAP,
/** MM group. */
LOG_GROUP_MM_HYPER,
/** MM Hypervisor Heap group. */
LOG_GROUP_MM_HYPER_HEAP,
/** MM Physical/Ram group. */
LOG_GROUP_MM_PHYS,
/** MM Page pool group. */
LOG_GROUP_MM_POOL,
/** PATM group. */
LOG_GROUP_PATM,
/** PDM group. */
LOG_GROUP_PDM,
/** PDM Async completion group. */
LOG_GROUP_PDM_ASYNC_COMPLETION,
/** PDM Device group. */
LOG_GROUP_PDM_DEVICE,
/** PDM Driver group. */
LOG_GROUP_PDM_DRIVER,
/** PDM Loader group. */
LOG_GROUP_PDM_LDR,
/** PDM Loader group. */
LOG_GROUP_PDM_QUEUE,
/** PGM group. */
LOG_GROUP_PGM,
/** PGMCACHE group. */
LOG_GROUP_PGMCACHE,
/** PGM physical group. */
LOG_GROUP_PGM_PHYS,
/** PGM physical access group. */
LOG_GROUP_PGM_PHYS_ACCESS,
/** PGM shadow page pool group. */
LOG_GROUP_PGM_POOL,
/** REM group. */
LOG_GROUP_REM,
/** REM disassembly handler group. */
LOG_GROUP_REM_DISAS,
/** REM access handler group. */
LOG_GROUP_REM_HANDLER,
/** REM I/O port access group. */
LOG_GROUP_REM_IOPORT,
/** REM MMIO access group. */
LOG_GROUP_REM_MMIO,
/** REM Printf. */
LOG_GROUP_REM_PRINTF,
/** REM running group. */
LOG_GROUP_REM_RUN,
/** SELM group. */
LOG_GROUP_SELM,
/** Shared folders host service group. */
LOG_GROUP_SHARED_FOLDERS,
/** OpenGL host service group. */
LOG_GROUP_SHARED_OPENGL,
/** The internal networking service group. */
LOG_GROUP_SRV_INTNET,
/** SSM group. */
LOG_GROUP_SSM,
/** STAM group. */
LOG_GROUP_STAM,
/** SUP group. */
LOG_GROUP_SUP,
/** TM group. */
LOG_GROUP_TM,
/** TRPM group. */
LOG_GROUP_TRPM,
/** Generic virtual disk layer. */
LOG_GROUP_VD,
/** Raw virtual disk backend. */
LOG_GROUP_VD_RAW,
/** VDI virtual disk backend. */
LOG_GROUP_VD_VDI,
/** VHD virtual disk backend. */
LOG_GROUP_VD_VHD,
/** VMDK virtual disk backend. */
LOG_GROUP_VD_VMDK,
/** VM group. */
LOG_GROUP_VM,
/** VMM group. */
LOG_GROUP_VMM,
/** VRDP group */
LOG_GROUP_VRDP
/* !!!ALPHABETICALLY!!! */
} VBOX_LOGGROUP;
/** @def VBOX_LOGGROUP_NAMES
* VirtualBox Logging group names.
*
* Must correspond 100% to LOGGROUP!
* Don't forget commas!
*
* @remark It should be pretty obvious, but just to have
* mentioned it, the values are sorted alphabetically (using the
* english alphabet) except for _DEFAULT which is always first.
*
* If anyone might be wondering what the alphabet looks like:
* a b c d e f g h i j k l m n o p q r s t u v w x y z
*/
#define VBOX_LOGGROUP_NAMES \
{ \
RT_LOGGROUP_NAMES, \
"DEFAULT", \
"CFGM", \
"CPUM", \
"CSAM", \
"DBGC", \
"DBGF", \
"DBGF_INFO", \
"DBGG", \
"DEV", \
"DEV_ACPI", \
"DEV_AHCI", \
"DEV_APIC", \
"DEV_AUDIO", \
"DEV_DMA", \
"DEV_E1000", \
"DEV_FDC", \
"DEV_IDE", \
"DEV_INIP", \
"DEV_KBD", \
"DEV_NE2000", \
"DEV_PARALLEL", \
"DEV_PC", \
"DEV_PC_ARCH", \
"DEV_PC_BIOS", \
"DEV_PCI", \
"DEV_PCNET", \
"DEV_PIC", \
"DEV_PIT", \
"DEV_RTC", \
"DEV_SERIAL", \
"DEV_USB", \
"DEV_VGA", \
"DEV_VMM", \
"DEV_VMM_BACKDOOR", \
"DEV_VMM_STDERR",\
"DIS", \
"DRV", \
"DRV_ACPI", \
"DRV_BLOCK", \
"DRV_CHAR", \
"DRV_FLOPPY", \
"DRV_HOST_BASE", \
"DRV_HOST_DVD", \
"DRV_HOST_FLOPPY", \
"DRV_HOST_PARALLEL", \
"DRV_HOST_SERIAL", \
"DRV_INTNET", \
"DRV_ISCSI", \
"DRV_ISCSI_TRANSPORT_TCP", \
"DRV_ISO", \
"DRV_KBD_QUEUE", \
"DRV_LWIP", \
"DRV_MOUSE_QUEUE", \
"DRV_NAMEDPIPE", \
"DRV_NAT", \
"DRV_RAW_IMAGE", \
"DRV_TRANSPORT_ASYNC", \
"DRV_TUN", \
"DRV_USBPROXY", \
"DRV_VBOXHDD", \
"DRV_VD", \
"DRV_VSWITCH", \
"DRV_VUSB", \
"EM", \
"GMM", \
"GUI", \
"GVMM", \
"HGCM", \
"HWACCM", \
"IOM", \
"IPC", \
"MAIN", \
"MISC", \
"MM", \
"MM_HEAP", \
"MM_HYPER", \
"MM_HYPER_HEAP",\
"MM_PHYS", \
"MM_POOL", \
"PATM", \
"PDM", \
"PDM_ASYNC_COMPLETION", \
"PDM_DEVICE", \
"PDM_DRIVER", \
"PDM_LDR", \
"PDM_QUEUE", \
"PGM", \
"PGMCACHE", \
"PGM_PHYS", \
"PGM_PHYS_ACCESS",\
"PGM_POOL", \
"REM", \
"REM_DISAS", \
"REM_HANDLER", \
"REM_IOPORT", \
"REM_MMIO", \
"REM_PRINTF", \
"REM_RUN", \
"SELM", \
"SHARED_FOLDERS",\
"SHARED_OPENGL",\
"SRV_INTNET", \
"SSM", \
"STAM", \
"SUP", \
"TM", \
"TRPM", \
"VD", \
"VD_RAW", \
"VD_VDI", \
"VD_VHD", \
"VD_VMDK", \
"VM", \
"VMM", \
"VRDP", \
}
/** @} */
#endif
|