]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - EdkModulePkg/Library/EdkUefiDebugLibStdErr/DebugLib.c
1. adjust contents layout of SPD header editor, FPD header editor.
[mirror_edk2.git] / EdkModulePkg / Library / EdkUefiDebugLibStdErr / DebugLib.c
... / ...
CommitLineData
1/** @file\r
2 UEFI Debug Library that uses PrintLib to send messages to STDERR.\r
3\r
4 Copyright (c) 2006, Intel Corporation<BR>\r
5 All rights reserved. This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15//\r
16// Define the maximum debug and assert message length that this library supports. \r
17//\r
18#define MAX_DEBUG_MESSAGE_LENGTH 0x100\r
19\r
20STATIC BOOLEAN mDebugLevelInstalled = FALSE;\r
21STATIC EFI_DEBUG_LEVEL_PROTOCOL mDebugLevel = { 0 };\r
22\r
23/**\r
24 Installs Debug Level Protocol.\r
25 \r
26 The constructor function installs Debug Level Protocol on the ImageHandle.\r
27 It will ASSERT() if the installation fails and will always return EFI_SUCCESS. \r
28\r
29 @param ImageHandle The firmware allocated handle for the EFI image.\r
30 @param SystemTable A pointer to the EFI System Table.\r
31 \r
32 @retval EFI_SUCCESS The constructor always returns EFI_SUCCESS.\r
33\r
34**/\r
35EFI_STATUS\r
36EFIAPI\r
37DebugLibConstructor (\r
38 IN EFI_HANDLE ImageHandle,\r
39 IN EFI_SYSTEM_TABLE *SystemTable\r
40 )\r
41{\r
42 EFI_STATUS Status;\r
43\r
44 //\r
45 // Initialize Debug Level Protocol.\r
46 //\r
47 mDebugLevel.DebugLevel = PcdGet32(PcdDebugPrintErrorLevel);\r
48\r
49 //\r
50 // Install Debug Level Protocol. \r
51 //\r
52 Status = gBS->InstallMultipleProtocolInterfaces (\r
53 &ImageHandle,\r
54 &gEfiDebugLevelProtocolGuid,\r
55 &mDebugLevel,\r
56 NULL\r
57 );\r
58 ASSERT_EFI_ERROR (Status);\r
59\r
60 //\r
61 // Set flag to show that the Debug Level Protocol has been installed.\r
62 //\r
63 mDebugLevelInstalled = TRUE;\r
64\r
65 return Status;\r
66}\r
67\r
68/**\r
69\r
70 Prints a debug message to the debug output device if the specified error level is enabled.\r
71\r
72 If any bit in ErrorLevel is also set in PcdDebugPrintErrorLevel, then print \r
73 the message specified by Format and the associated variable argument list to \r
74 the debug output device.\r
75\r
76 If Format is NULL, then ASSERT().\r
77\r
78 @param ErrorLevel The error level of the debug message.\r
79 @param Format Format string for the debug message to print.\r
80\r
81**/\r
82VOID\r
83EFIAPI\r
84DebugPrint (\r
85 IN UINTN ErrorLevel,\r
86 IN CONST CHAR8 *Format,\r
87 ...\r
88 )\r
89{\r
90 CHAR16 Buffer[MAX_DEBUG_MESSAGE_LENGTH];\r
91 VA_LIST Marker;\r
92\r
93 //\r
94 // If Format is NULL, then ASSERT().\r
95 //\r
96 ASSERT (Format != NULL);\r
97\r
98 //\r
99 // Check driver Debug Level value and global debug level\r
100 //\r
101 if (mDebugLevelInstalled) {\r
102 if ((ErrorLevel & mDebugLevel.DebugLevel) == 0) {\r
103 return;\r
104 }\r
105 } else {\r
106 if ((ErrorLevel & PcdGet32(PcdDebugPrintErrorLevel)) == 0) {\r
107 return;\r
108 }\r
109 }\r
110\r
111 //\r
112 // Convert the DEBUG() message to a Unicode String\r
113 //\r
114 VA_START (Marker, Format);\r
115 UnicodeVSPrintAsciiFormat (Buffer, sizeof (Buffer), Format, Marker);\r
116 VA_END (Marker);\r
117\r
118 //\r
119 // Send the print string to the Standard Error device if STDERR is available.\r
120 //\r
121 if (gST->StdErr != NULL) {\r
122 gST->StdErr->OutputString (gST->StdErr, Buffer);\r
123 }\r
124}\r
125\r
126\r
127/**\r
128\r
129 Prints an assert message containing a filename, line number, and description. \r
130 This may be followed by a breakpoint or a dead loop.\r
131\r
132 Print a message of the form "ASSERT <FileName>(<LineNumber>): <Description>\n" \r
133 to the debug output device. If DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED bit of \r
134 PcdDebugProperyMask is set then CpuBreakpoint() is called. Otherwise, if \r
135 DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED bit of PcdDebugProperyMask is set then \r
136 CpuDeadLoop() is called. If neither of these bits are set, then this function \r
137 returns immediately after the message is printed to the debug output device.\r
138 DebugAssert() must actively prevent recusrsion. If DebugAssert() is called while\r
139 processing another DebugAssert(), then DebugAssert() must return immediately.\r
140\r
141 If FileName is NULL, then a <FileName> string of "(NULL) Filename" is printed.\r
142\r
143 If Description is NULL, then a <Description> string of "(NULL) Description" is printed.\r
144\r
145 @param FileName Pointer to the name of the source file that generated the assert condition.\r
146 @param LineNumber The line number in the source file that generated the assert condition\r
147 @param Description Pointer to the description of the assert condition.\r
148\r
149**/\r
150VOID\r
151EFIAPI\r
152DebugAssert (\r
153 IN CONST CHAR8 *FileName,\r
154 IN UINTN LineNumber,\r
155 IN CONST CHAR8 *Description\r
156 )\r
157{\r
158 CHAR16 Buffer[MAX_DEBUG_MESSAGE_LENGTH];\r
159\r
160 //\r
161 // Generate the ASSERT() message in Unicode format\r
162 //\r
163 UnicodeSPrintAsciiFormat (Buffer, sizeof (Buffer), "ASSERT %s(%d): %s\n", FileName, LineNumber, Description);\r
164\r
165 //\r
166 // Send the print string to the Standard Error device if STDERR is available.\r
167 //\r
168 if (gST->StdErr != NULL) {\r
169 gST->StdErr->OutputString (gST->StdErr, Buffer);\r
170 }\r
171\r
172 //\r
173 // Generate a Breakpoint, DeadLoop, or NOP based on PCD settings\r
174 //\r
175 if ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED) != 0) {\r
176 CpuBreakpoint ();\r
177 } else if ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED) != 0) {\r
178 CpuDeadLoop ();\r
179 }\r
180}\r
181\r
182\r
183/**\r
184\r
185 Fills a target buffer with PcdDebugClearMemoryValue, and returns the target buffer.\r
186\r
187 This function fills Length bytes of Buffer with the value specified by \r
188 PcdDebugClearMemoryValue, and returns Buffer.\r
189\r
190 If Buffer is NULL, then ASSERT().\r
191\r
192