matreshka_league_21.0.0_0c8f4d47/source/xml/sax/matreshka-internals-xml-namespace_scopes.adb

  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
------------------------------------------------------------------------------
--                                                                          --
--                            Matreshka Project                             --
--                                                                          --
--                               XML Processor                              --
--                                                                          --
--                        Runtime Library Component                         --
--                                                                          --
------------------------------------------------------------------------------
--                                                                          --
-- Copyright © 2010-2013, Vadim Godunko <vgodunko@gmail.com>                --
-- All rights reserved.                                                     --
--                                                                          --
-- Redistribution and use in source and binary forms, with or without       --
-- modification, are permitted provided that the following conditions       --
-- are met:                                                                 --
--                                                                          --
--  * Redistributions of source code must retain the above copyright        --
--    notice, this list of conditions and the following disclaimer.         --
--                                                                          --
--  * Redistributions in binary form must reproduce the above copyright     --
--    notice, this list of conditions and the following disclaimer in the   --
--    documentation and/or other materials provided with the distribution.  --
--                                                                          --
--  * Neither the name of the Vadim Godunko, IE nor the names of its        --
--    contributors may be used to endorse or promote products derived from  --
--    this software without specific prior written permission.              --
--                                                                          --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS      --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT        --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR    --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT     --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,   --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR   --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF   --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING     --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS       --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.             --
--                                                                          --
------------------------------------------------------------------------------
--  $Revision: 3930 $ $Date: 2013-05-22 23:58:12 +0400 (Ср, 22 мая 2013) $
------------------------------------------------------------------------------
with Ada.Unchecked_Deallocation;

package body Matreshka.Internals.XML.Namespace_Scopes is

   procedure Free is
     new Ada.Unchecked_Deallocation (Mapping_Array, Mapping_Array_Access);

   procedure Free is
     new Ada.Unchecked_Deallocation (Scope_Array, Scope_Array_Access);

   ----------
   -- Bind --
   ----------

   procedure Bind
    (Self      : in out Namespace_Scope;
     Prefix    : Symbol_Identifier;
     Namespace : Symbol_Identifier)
   is
      Old_Scopes   : Scope_Array_Access;
      Old_Mappings : Mapping_Array_Access;

   begin
      if Self.Scopes (Self.Last).Count /= 0 then
         Self.Scopes (Self.Last).Count := Self.Scopes (Self.Last).Count - 1;
         Self.Last := Self.Last + 1;

         if Self.Last > Self.Scopes'Last then
            --  Reallocate scopes vector when necessary.

            Old_Scopes := Self.Scopes;
            Self.Scopes := new Scope_Array (1 .. Old_Scopes'Last + 8);
            Self.Scopes (Old_Scopes'Range) := Old_Scopes.all;
            Free (Old_Scopes);
         end if;

         Self.Scopes (Self.Last) :=
          (0,
           Self.Scopes (Self.Last - 1).Last + 1,
           Self.Scopes (Self.Last - 1).Last);
      end if;

      --  Sanity check: be sure that prefix is not mapped twice in the same
      --  scope.

      for J in Self.Scopes (Self.Last).First
                 .. Self.Scopes (Self.Last).Last
      loop
         if Self.Mappings (J).Prefix = Prefix then
            raise Program_Error;
         end if;
      end loop;

      Self.Scopes (Self.Last).Last := Self.Scopes (Self.Last).Last + 1;

      if Self.Scopes (Self.Last).Last > Self.Mappings'Last then
         --  Reallocate mappings vector when necessary.

         Old_Mappings := Self.Mappings;
         Self.Mappings := new Mapping_Array (1 .. Old_Mappings'Last + 8);
         Self.Mappings (Old_Mappings'Range) := Old_Mappings.all;
         Free (Old_Mappings);
      end if;

      Self.Mappings (Self.Scopes (Self.Last).Last) := (Prefix, Namespace);
   end Bind;

   --------------
   -- Finalize --
   --------------

   procedure Finalize (Self : in out Namespace_Scope) is
   begin
      Free (Self.Mappings);
      Free (Self.Scopes);
   end Finalize;

   ----------------
   -- Initialize --
   ----------------

   procedure Initialize (Self : in out Namespace_Scope) is
   begin
      Self.Mappings := new Mapping_Array (1 .. 8);
      Self.Mappings (1) := (Symbol_xml, Symbol_xml_NS);
      Self.Mappings (2) := (Symbol_xmlns, Symbol_xmlns_NS);
      Self.Scopes := new Scope_Array (1 .. 8);
      Self.Scopes (1) := (0, 1, 2);
      Self.Last := 1;
   end Initialize;

   ---------------
   -- Pop_Scope --
   ---------------

   procedure Pop_Scope
    (Self     : in out Namespace_Scope;
     On_Unmap : not null access procedure (Prefix : Symbol_Identifier)) is
   begin
      if Self.Scopes (Self.Last).Count /= 0 then
         Self.Scopes (Self.Last).Count := Self.Scopes (Self.Last).Count - 1;

      else
         for J
           in Self.Scopes (Self.Last).First .. Self.Scopes (Self.Last).Last
         loop
            On_Unmap (Self.Mappings (J).Prefix);
         end loop;

         Self.Last := Self.Last - 1;
      end if;
   end Pop_Scope;

   ----------------
   -- Push_Scope --
   ----------------

   procedure Push_Scope (Self : in out Namespace_Scope) is
   begin
      Self.Scopes (Self.Last).Count := Self.Scopes (Self.Last).Count + 1;
   end Push_Scope;

   -----------
   -- Reset --
   -----------

   procedure Reset (Self : in out Namespace_Scope) is
   begin
      Finalize (Self);
      Initialize (Self);
   end Reset;

   -------------
   -- Resolve --
   -------------

   function Resolve
    (Self   : Namespace_Scope;
     Prefix : Symbol_Identifier) return Symbol_Identifier is
   begin
      for J in reverse 1 .. Self.Scopes (Self.Last).Last loop
         if Self.Mappings (J).Prefix = Prefix then
            return Self.Mappings (J).Namespace;
         end if;
      end loop;

      return No_Symbol;
   end Resolve;

end Matreshka.Internals.XML.Namespace_Scopes;