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
|
------------------------------------------------------------------------------
-- XML/Ada - An XML suite for Ada95 --
-- --
-- Copyright (C) 2010-2017, AdaCore --
-- --
-- This library is free software; you can redistribute it and/or modify it --
-- under terms of the GNU General Public License as published by the Free --
-- Software Foundation; either version 3, or (at your option) any later --
-- version. This library is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
------------------------------------------------------------------------------
pragma Ada_05;
with Ada.Text_IO; use Ada.Text_IO;
with Input_Sources.File; use Input_Sources.File;
with Input_Sources; use Input_Sources;
with Sax.Exceptions; use Sax.Exceptions;
with Sax.Readers; use Sax.Readers;
with Sax.Symbols; use Sax.Symbols;
with Sax.Utils; use Sax.Utils;
with Unicode.CES; use Unicode.CES;
procedure Cleanup_Schema is
type My_Reader is new Sax.Readers.Reader with record
In_Annotation : Natural := 0;
Omit_Schema_Node : Boolean := False;
-- If True, will not display the schema node
Open_Tag_Was_Closed : Boolean := True;
-- Whether the <open> tag of the current node was closed. This is so
-- that we can have empty nodes printed as <open/>.
end record;
overriding procedure Error
(Handler : in out My_Reader;
Except : Sax.Exceptions.Sax_Parse_Exception'Class) is null;
overriding procedure Start_Element
(Handler : in out My_Reader;
NS : Sax.Utils.XML_NS;
Local_Name : Sax.Symbols.Symbol;
Atts : Sax_Attribute_List);
overriding procedure End_Element
(Handler : in out My_Reader;
NS : Sax.Utils.XML_NS;
Local_Name : Sax.Symbols.Symbol);
overriding procedure Characters
(Handler : in out My_Reader;
Ch : Unicode.CES.Byte_Sequence);
overriding procedure Ignorable_Whitespace
(Handler : in out My_Reader;
Ch : Unicode.CES.Byte_Sequence) is null;
procedure Put_Prefix (P : Symbol);
-- Print "P:" if [P] is defined
----------------
-- Put_Prefix --
----------------
procedure Put_Prefix (P : Symbol) is
begin
if P /= No_Symbol and then P /= Empty_String then
Put (Get (P).all & ":");
end if;
end Put_Prefix;
-------------------
-- Start_Element --
-------------------
overriding procedure Start_Element
(Handler : in out My_Reader;
NS : Sax.Utils.XML_NS;
Local_Name : Sax.Symbols.Symbol;
Atts : Sax_Attribute_List)
is
Att_Length : constant Natural := Get_Length (Atts);
begin
if Handler.Omit_Schema_Node and then Local_Name = "schema" then
return;
end if;
if not Handler.Open_Tag_Was_Closed then
Put (">");
Handler.Open_Tag_Was_Closed := True;
end if;
if Local_Name = "annotation" then
Handler.In_Annotation := Handler.In_Annotation + 1;
end if;
if Local_Name = "include" then
Handler.In_Annotation := Handler.In_Annotation + 1;
for A in 1 .. Att_Length loop
if Get_Name (Atts, A).Local = "schemaLocation" then
declare
R : My_Reader;
Input2 : File_Input;
begin
R.Omit_Schema_Node := True;
Open (Get (Get_Value (Atts, A)).all, Input2);
Parse (R, Input2);
Close (Input2);
end;
end if;
end loop;
end if;
if Handler.In_Annotation /= 0 then
return;
end if;
Put ("<");
Put_Prefix (Get_Prefix (NS));
Put (Get (Local_Name).all);
Handler.Open_Tag_Was_Closed := False;
for A in 1 .. Att_Length loop
Put (" " & Get_Qname (Atts, A) & "='"
& Get (Get_Value (Atts, A)).all & "'");
end loop;
end Start_Element;
-----------------
-- End_Element --
-----------------
overriding procedure End_Element
(Handler : in out My_Reader;
NS : Sax.Utils.XML_NS;
Local_Name : Sax.Symbols.Symbol)
is
begin
if Handler.Omit_Schema_Node and then Local_Name = "schema" then
return;
end if;
if Local_Name = "annotation" or else Local_Name = "include" then
Handler.In_Annotation := Handler.In_Annotation - 1;
return;
end if;
if Handler.In_Annotation /= 0 then
return;
end if;
if not Handler.Open_Tag_Was_Closed then
Put ("/>");
Handler.Open_Tag_Was_Closed := True;
else
Put ("</");
Put_Prefix (Get_Prefix (NS));
Put (Get (Local_Name).all & ">");
end if;
end End_Element;
----------------
-- Characters --
----------------
overriding procedure Characters
(Handler : in out My_Reader;
Ch : Unicode.CES.Byte_Sequence) is
begin
if Handler.In_Annotation /= 0 then
return;
end if;
if not Handler.Open_Tag_Was_Closed then
Put (">");
Handler.Open_Tag_Was_Closed := True;
end if;
Put (Ch);
end Characters;
Input : File_Input;
Reader : My_Reader;
begin
Set_Feature (Reader, Validation_Feature, False);
-- Include xmlns: attributes
Set_Feature (Reader, Namespace_Prefixes_Feature, True);
Put ("<?xml version='1.0'?>");
Open ("schema.xsd", Input);
Parse (Reader, Input);
Close (Input);
end Cleanup_Schema;
|