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 434 435 436 437 438
|
with Ada.Text_IO; use Ada.Text_IO;
with Sax.Readers; use Sax.Readers;
with Sax.Exceptions; use Sax.Exceptions;
with Sax.Locators; use Sax.Locators;
with Sax.Attributes; use Sax.Attributes;
with Sax.Models; use Sax.Models;
with Unicode.CES; use Unicode.CES;
with Unicode; use Unicode;
with Sax.Encodings; use Sax.Encodings;
package body Debug_Readers is
----------------
-- Set_Silent --
----------------
procedure Set_Silent
(Handler : in out Debug_Reader; Silent : Boolean) is
begin
Handler.Silent := Silent;
end Set_Silent;
-------------
-- Warning --
-------------
procedure Warning
(Handler : in out Debug_Reader;
Except : Sax.Exceptions.Sax_Parse_Exception'Class)
is
pragma Warnings (Off, Handler);
begin
Put_Line ("Sax.Warning ("
& Get_Message (Except) & ", at "
& To_String (Get_Locator (Except)) & ')');
end Warning;
-----------
-- Error --
-----------
procedure Error
(Handler : in out Debug_Reader;
Except : Sax.Exceptions.Sax_Parse_Exception'Class)
is
pragma Warnings (Off, Handler);
begin
Put_Line ("Sax.Error ("
& Get_Message (Except) & ", at "
& To_String (Get_Locator (Except)) & ')');
end Error;
-----------------
-- Fatal_Error --
-----------------
procedure Fatal_Error
(Handler : in out Debug_Reader;
Except : Sax.Exceptions.Sax_Parse_Exception'Class) is
begin
Put_Line ("Sax.Fatal_Error (" & Get_Message (Except) & ')');
Fatal_Error (Reader (Handler), Except);
end Fatal_Error;
--------------------------
-- Set_Document_Locator --
--------------------------
procedure Set_Document_Locator
(Handler : in out Debug_Reader;
Loc : access Sax.Locators.Locator'Class) is
begin
if not Handler.Silent then
Put_Line ("Sax.Set_Document_Locator ()");
end if;
Handler.Locator := Locator_Access (Loc);
end Set_Document_Locator;
--------------------
-- Start_Document --
--------------------
procedure Start_Document (Handler : in out Debug_Reader) is
begin
if not Handler.Silent then
Put_Line ("Sax.Start_Document ()");
end if;
end Start_Document;
------------------
-- End_Document --
------------------
procedure End_Document (Handler : in out Debug_Reader) is
begin
if not Handler.Silent then
Put_Line ("Sax.End_Document ()");
end if;
end End_Document;
--------------------------
-- Start_Prefix_Mapping --
--------------------------
procedure Start_Prefix_Mapping
(Handler : in out Debug_Reader;
Prefix : Unicode.CES.Byte_Sequence;
URI : Unicode.CES.Byte_Sequence) is
begin
if not Handler.Silent then
Put_Line ("Sax.Start_Prefix_Mapping (" & Prefix & ", " & URI & ")");
end if;
end Start_Prefix_Mapping;
------------------------
-- End_Prefix_Mapping --
------------------------
procedure End_Prefix_Mapping
(Handler : in out Debug_Reader; Prefix : Unicode.CES.Byte_Sequence) is
begin
if not Handler.Silent then
Put_Line ("Sax.End_Prefix_Mapping (" & Prefix & ") at "
& To_String (Handler.Locator.all));
end if;
end End_Prefix_Mapping;
-------------------
-- Start_Element --
-------------------
procedure Start_Element
(Handler : in out Debug_Reader;
Namespace_URI : Unicode.CES.Byte_Sequence := "";
Local_Name : Unicode.CES.Byte_Sequence := "";
Qname : Unicode.CES.Byte_Sequence := "";
Atts : Sax.Attributes.Attributes'Class) is
begin
if not Handler.Silent then
Put ("Sax.Start_Element ("
& Namespace_URI & ", " & Local_Name & ", " & Qname);
for J in 0 .. Get_Length (Atts) - 1 loop
Put (", " & Get_Qname (Atts, J) & "='"
& Get_Value (Atts, J) & ''');
end loop;
Put_Line (") at " & To_String (Handler.Locator.all));
end if;
end Start_Element;
-----------------
-- End_Element --
-----------------
procedure End_Element
(Handler : in out Debug_Reader;
Namespace_URI : Unicode.CES.Byte_Sequence := "";
Local_Name : Unicode.CES.Byte_Sequence := "";
Qname : Unicode.CES.Byte_Sequence := "") is
begin
if not Handler.Silent then
Put_Line ("Sax.End_Element (" & Namespace_URI & ", "
& Local_Name & ", " & Qname & ") at "
& To_String (Handler.Locator.all));
end if;
end End_Element;
----------------
-- Characters --
----------------
procedure Characters
(Handler : in out Debug_Reader; Ch : Unicode.CES.Byte_Sequence) is
begin
if not Handler.Silent then
Put_Line ("Sax.Characters (" & Ch & ','
& Integer'Image (Ch'Length) & ") at "
& To_String (Handler.Locator.all));
end if;
end Characters;
--------------------------
-- Ignorable_Whitespace --
--------------------------
procedure Ignorable_Whitespace
(Handler : in out Debug_Reader; Ch : Unicode.CES.Byte_Sequence)
is
Index : Natural := Ch'First;
C : Unicode_Char;
begin
if not Handler.Silent then
Put ("Sax.Ignorable_Whitespace (");
while Index <= Ch'Last loop
Encoding.Read (Ch, Index, C);
Put (Unicode_Char'Image (C));
end loop;
Put_Line (','
& Integer'Image (Ch'Length) & ") at "
& To_String (Handler.Locator.all));
end if;
end Ignorable_Whitespace;
----------------------------
-- Processing_Instruction --
----------------------------
procedure Processing_Instruction
(Handler : in out Debug_Reader;
Target : Unicode.CES.Byte_Sequence;
Data : Unicode.CES.Byte_Sequence) is
begin
if not Handler.Silent then
Put_Line ("Sax.Processing instruction (" & Target & ", '" & Data
& "') at " & To_String (Handler.Locator.all));
end if;
end Processing_Instruction;
--------------------
-- Skipped_Entity --
--------------------
procedure Skipped_Entity
(Handler : in out Debug_Reader; Name : Unicode.CES.Byte_Sequence) is
begin
if not Handler.Silent then
Put_Line ("Sax.Skipped_Entity (" & Name & ") at "
& To_String (Handler.Locator.all));
end if;
end Skipped_Entity;
-------------
-- Comment --
-------------
procedure Comment
(Handler : in out Debug_Reader; Ch : Unicode.CES.Byte_Sequence) is
begin
if not Handler.Silent then
Put_Line ("Sax.Comment (" & Ch & ") at "
& To_String (Handler.Locator.all));
end if;
end Comment;
-----------------
-- Start_Cdata --
-----------------
procedure Start_Cdata (Handler : in out Debug_Reader) is
begin
if not Handler.Silent then
Put_Line ("Sax.Start_Cdata () at " & To_String (Handler.Locator.all));
end if;
end Start_Cdata;
---------------
-- End_Cdata --
---------------
procedure End_Cdata (Handler : in out Debug_Reader) is
begin
if not Handler.Silent then
Put_Line ("Sax.End_Cdata () at " & To_String (Handler.Locator.all));
end if;
end End_Cdata;
------------------
-- Start_Entity --
------------------
procedure Start_Entity
(Handler : in out Debug_Reader; Name : Unicode.CES.Byte_Sequence) is
begin
if not Handler.Silent then
Put_Line ("Sax.Start_Entity (" & Name & ") at "
& To_String (Handler.Locator.all));
end if;
end Start_Entity;
----------------
-- End_Entity --
----------------
procedure End_Entity
(Handler : in out Debug_Reader; Name : Unicode.CES.Byte_Sequence) is
begin
if not Handler.Silent then
Put_Line ("Sax.End_Entity (" & Name & ") at "
& To_String (Handler.Locator.all));
end if;
end End_Entity;
---------------
-- Start_DTD --
---------------
procedure Start_DTD
(Handler : in out Debug_Reader;
Name : Unicode.CES.Byte_Sequence;
Public_Id : Unicode.CES.Byte_Sequence := "";
System_Id : Unicode.CES.Byte_Sequence := "") is
begin
if not Handler.Silent then
Put_Line ("Sax.Start_DTD (" & Name
& ", " & Public_Id
& ", " & System_Id & ") at "
& To_String (Handler.Locator.all));
end if;
end Start_DTD;
-------------
-- End_DTD --
-------------
procedure End_DTD (Handler : in out Debug_Reader) is
begin
if not Handler.Silent then
Put_Line ("Sax.End_DTD () at " & To_String (Handler.Locator.all));
end if;
end End_DTD;
--------------------------
-- Internal_Entity_Decl --
--------------------------
procedure Internal_Entity_Decl
(Handler : in out Debug_Reader;
Name : Unicode.CES.Byte_Sequence;
Value : Unicode.CES.Byte_Sequence) is
begin
if not Handler.Silent then
Put_Line ("Sax.Internal_Entity_Decl ("
& Name & ", " & Value
& ") at " & To_String (Handler.Locator.all));
end if;
end Internal_Entity_Decl;
--------------------------
-- External_Entity_Decl --
--------------------------
procedure External_Entity_Decl
(Handler : in out Debug_Reader;
Name : Unicode.CES.Byte_Sequence;
Public_Id : Unicode.CES.Byte_Sequence;
System_Id : Unicode.CES.Byte_Sequence) is
begin
if not Handler.Silent then
Put_Line ("Sax.External_Entity_Decl ("
& Name & ", " & Public_Id
& ", " & System_Id
& ") at " & To_String (Handler.Locator.all));
end if;
end External_Entity_Decl;
--------------------------
-- Unparsed_Entity_Decl --
--------------------------
procedure Unparsed_Entity_Decl
(Handler : in out Debug_Reader;
Name : Unicode.CES.Byte_Sequence;
System_Id : Unicode.CES.Byte_Sequence;
Notation_Name : Unicode.CES.Byte_Sequence) is
begin
if not Handler.Silent then
Put_Line ("Sax.Unparsed_Entity_Decl ("
& Name & ", " & System_Id
& ", " & Notation_Name
& ") at " & To_String (Handler.Locator.all));
end if;
end Unparsed_Entity_Decl;
------------------
-- Element_Decl --
------------------
procedure Element_Decl
(Handler : in out Debug_Reader;
Name : Unicode.CES.Byte_Sequence;
Model : Element_Model_Ptr) is
begin
if not Handler.Silent then
Put_Line ("Sax.Element_Decl ("
& Name & ", " & To_String (Model.all)
& ") at " & To_String (Handler.Locator.all));
end if;
end Element_Decl;
-------------------
-- Notation_Decl --
-------------------
procedure Notation_Decl
(Handler : in out Debug_Reader;
Name : Unicode.CES.Byte_Sequence;
Public_Id : Unicode.CES.Byte_Sequence;
System_Id : Unicode.CES.Byte_Sequence) is
begin
if not Handler.Silent then
Put_Line ("Sax.Notation_Decl ("
& Name & ", " & Public_Id
& ", " & System_Id & ") at "
& To_String (Handler.Locator.all));
end if;
end Notation_Decl;
--------------------
-- Attribute_Decl --
--------------------
procedure Attribute_Decl
(Handler : in out Debug_Reader;
Ename : Unicode.CES.Byte_Sequence;
Aname : Unicode.CES.Byte_Sequence;
Typ : Attribute_Type;
Content : Element_Model_Ptr;
Value_Default : Sax.Attributes.Default_Declaration;
Value : Unicode.CES.Byte_Sequence) is
begin
if not Handler.Silent then
if Content /= null then
Put_Line ("Sax.Attribute_Decl ("
& Ename & ", " & Aname
& ", " & Attribute_Type'Image (Typ) & ", "
& To_String (Content.all) & ", "
& Default_Declaration'Image (Value_Default)
& ", " & Value & ")");
else
Put_Line ("Sax.Attribute_Decl ("
& Ename & ", " & Aname
& ", " & Attribute_Type'Image (Typ) & ", "
& Default_Declaration'Image (Value_Default)
& ", " & Value & ")");
end if;
end if;
end Attribute_Decl;
end Debug_Readers;
|