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
|
-------------------------------------------------------------------------------
-- --
-- GNADE : GNu Ada Database Environment --
-- --
-- Author : Juergen Pfeifer <juergen.pfeifer@gmx.net>
--
-- Copyright (C) 2000-2001 Juergen Pfeifer
-- --
-- GNADE is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT 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 GNAT; 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. --
-- --
-- GNADE is implemented to work with GNAT, the GNU Ada compiler. --
-- --
-------------------------------------------------------------------------------
with System.Address_To_Access_Conversions;
with Ada.Unchecked_Conversion;
with Ada.Unchecked_Deallocation;
package body GNU.DB.SQLCLI.Generic_Attr.Bitmap_Attribute is
function To_String (Object : Attribute_Value_Pair_Bitmap)
return String is
type Str_Pointer is access String;
procedure Append (X : in String);
procedure Free is new Ada.Unchecked_Deallocation (String,
Str_Pointer);
S : Str_Pointer;
F : Boolean := True;
procedure Append (X : in String) is
O : Str_Pointer;
begin
O := S;
S := new String'(O.all & X);
Free (O);
end Append;
pragma Inline (Append);
begin
S := new String'("{");
for I in E'Range loop
if Object.Value (I) then
if F then
Append (E'Image (I));
F := False;
else
Append ("," & E'Image (I));
end if;
end if;
end loop;
Append ("}");
declare Str : constant String := S.all;
begin
Free (S);
return Str;
end;
end To_String;
function GetAttr (Handle : Context;
Attribute : T;
Data : Aux;
MaxLength : SQLSMALLINT := 0;
ErrorCode : access SQLRETURN)
return Attribute_Value_Pair_Bitmap is
package P_SQLUI is new
System.Address_To_Access_Conversions (SQLUINTEGER);
use System;
use P_SQLUI;
function To_E is new Ada.Unchecked_Conversion (SQLUINTEGER,
E_Bitmap);
function H_To_NL (I : SQLUINTEGER) return SQLUINTEGER;
pragma Import ($CALLCONVENTION, H_To_NL, "htonl");
Value : aliased SQLUINTEGER;
Len : Base := Base (MaxLength);
begin
Get (Handle,
Attribute,
To_Integer (To_Address (Object_Pointer'(Value'Access))),
Len,
Data,
ErrorCode);
if Default_Bit_Order = High_Order_First then
Value := H_To_NL (Value);
end if;
return Attribute_Value_Pair_Bitmap'(Attribute => Attribute,
Value => To_E (Value));
end GetAttr;
procedure SetAttr (Handle : in Context;
AV_Pair : in Attribute_Value_Pair_Bitmap;
Data : in Aux;
ErrorCode : out SQLRETURN) is
use System;
function NL_To_H (I : SQLUINTEGER) return SQLUINTEGER;
pragma Import ($CALLCONVENTION, NL_To_H, "nltoh");
function To_UINT is new Ada.Unchecked_Conversion (E_Bitmap,
SQLUINTEGER);
function Cvt is new Ada.Unchecked_Conversion (SQLUINTEGER, SQLPOINTER);
Len : Base := SQL_IS_UINTEGER;
Val : aliased SQLUINTEGER;
begin
Val := To_UINT (AV_Pair.Value);
if Default_Bit_Order = High_Order_First then
Val := NL_To_H (Val);
end if;
Set (Handle, AV_Pair.Attribute,
Cvt (Val),
Len,
Data,
ErrorCode);
end SetAttr;
end GNU.DB.SQLCLI.Generic_Attr.Bitmap_Attribute;
|