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
|
------------------------------------------------------------------------------
-- XML/Ada - An XML suite for Ada95 --
-- --
-- Copyright (C) 2001-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. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- 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/>. --
-- --
------------------------------------------------------------------------------
with Unicode.Encodings; use Unicode.Encodings;
with Unicode.CES; use Unicode.CES;
package body Input_Sources is
-----------------
-- Prolog_Size --
-----------------
function Prolog_Size (From : Input_Source) return Natural is
begin
return From.Prolog_Size;
end Prolog_Size;
------------------
-- Set_Encoding --
------------------
procedure Set_Encoding
(Input : in out Input_Source;
Es : Unicode.CES.Encoding_Scheme) is
begin
-- Do not change the encoding if the previous one was detected from the
-- BOM. For instance, if we have detected UTF16-BE, we do not want an
-- "encoding='UTF-16'" declaration in the XML document to switch us to
-- UTF16-LE
if Input.Prolog_Size = 0 -- no BOM
or else Input.Es.Length /= Es.Length -- no the same encoding scheme
then
Input.Es := Es;
end if;
end Set_Encoding;
------------------
-- Get_Encoding --
------------------
function Get_Encoding (Input : Input_Source)
return Unicode.CES.Encoding_Scheme is
begin
return Input.Es;
end Get_Encoding;
-----------------------
-- Set_Character_Set --
-----------------------
procedure Set_Character_Set
(Input : in out Input_Source;
Cs : Unicode.CCS.Character_Set) is
begin
Input.Cs := Cs;
end Set_Character_Set;
-----------------------
-- Get_Character_Set --
-----------------------
function Get_Character_Set (Input : Input_Source)
return Unicode.CCS.Character_Set is
begin
return Input.Cs;
end Get_Character_Set;
-------------------
-- Set_System_Id --
-------------------
procedure Set_System_Id (Input : in out Input_Source; Id : Byte_Sequence) is
begin
Free (Input.System_Id);
Input.System_Id := new Byte_Sequence'(Id);
end Set_System_Id;
-------------------
-- Get_System_Id --
-------------------
function Get_System_Id (Input : Input_Source) return Byte_Sequence is
begin
if Input.System_Id = null then
return "";
else
return Input.System_Id.all;
end if;
end Get_System_Id;
-------------------
-- Set_Public_Id --
-------------------
procedure Set_Public_Id (Input : in out Input_Source; Id : Byte_Sequence) is
begin
Free (Input.Public_Id);
Input.Public_Id := new Byte_Sequence'(Id);
end Set_Public_Id;
-------------------
-- Get_Public_Id --
-------------------
function Get_Public_Id (Input : Input_Source) return Byte_Sequence is
begin
if Input.Public_Id = null then
return "";
else
return Input.Public_Id.all;
end if;
end Get_Public_Id;
-----------
-- Close --
-----------
procedure Close (Input : in out Input_Source) is
begin
Free (Input.Public_Id);
Free (Input.System_Id);
end Close;
-------------------------
-- Set_Stream_Encoding --
-------------------------
procedure Set_Stream_Encoding
(Input : in out Input_Sources.Input_Source'Class;
Encoding : String)
is
Encode : constant Unicode_Encoding := Get_By_Name (Encoding);
begin
Set_Encoding (Input, Encode.Encoding_Scheme);
Set_Character_Set (Input, Encode.Character_Set);
end Set_Stream_Encoding;
end Input_Sources;
|