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
|
------------------------------------------------------------------------
-- --
-- McKae Software Utilities --
-- --
-- Copyright (C) 2005-2009 McKae Technologies --
-- --
-- The McKae software utilities are 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 2, or (at your option) any later version. McKae --
-- Software Utilities are distributed in the hope that they will be --
-- useful, but WITHOUT ANY WARRANTY; without even the implied --
-- warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. --
-- See the GNU General Public License for more details. You should --
-- have received a copy of the GNU General Public License distributed --
-- with DTraq; see file COPYING. If not, write to the Free Software --
-- Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, --
-- USA. --
-- --
-- As a special exception, if other files instantiate generics from --
-- this unit, or you link this unit with other files to produce an --
-- executable, this unit does not by itself cause the resulting --
-- executable to be covered by the GNU General Public License. This --
-- exception does not however invalidate any other reasons why the --
-- executable file might be covered by the GNU Public License. --
-- --
-- The McKae Software Utilities are maintained by McKae Technologies --
-- (http://www.mckae.com). --
------------------------------------------------------------------------
with Ada.Finalization;
with Ada.Text_IO;
use Ada.Text_IO;
with McKae.XML.EZ_Out.Generic_Medium;
package McKae.XML.EZ_Out.String_Stream is
-- A basic in-memory string-based XML document construction
-- utility. This is not intended to be a robust, full-function
-- memory buffering package.
---------------------------------------------------------------------------
-- This nested package provides a basic string-based buffering
-- capability. The purpose of the EZ_Out String_Stream package is
-- to provide a simple means of constructing an XML document in a
-- memory buffer. To do this, a memory buffering capability was
-- needed--there were three approaches:
--
-- o Locate and employ an existing memory buffering component,
-- modifying it as needed to provide the required Put and New_Line
-- functions
-- o Write a McKae component to do memory buffering and reference
-- it in this package.
-- o Embed a memory buffering capability within the String_Stream
-- package.
--
-- The first option was discarded not because there's anything
-- wrong with existing memory buffer components, but rather
-- because of questions about which one should be chosen, what are
-- its distribution and modification requirements, and so on. The
-- truth of the matter is that this approach is what a project
-- using EZ_Out for a project actually ought to do--take their
-- memory buffering capability, enhance it with Put and New_Line
-- functionality, and then instantiate EZ_Out.Generic_Medium with
-- it.
--
-- The second option was discarded because the focus of EZ_Out is
-- on XML document generation, not providing a general purpose
-- memory buffering component. While a limited capability one
-- could have been created, it would be over-specific to EZ_Out
-- and its (intentional) limitations would distract from its
-- intended use as an EZ_Out adjunct package.
--
-- This left the third option. By embedding the above-mentioned
-- limited capability memory buffering capability within
-- String_Stream, it's clearly associated as just an aspect of the
-- String_Stream implementation, as any relevant capabilities
-- are simply exported by the String_Stream package.
package String_Buffering is
-- There's little point in having a small buffer for building XML
-- documents, so the minimum size and expansion is 500 characters.
subtype Buffer_Size_Range is Positive range 500 .. Positive'Last;
type String_Buffer is limited private;
-- Copy the given string into the buffer, expanding it if needed.
procedure Put (F : in String_Buffer;
S : in String);
-- Insert a new line indicator into the buffer. However, in
-- this case do nothing, since this buffering package is being
-- instantiated for Continuous_Stream formatting.
procedure New_Line (F : in String_Buffer;
Spacing : in Ada.Text_IO.Positive_Count := 1);
-- Clear the buffer. Note that this does not free any allocated
-- resources.
procedure Clear (S : String_Buffer);
-- Free ressources in order to avoid memory leak
procedure Full_Clear (S : in out String_Buffer);
-- Return the current contents of the string buffer
function Get_String (S : String_Buffer) return String;
private
-- Handle to the buffer
type Buffer_Ptr is access all String;
-- String buffer self-access ("Rosen Trick");
type String_Self_Access (SB : access String_Buffer) is
limited null record;
-- String buffer type definition. By default, a newly created
-- string buffer is initialized to be empty.
Init_Size : constant := 5000;
type String_Buffer is new
Ada.Finalization.Limited_Controlled with record
Initial_Size : Buffer_Size_Range := Init_Size;
Expansion : Buffer_Size_Range := 5000;
Allocation : Buffer_Size_Range := Init_Size;
Size : Natural := 0;
Buff : Buffer_Ptr := new String (1 .. Init_Size);
Self : String_Self_Access (String_Buffer'Access);
end record;
-- Release the string buffer's resources when the buffer goes
-- out of scope
procedure Finalize (Object : in out String_Buffer);
end String_Buffering;
---------------------------------------------------------------------------
subtype Buffer_Size_Range is String_Buffering.Buffer_Size_Range;
subtype String_Buffer is String_Buffering.String_Buffer;
-- Clear the buffer. Note that this does not free any allocated
-- resources.
procedure Clear (S : String_Buffer)
renames String_Buffering.Clear;
-- Free ressources in order to avoid memory leak
procedure Full_Clear (S : in out String_Buffer)
renames String_Buffering.Full_Clear;
-- Return the current contents of the string buffer
function Get_String (S : String_Buffer) return String
renames String_Buffering.Get_String;
---------------------------------------------------------------------------
-- "Use" this XML_String_Buffer package for constructing an EZ_Out
-- XML document.
package XML_String_Buffer is new McKae.XML.EZ_Out.Generic_Medium
(Output_Medium => String_Buffering.String_Buffer,
Put => String_Buffering.Put,
New_Line => String_Buffering.New_Line,
Format => Continuous_Stream);
---------------------------------------------------------------------------
end McKae.XML.EZ_Out.String_Stream;
|