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 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462
|
------------------------------------------------------------------------------
-- G N A T C O L L --
-- --
-- Copyright (C) 2005-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/>. --
-- --
------------------------------------------------------------------------------
with Ada.Calendar;
with Ada.Strings.Fixed; use Ada.Strings;
with Ada.Unchecked_Conversion;
with Ada.Unchecked_Deallocation;
with GNAT.Calendar;
with GNAT.Sockets; use GNAT.Sockets;
with GNAT.Strings; use GNAT.Strings;
with Interfaces.C.Strings; use Interfaces.C.Strings;
with GNATCOLL.SQL.Postgres.Gnade; use GNATCOLL.SQL.Postgres.Gnade;
with GNATCOLL.SQL.Exec_Private; use GNATCOLL.SQL.Exec_Private;
with GNATCOLL.Strings; use GNATCOLL.Strings;
with GNATCOLL.Traces; use GNATCOLL.Traces;
with GNATCOLL.Utils; use GNATCOLL.Utils;
package body GNATCOLL.SQL.Postgres.Builder is
Me_Query : constant Trace_Handle := Create ("SQL");
Use_Cursors : constant Boolean := False;
-- Whether to use "DECLARE name CURSOR ..." to use cursors for Forward
-- cursors. Although this might save some memory since we do not have to
-- have all results in memory, this is in fact *much* slower, so is
-- disabled for now. Possible improvements would be to fetch several rows
-- at once in the cursor, but even that does not seem to improve things too
-- much.
type Postgresql_DBMS_Stmt_Record is record
Cursor : GNATCOLL.Strings.XString;
-- Name of the associated cursor
end record;
type Postgresql_DBMS_Stmt is access all Postgresql_DBMS_Stmt_Record;
function Convert is new Ada.Unchecked_Conversion
(Postgresql_DBMS_Stmt, DBMS_Stmt);
function Convert is new Ada.Unchecked_Conversion
(DBMS_Stmt, Postgresql_DBMS_Stmt);
procedure Unchecked_Free is new Ada.Unchecked_Deallocation
(Postgresql_DBMS_Stmt_Record, Postgresql_DBMS_Stmt);
type Database_Access is access GNATCOLL.SQL.Postgres.Gnade.Database;
type Postgresql_Connection_Record is
new GNATCOLL.SQL.Exec.Database_Connection_Record with
record
Connection_String : GNAT.Strings.String_Access;
-- Should be a string, since it is also used as discriminant for
-- Postgres field below.
Postgres : Database_Access;
Cursor : Natural := 0;
-- Id for the current cursor
-- This is used to create the name of cursors for dbms statements,
-- when no name is provided by the user.
Connected_On : Ada.Calendar.Time := GNAT.Calendar.No_Time;
end record;
type Postgresql_Connection is access all Postgresql_Connection_Record'Class;
overriding procedure Close
(Connection : access Postgresql_Connection_Record);
overriding function Parameter_String
(Self : Postgresql_Connection_Record;
Index : Positive;
Type_Descr : String) return String;
overriding function Can_Alter_Table_Constraints
(Self : access Postgresql_Connection_Record) return Boolean;
overriding function Has_Pragmas
(Self : access Postgresql_Connection_Record) return Boolean;
overriding function Connect_And_Execute
(Connection : access Postgresql_Connection_Record;
Is_Select : Boolean;
Direct : Boolean;
Query : String := "";
Stmt : DBMS_Stmt := No_DBMS_Stmt;
Params : SQL_Parameters := No_Parameters)
return Abstract_Cursor_Access;
overriding function Connected_On
(Connection : access Postgresql_Connection_Record)
return Ada.Calendar.Time;
overriding function Connect_And_Prepare
(Connection : access Postgresql_Connection_Record;
Query : String;
Name : String;
Direct : Boolean)
return DBMS_Stmt;
overriding function Execute
(Connection : access Postgresql_Connection_Record;
Prepared : DBMS_Stmt;
Is_Select : Boolean;
Direct : Boolean;
Params : SQL_Parameters := No_Parameters)
return Abstract_Cursor_Access;
overriding procedure Force_Connect
(Connection : access Postgresql_Connection_Record);
overriding procedure Force_Disconnect
(Connection : access Postgresql_Connection_Record);
overriding function Insert_And_Get_PK
(Connection : access Postgresql_Connection_Record;
Query : String;
Params : SQL_Parameters := No_Parameters;
PK : SQL_Field_Integer) return Integer;
overriding function Insert_And_Get_PK
(Connection : access Postgresql_Connection_Record;
Stmt : Prepared_Statement'Class;
Params : SQL_Parameters := No_Parameters;
PK : SQL_Field_Integer) return Integer;
overriding function String_Image
(Self : Postgresql_Connection_Record; Value : String; Quote : Boolean)
return String;
overriding function Field_Type_Autoincrement
(Self : Postgresql_Connection_Record) return String;
overriding function Field_Type_Money
(Self : Postgresql_Connection_Record) return String;
overriding function Error
(Connection : access Postgresql_Connection_Record) return String;
overriding procedure Foreach_Table
(Connection : access Postgresql_Connection_Record;
Callback : access procedure
(Name, Description : String; Kind : Relation_Kind));
overriding procedure Foreach_Field
(Connection : access Postgresql_Connection_Record;
Table_Name : String;
Callback : access procedure
(Name : String;
Typ : String;
Index : Natural;
Description : String;
Default_Value : String;
Is_Primary_Key : Boolean;
Not_Null : Boolean));
overriding procedure Foreach_Foreign_Key
(Connection : access Postgresql_Connection_Record;
Table_Name : String;
Callback : access procedure
(Index : Positive;
Local_Attribute : Integer;
Foreign_Table : String;
Foreign_Attribute : Integer));
overriding procedure Finalize
(Connection : access Postgresql_Connection_Record;
Prepared : DBMS_Stmt);
-- Reset:
-- The prepared statement is "DECLARE ... CURSOR" so there is nothing to
-- reset. The cursor itself is created as part of the iteration
---------------
-- To_Native --
---------------
function To_Native
(Connection : Database_Connection) return access Gnade.Database'Class is
begin
return Postgresql_Connection_Record (Connection.all).Postgres;
end To_Native;
generic
type Base is abstract new DBMS_Forward_Cursor with private;
package Postgresql_Cursors is
type Cursor is abstract new Base with record
Res : GNATCOLL.SQL.Postgres.Gnade.Result;
Current : GNATCOLL.SQL.Postgres.Gnade.Tuple_Index := 0;
-- Always 0 for Forward_Cursor
end record;
overriding function Current (Self : Cursor) return Positive;
overriding function Error_Msg (Self : Cursor) return String;
overriding function Status (Self : Cursor) return String;
overriding function Is_Success (Self : Cursor) return Boolean;
overriding procedure Finalize (Self : in out Cursor);
overriding function Value
(Self : Cursor; Field : GNATCOLL.SQL.Exec.Field_Index) return String;
overriding function C_Value
(Self : Cursor; Field : GNATCOLL.SQL.Exec.Field_Index)
return chars_ptr;
overriding function Boolean_Value
(Self : Cursor; Field : GNATCOLL.SQL.Exec.Field_Index) return Boolean;
overriding function Is_Null
(Self : Cursor; Field : GNATCOLL.SQL.Exec.Field_Index) return Boolean;
overriding function Last_Id
(Self : Cursor;
Connection : access Database_Connection_Record'Class;
Field : SQL_Field_Integer) return Integer;
overriding function Field_Count
(Self : Cursor) return GNATCOLL.SQL.Exec.Field_Index;
overriding function Field_Name
(Self : Cursor; Field : GNATCOLL.SQL.Exec.Field_Index) return String;
end Postgresql_Cursors;
-- Build cursors using a Result internally for various information
------------------------
-- Postgresql_Cursors --
------------------------
package body Postgresql_Cursors is
overriding function Error_Msg (Self : Cursor) return String is
begin
return Error (Self.Res);
end Error_Msg;
overriding function Status (Self : Cursor) return String is
begin
return Status (Self.Res);
end Status;
overriding function Is_Success (Self : Cursor) return Boolean is
begin
return Status (Self.Res) = PGRES_TUPLES_OK
or else Status (Self.Res) = PGRES_COMMAND_OK;
end Is_Success;
overriding procedure Finalize (Self : in out Cursor) is
begin
Clear (Self.Res);
end Finalize;
overriding function Current (Self : Cursor) return Positive is
begin
return Integer (Self.Current) + 1;
end Current;
overriding function Value
(Self : Cursor;
Field : GNATCOLL.SQL.Exec.Field_Index) return String is
begin
return Value (Self.Res, Self.Current,
GNATCOLL.SQL.Postgres.Gnade.Field_Index (Field));
end Value;
overriding function C_Value
(Self : Cursor;
Field : GNATCOLL.SQL.Exec.Field_Index) return chars_ptr is
begin
return C_Value
(Self.Res, Self.Current,
GNATCOLL.SQL.Postgres.Gnade.Field_Index (Field));
end C_Value;
overriding function Boolean_Value
(Self : Cursor;
Field : GNATCOLL.SQL.Exec.Field_Index) return Boolean is
begin
return Boolean_Value
(Self.Res, Self.Current,
GNATCOLL.SQL.Postgres.Gnade.Field_Index (Field));
end Boolean_Value;
overriding function Is_Null
(Self : Cursor;
Field : GNATCOLL.SQL.Exec.Field_Index) return Boolean is
begin
return Is_Null
(Self.Res,
Self.Current,
GNATCOLL.SQL.Postgres.Gnade.Field_Index (Field));
end Is_Null;
overriding function Last_Id
(Self : Cursor;
Connection : access Database_Connection_Record'Class;
Field : SQL_Field_Integer) return Integer
is
pragma Unreferenced (Self);
Q : SQL_Query;
Res2 : Forward_Cursor;
begin
-- Do not depend on OIDs, since the table might not have them (by
-- default, recent versions of postgreSQL disable them. Instead, we
-- use the currval() function which returns the last value set for a
-- sequence within the current connection.
Q := SQL_Select
(Fields => From_String ("currval('" & Field.Table.all
& "_" & Field.Name.all & "_seq')"));
Res2.Fetch (Connection, Q);
if Has_Row (Res2) then
return Integer_Value (Res2, 0);
end if;
return -1;
end Last_Id;
overriding function Field_Count
(Self : Cursor) return GNATCOLL.SQL.Exec.Field_Index is
begin
return GNATCOLL.SQL.Exec.Field_Index (Field_Count (Self.Res));
end Field_Count;
overriding function Field_Name
(Self : Cursor;
Field : GNATCOLL.SQL.Exec.Field_Index) return String is
begin
return Field_Name
(Self.Res, GNATCOLL.SQL.Postgres.Gnade.Field_Index (Field));
end Field_Name;
end Postgresql_Cursors;
package Forward_Cursors is new Postgresql_Cursors (DBMS_Forward_Cursor);
type Postgresql_Cursor is new Forward_Cursors.Cursor with record
Stmt : Postgresql_DBMS_Stmt;
Must_Free_Stmt : Boolean := False;
Processed_Rows : Natural := 0;
Connection : Postgresql_Connection;
Nested_Transactions : Boolean := False;
Has_Row : Boolean := True;
end record;
type Postgresql_Cursor_Access is access all Postgresql_Cursor'Class;
overriding procedure Finalize (Self : in out Postgresql_Cursor);
overriding function Processed_Rows
(Self : Postgresql_Cursor) return Natural;
overriding function Has_Row
(Self : Postgresql_Cursor) return Boolean;
overriding procedure Next (Self : in out Postgresql_Cursor);
function Declare_Cursor
(Query : String; Stmt : Postgresql_DBMS_Stmt) return String;
-- SQL command to declare a cursor
package Direct_Cursors is new Postgresql_Cursors (DBMS_Direct_Cursor);
type Postgresql_Direct_Cursor is new Direct_Cursors.Cursor with record
Rows : Natural := 0;
end record;
type Postgresql_Direct_Cursor_Access
is access all Postgresql_Direct_Cursor'Class;
overriding function Processed_Rows
(Self : Postgresql_Direct_Cursor) return Natural;
overriding function Has_Row
(Self : Postgresql_Direct_Cursor) return Boolean;
overriding procedure Next (Self : in out Postgresql_Direct_Cursor);
overriding procedure First (Self : in out Postgresql_Direct_Cursor);
overriding procedure Last (Self : in out Postgresql_Direct_Cursor);
overriding procedure Absolute
(Self : in out Postgresql_Direct_Cursor; Row : Positive);
overriding procedure Relative
(Self : in out Postgresql_Direct_Cursor; Step : Integer);
procedure Unchecked_Free is new Ada.Unchecked_Deallocation
(GNATCOLL.SQL.Postgres.Gnade.Database, Database_Access);
function Table_Criteria
(Connection : access Postgresql_Connection_Record;
Table_Name : String) return String;
generic
with procedure Perform
(Res : out Result;
Query : String;
Stmt : DBMS_Stmt;
Params : SQL_Parameters := No_Parameters);
procedure Connect_And_Do
(Connection : access Postgresql_Connection_Record;
Query : String;
Stmt : DBMS_Stmt;
Res : out Result;
Success : out Boolean;
Params : SQL_Parameters := No_Parameters);
-- (Re)connect to the database if needed, and perform the action. If the
-- result of the action is successfull (as per exec status in Res), Success
-- is set to True and Res to the last result. Otherwise, Success is set to
-- False.
----------------------
-- Build_Connection --
----------------------
function Build_Connection
(Descr : access Postgres_Description'Class) return Database_Connection
is
begin
return new Postgresql_Connection_Record
(Descr, Always_Use_Transactions => False);
end Build_Connection;
-----------
-- Error --
-----------
function Error
(Connection : access Postgresql_Connection_Record) return String is
begin
if Connection.Postgres = null then
return "No connection to database";
else
return Error (Connection.Postgres.all);
end if;
end Error;
-----------
-- Close --
-----------
overriding procedure Close
(Connection : access Postgresql_Connection_Record) is
begin
-- Since we have a controlled type, we just have to deallocate memory to
-- deallocate memory allocated by postgres
if Connection /= null then
Unchecked_Free (Connection.Postgres);
end if;
end Close;
-------------------
-- Force_Connect --
-------------------
overriding procedure Force_Connect
(Connection : access Postgresql_Connection_Record)
is
begin
if Connection.Postgres = null then
Print_Warning
(Connection,
"Connecting to the database "
& Get_Connection_String (Get_Description (Connection), False));
if Connection.Connection_String = null then
Connection.Connection_String := new String'
(Get_Connection_String (Get_Description (Connection), True));
end if;
Connection.Postgres := new GNATCOLL.SQL.Postgres.Gnade.Database
(Connection.Connection_String);
Connection.Connected_On := Ada.Calendar.Clock;
else
Print_Warning
(Connection,
"Reconnecting to the database "
& Get_Connection_String (Get_Description (Connection), False));
Reset (Connection.Postgres.all);
Connection.Connected_On := Ada.Calendar.Clock;
end if;
end Force_Connect;
----------------------
-- Force_Disconnect --
----------------------
overriding procedure Force_Disconnect
(Connection : access Postgresql_Connection_Record)
is
Sock : Socket_Type;
function To_Socket is
new Ada.Unchecked_Conversion (Interfaces.C.int, Socket_Type);
begin
if Connection.Postgres = null then
Print_Warning
(Connection, "Can't disconnect null connection");
return;
end if;
Sock := To_Socket (Connection.Postgres.Socket);
if Sock = No_Socket then
Print_Warning (Connection, "Not connected");
else
-- Keep the socket descriptor valid, but ensure all reads will fail
Shutdown_Socket (Sock);
end if;
end Force_Disconnect;
--------------------
-- Connect_And_Do --
--------------------
procedure Connect_And_Do
(Connection : access Postgresql_Connection_Record;
Query : String;
Stmt : DBMS_Stmt;
Res : out Result;
Success : out Boolean;
Params : SQL_Parameters := No_Parameters)
is
Res_Status : ExecStatus;
First_Try : Integer;
begin
if Connection.Postgres /= null
and then Status (Connection.Postgres.all) = CONNECTION_OK
then
-- If the connection is already established, first try to send the
-- query directly, then try to reconnect if the connection was
-- not OK.
First_Try := 1;
else
-- If not connected, or the connection failed, go straight to the
-- second try, where we force a reconnection before sending the
-- query.
First_Try := 2;
end if;
for Try in First_Try .. 2 loop
Clear (Res);
-- Reconnect if needed
if Try = 2 then
Force_Connect (Connection);
end if;
Success := (Status (Connection.Postgres.all) = CONNECTION_OK);
-- If connection status is bad, and we just tried to reconnect,
-- report error now.
if Try = 2 then
if not Success then
declare
Err : constant String := Error (Connection);
Str : constant String := Get_Connection_String
(Get_Description (Connection), False);
begin
if Err /= "" then
Print_Error
(Connection, Err & " params=""" & Str & '"');
else
Print_Error
(Connection,
"Cannot connect to PostgreSQL database "
& " Params=""" & Str & '"');
end if;
end;
Close (Connection);
Connection.Postgres := null;
return;
end if;
end if;
-- Empty query: only check connection status
if Query = "" and then Stmt = No_DBMS_Stmt then
return;
end if;
-- Here if we have a presumed working connection
Perform (Res, Query, Stmt, Params);
Res_Status := Status (Res);
case Res_Status is
when PGRES_COMMAND_OK |
PGRES_TUPLES_OK |
PGRES_COPY_OUT |
PGRES_COPY_IN |
PGRES_COPY_BOTH =>
Success := True;
return;
when PGRES_NONFATAL_ERROR
| PGRES_FATAL_ERROR
| PGRES_EMPTY_QUERY =>
-- If the connection is still good, that just means the request
-- was invalid. Do not try to reconnect in this case, since
-- that would kill any transaction BEGIN..COMMIT we are in the
-- process of doing.
if Status (Connection.Postgres.all) = CONNECTION_OK then
Success := False;
return;
end if;
when others =>
null;
end case;
-- If this was the first attempt, then we'll now retry the connection
if Try = 1 then
Print_Warning
(Connection,
"Query failed with status " & Res_Status'Img);
Print_Warning
(Connection,
"DB status is " & Status (Connection.Postgres.all)'Img
& ", reconnecting");
end if;
end loop;
end Connect_And_Do;
--------------------
-- Declare_Cursor --
--------------------
function Declare_Cursor
(Query : String; Stmt : Postgresql_DBMS_Stmt) return String is
begin
return "DECLARE " & To_String (Stmt.Cursor)
& " SCROLL CURSOR FOR " & Query;
end Declare_Cursor;
------------------
-- Connected_On --
------------------
overriding function Connected_On
(Connection : access Postgresql_Connection_Record)
return Ada.Calendar.Time is
begin
return Connection.Connected_On;
end Connected_On;
-------------------------
-- Connect_And_Prepare --
-------------------------
overriding function Connect_And_Prepare
(Connection : access Postgresql_Connection_Record;
Query : String;
Name : String;
Direct : Boolean)
return DBMS_Stmt
is
P_Stmt : Postgresql_DBMS_Stmt;
procedure Perform
(Res : out Result;
Query : String;
Stmt : DBMS_Stmt;
Params : SQL_Parameters := No_Parameters);
-------------
-- Perform --
-------------
procedure Perform
(Res : out Result;
Query : String;
Stmt : DBMS_Stmt;
Params : SQL_Parameters := No_Parameters)
is
pragma Assert (Stmt = No_DBMS_Stmt);
CName : constant String := To_String (P_Stmt.Cursor);
begin
if Active (Me_Query) then
if Name /= "" then
Trace (Me_Query, "PQprepare(" & Name & ")");
else
Trace (Me_Query, "PQprepare(" & CName & ", " & Query & ")");
end if;
end if;
-- Older versions of PostgreSQL (prior to 8.0) do not have a specific
-- PQprepare(), so for compatibility we issue a PREPARE statement
-- instead.
if Active (Me_Query) then
Trace (Me_Query, "PREPARE " & CName & " AS " & Query);
end if;
Execute (Res, Connection.Postgres.all,
"PREPARE " & CName & " AS " & Query, Connection.all,
Params);
-- Prepare (Res, Connection.Postgres.all, CName, Query);
end Perform;
procedure Do_Perform is new Connect_And_Do (Perform);
Res : Result;
Success : Boolean;
Was_Started : Boolean;
pragma Unreferenced (Was_Started);
-- Start of processing for Connect_And_Prepare
begin
P_Stmt := new Postgresql_DBMS_Stmt_Record;
if Name /= "" then
P_Stmt.Cursor := To_XString ("cursor_" & Name);
else
Connection.Cursor := Connection.Cursor + 1; -- ??? Concurrency
P_Stmt.Cursor := To_XString
("cursor_" & Image (Connection.Cursor, 0));
end if;
if Direct or else not Use_Cursors then
Do_Perform (Connection,
Query, No_DBMS_Stmt, Res, Success);
else
Was_Started := Start_Transaction (Connection);
Do_Perform (Connection,
Declare_Cursor (Query, P_Stmt), No_DBMS_Stmt, Res, Success);
end if;
Clear (Res);
if Success then
return Convert (P_Stmt);
else
if Active (Me_Query) then
Trace (Me_Query, "PQprepared failed: " & Error (Connection));
end if;
Unchecked_Free (P_Stmt);
return No_DBMS_Stmt;
end if;
end Connect_And_Prepare;
-------------
-- Execute --
-------------
overriding function Execute
(Connection : access Postgresql_Connection_Record;
Prepared : DBMS_Stmt;
Is_Select : Boolean;
Direct : Boolean;
Params : SQL_Parameters := No_Parameters)
return Abstract_Cursor_Access
is
R : Postgresql_Cursor_Access;
DR : Postgresql_Direct_Cursor_Access;
Res : Result;
Stmt : constant Postgresql_DBMS_Stmt := Convert (Prepared);
Name : constant String := To_String (Stmt.Cursor);
begin
-- For a direct_cursor, this will execute the query. For a
-- forward_cursor this will declare the cursor on the DBMS
-- Trace (Me_Query, "PQexecPrepared(" & Name & ")");
Exec_Prepared
(Res, Connection.Postgres.all, Name, Connection.all, Params);
if Direct or not Use_Cursors then
DR := new Postgresql_Direct_Cursor;
DR.Res := Res;
if Is_Select then
DR.Rows := Natural (Tuple_Count (Res));
else
DR.Rows := Natural'(Command_Tuples (Res));
end if;
-- Extra trace that might be useful from time to time, but is often
-- just noise because GNATCOLL.SQL.Exec will already display the
-- result of the query.
-- Post_Execute_And_Log
-- (DR, Connection, "PQexecPrepared(" & Name & ")",
-- No_Prepared, Is_Select => Is_Select, Params => Params);
return Abstract_Cursor_Access (DR);
else
R := new Postgresql_Cursor;
R.Connection := Postgresql_Connection (Connection);
R.Res := Res;
R.Stmt := Stmt;
-- Post_Execute_And_Log
-- (R, Connection, "PQexecPrepared(" & Name & ")", No_Prepared,
-- Is_Select => Is_Select, Params => Params);
Next (R.all); -- Read first row
return Abstract_Cursor_Access (R);
end if;
end Execute;
-----------------------
-- Insert_And_Get_PK --
-----------------------
overriding function Insert_And_Get_PK
(Connection : access Postgresql_Connection_Record;
Query : String;
Params : SQL_Parameters := No_Parameters;
PK : SQL_Field_Integer) return Integer
is
R : Forward_Cursor;
Last : Natural := Query'Last;
begin
-- Make sure the command does not end with a semicolon
while Last >= Query'First
and then (Query (Last) = ' ' or else Query (Last) = ';')
loop
Last := Last - 1;
end loop;
R.Fetch (Connection,
Query (Query'First .. Last)
& " RETURNING " & PK.To_String (Connection.all),
Params);
if not Connection.Success or else Is_Null (R, 0) then
return -1;
else
return Integer_Value (R, 0);
end if;
end Insert_And_Get_PK;
-----------------------
-- Insert_And_Get_PK --
-----------------------
overriding function Insert_And_Get_PK
(Connection : access Postgresql_Connection_Record;
Stmt : Prepared_Statement'Class;
Params : SQL_Parameters := No_Parameters;
PK : SQL_Field_Integer) return Integer
is
Str : constant String := To_String (Connection, Stmt);
begin
-- We cannot use the prepared statement here, since we need to modify
-- it on the fly to add a " RETURNING " suffix
return Insert_And_Get_PK (Connection, Str, Params, PK);
end Insert_And_Get_PK;
-------------------------
-- Connect_And_Execute --
-------------------------
overriding function Connect_And_Execute
(Connection : access Postgresql_Connection_Record;
Is_Select : Boolean;
Direct : Boolean;
Query : String := "";
Stmt : DBMS_Stmt := No_DBMS_Stmt;
Params : SQL_Parameters := No_Parameters)
return Abstract_Cursor_Access
is
procedure Perform
(Res : out Result;
Query : String;
Stmt : DBMS_Stmt;
Params : SQL_Parameters := No_Parameters);
-------------
-- Perform --
-------------
procedure Perform
(Res : out Result;
Query : String;
Stmt : DBMS_Stmt;
Params : SQL_Parameters := No_Parameters) is
begin
if Stmt /= No_DBMS_Stmt then
Exec_Prepared (Res,
Connection.Postgres.all,
To_String (Convert (Stmt).Cursor),
Connection.all,
Params);
else
Execute (Res,
Connection.Postgres.all, Query, Connection.all, Params);
end if;
end Perform;
procedure Do_Perform is new Connect_And_Do (Perform);
DR : Postgresql_Direct_Cursor_Access;
R : Postgresql_Cursor_Access;
Success : Boolean;
Res : Result;
Create_Direct : constant Boolean :=
Direct
or else not Is_Select
or else not Use_Cursors
or else Query = ""
or else Stmt /= No_DBMS_Stmt;
-- Start of processing for Connect_And_Execute
begin
if Create_Direct then
DR := new Postgresql_Direct_Cursor;
else
R := new Postgresql_Cursor;
R.Connection := Postgresql_Connection (Connection);
end if;
if Create_Direct then
Do_Perform (Connection, Query, Stmt, Res, Success, Params);
else
R.Nested_Transactions := Start_Transaction (Connection);
R.Stmt := new Postgresql_DBMS_Stmt_Record;
R.Must_Free_Stmt := True;
Connection.Cursor := Connection.Cursor + 1; -- ??? Concurrency ?
R.Stmt.Cursor := To_XString ("stmt" & Image (Connection.Cursor, 0));
Do_Perform
(Connection,
Declare_Cursor (Query, R.Stmt),
No_DBMS_Stmt,
Res,
Success,
Params);
end if;
if Connection.Postgres = null then
return null;
end if;
if Create_Direct then
DR.Res := Res;
if Success and then Query /= "" then
if Is_Select then
DR.Rows := Natural (Tuple_Count (Res));
else
DR.Rows := Natural'(Command_Tuples (Res));
end if;
end if;
return Abstract_Cursor_Access (DR);
else
Next (R.all);
return Abstract_Cursor_Access (R);
end if;
end Connect_And_Execute;
--------------------
-- Processed_Rows --
--------------------
overriding function Processed_Rows
(Self : Postgresql_Direct_Cursor) return Natural is
begin
return Self.Rows;
end Processed_Rows;
--------------------
-- Processed_Rows --
--------------------
overriding function Processed_Rows
(Self : Postgresql_Cursor) return Natural is
begin
return Self.Processed_Rows;
end Processed_Rows;
-------------------
-- Foreach_Table --
-------------------
overriding procedure Foreach_Table
(Connection : access Postgresql_Connection_Record;
Callback : access procedure
(Name, Description : String; Kind : Relation_Kind))
is
R : Forward_Cursor;
begin
R.Fetch
(Connection,
"SELECT pg_namespace.nspname || '.' || pg_class.relname,"
& " pg_description.description, pg_class.relkind"
& " FROM pg_class"
& " LEFT JOIN pg_description on pg_description.objoid = pg_class.oid"
& " AND pg_description.objsubid = 0"
& " JOIN pg_namespace ON relnamespace = pg_namespace.oid"
& " AND pg_namespace.nspname NOT LIKE 'pg_%'"
& " AND pg_namespace.nspname <> 'information_schema'"
& " WHERE pg_class.relkind in ('r', 'v')"
& " ORDER BY pg_namespace.nspname, pg_class.relname");
while Has_Row (R) loop
Callback
(Name => Value (R, 0),
Description => Value (R, 1),
Kind => (if Value (R, 2) = "r" then Kind_Table
else Kind_View));
Next (R);
end loop;
end Foreach_Table;
--------------------
-- Table_Criteria --
--------------------
function Table_Criteria
(Connection : access Postgresql_Connection_Record;
Table_Name : String) return String
is
Dot_Idx : constant Natural := Fixed.Index (Table_Name, ".");
Class_Relname : constant String := " AND pg_class.relname='";
Simple_Cond : constant String := Class_Relname
& (if Dot_Idx = 0 then Table_Name
else Table_Name (Dot_Idx + 1 .. Table_Name'Last)) & ''';
Namespace : constant String :=
(if Dot_Idx = 0 then ""
else Table_Name (Table_Name'First .. Dot_Idx - 1));
R : Forward_Cursor;
begin
if Namespace = "" then
return Simple_Cond;
end if;
R.Fetch
(Connection,
"select oid from pg_namespace where nspname = '" & Namespace
& ''');
if not R.Has_Row then
return Class_Relname & Table_Name & ''';
end if;
return Simple_Cond
& " AND pg_class.relnamespace = " & R.Value (0);
end Table_Criteria;
-------------------
-- Foreach_Field --
-------------------
overriding procedure Foreach_Field
(Connection : access Postgresql_Connection_Record;
Table_Name : String;
Callback : access procedure
(Name : String;
Typ : String;
Index : Natural;
Description : String;
Default_Value : String;
Is_Primary_Key : Boolean;
Not_Null : Boolean))
is
R, R2 : Forward_Cursor;
procedure Process_Fields (PK : String);
-- Process all the strings. PK is a postgreSQL array representing the
-- list of primary keys
procedure Process_Fields (PK : String) is
Is_PK : Boolean;
Current : Integer;
Field : Positive;
Key : Integer;
begin
while Has_Row (R) loop
Field := 1;
Current := Integer_Value (R, 2);
begin
loop
Key := Integer'Value (Array_Field (PK, Field));
if Key = Current then
Is_PK := True;
exit;
end if;
Field := Field + 1;
end loop;
exception
when Constraint_Error =>
Is_PK := False; -- no more fields in primary key
end;
Callback
(Name => Value (R, 0),
Typ => Value (R, 1),
Index => Current,
Description => Value (R, 3),
Not_Null => Boolean_Value (R, 4),
Default_Value => Value (R, 5),
Is_Primary_Key => Is_PK);
Next (R);
end loop;
end Process_Fields;
Table_Cond : constant String :=
Table_Criteria (Connection, Table_Name);
begin
R2.Fetch
(Connection,
"SELECT pg_constraint.conkey" -- 1 attribute tuple
& " from pg_constraint,"
& " pg_class"
& " where conrelid=pg_class.oid" & Table_Cond
& " and pg_constraint.contype='p'");
R.Fetch
(Connection,
"SELECT pg_attribute.attname," -- 0 att name
& " pg_catalog.format_type(atttypid, atttypmod)," -- 1 att type
& " pg_attribute.attnum," -- 2 attribute index in table
& " pg_description.description," -- 3 field doc
& " pg_attribute.attnotnull," -- 4 not null ?
& " (SELECT substring"
& " (pg_catalog.pg_get_expr(d.adbin, d.adrelid) for 128)"
& " FROM pg_catalog.pg_attrdef d"
& " WHERE d.adrelid = pg_attribute.attrelid"
& " AND d.adnum = pg_attribute.attnum"
& " AND pg_attribute.atthasdef)" -- 5 default
& " FROM (pg_attribute left join pg_description"
& " on pg_description.objoid = pg_attribute.attrelid"
& " and pg_description.objsubid = pg_attribute.attnum),"
& " pg_type, pg_class"
& " WHERE atttypid = pg_type.OID"
& " AND pg_attribute.attnum > 0" & Table_Cond
& " AND pg_class.oid = pg_attribute.attrelid"
& " AND not pg_attribute.attisdropped"
& " ORDER BY pg_attribute.attname");
if R2.Has_Row then
Process_Fields (Value (R2, 0));
else
Process_Fields ("");
end if;
end Foreach_Field;
-------------------------
-- Foreach_Foreign_Key --
-------------------------
procedure Foreach_Foreign_Key
(Connection : access Postgresql_Connection_Record;
Table_Name : String;
Callback : access procedure
(Index : Positive;
Local_Attribute : Integer;
Foreign_Table : String;
Foreign_Attribute : Integer))
is
R : Forward_Cursor;
Index : Natural := 1;
begin
R.Fetch
(Connection,
"SELECT pg_constraint.contype," -- 0 constraint type ('f', 'p',...)
& " pg_constraint.conname," -- 1 constraint name
& " pg_class.relname," -- 2 class name
& " pg_constraint.conkey," -- 3 attribute tuple
& " pg_namespace.nspname ||"
& " '.' || pg_class2.relname," -- 4 foreign table if any
& " pg_constraint.confkey" -- 5 foreign attribute tuple
& " from pg_constraint join pg_class on conrelid = pg_class.oid"
& " left join pg_class pg_class2"
& " on pg_constraint.confrelid=pg_class2.oid"
& " left join pg_namespace"
& " on pg_class2.relnamespace = pg_namespace.oid"
& " where pg_constraint.contype='f'"
& Table_Criteria (Connection, Table_Name)
& " order by pg_constraint.conkey");
while Has_Row (R) loop
declare
Attr_Array : constant String := Value (R, 3);
Foreign : constant String := Value (R, 4);
Foreign_Attr : constant String := Value (R, 5);
Key1, Key2 : Integer;
Field : Positive := 1;
begin
loop
Key1 := Integer'Value (Array_Field (Attr_Array, Field));
Key2 := Integer'Value (Array_Field (Foreign_Attr, Field));
Callback
(Index => Index,
Local_Attribute => Key1,
Foreign_Table => Foreign,
Foreign_Attribute => Key2);
Field := Field + 1;
end loop;
exception
when Constraint_Error =>
-- no more fields in key tuples
null;
end;
Index := Index + 1;
Next (R);
end loop;
end Foreach_Foreign_Key;
-------------
-- Has_Row --
-------------
overriding function Has_Row
(Self : Postgresql_Direct_Cursor) return Boolean is
begin
return Self.Current < Tuple_Count (Self.Res);
end Has_Row;
-------------
-- Has_Row --
-------------
overriding function Has_Row
(Self : Postgresql_Cursor) return Boolean
is
begin
return Self.Has_Row;
end Has_Row;
----------
-- Next --
----------
overriding procedure Next (Self : in out Postgresql_Cursor) is
Count : constant Natural := 1;
Str : constant String :=
"FETCH" & Count'Img & " FROM " & To_String (Self.Stmt.Cursor);
begin
Execute (Self.Res, Self.Connection.Postgres.all, Str,
Self.Connection.all);
if Status (Self.Res) /= PGRES_TUPLES_OK then
Post_Execute_And_Log
(Self'Unrestricted_Access, Self.Connection, Str, Is_Select => True);
end if;
Self.Has_Row := Tuple_Count (Self.Res) /= 0;
if Self.Has_Row then
Self.Processed_Rows := Self.Processed_Rows + Count;
end if;
end Next;
----------
-- Next --
----------
overriding procedure Next (Self : in out Postgresql_Direct_Cursor) is
begin
Self.Current := Self.Current + 1;
end Next;
-----------
-- First --
-----------
overriding procedure First (Self : in out Postgresql_Direct_Cursor) is
begin
Self.Current := 0;
end First;
----------
-- Last --
----------
overriding procedure Last (Self : in out Postgresql_Direct_Cursor) is
begin
Self.Current := Tuple_Index (Self.Rows - 1);
end Last;
--------------
-- Absolute --
--------------
overriding procedure Absolute
(Self : in out Postgresql_Direct_Cursor; Row : Positive) is
begin
Self.Current := Tuple_Index (Row - 1);
end Absolute;
--------------
-- Relative --
--------------
overriding procedure Relative
(Self : in out Postgresql_Direct_Cursor; Step : Integer) is
begin
Self.Current := Tuple_Index
(Integer'Min
(Integer'Max (Integer (Self.Current) + Step, 0), Self.Rows - 1));
end Relative;
--------------
-- Finalize --
--------------
overriding procedure Finalize (Self : in out Postgresql_Cursor) is
Close : constant String := "CLOSE " & To_String (Self.Stmt.Cursor);
begin
Execute (Self.Res, Self.Connection.Postgres.all, Close,
Self.Connection.all);
Post_Execute_And_Log
(Self'Access, Self.Connection, Close, No_Prepared, False);
if Self.Nested_Transactions then
-- ??? What if something has started a transaction in between ?
Commit_Or_Rollback (Self.Connection);
end if;
if Self.Must_Free_Stmt then
Finalize (Self.Connection, Convert (Self.Stmt));
end if;
Forward_Cursors.Finalize (Forward_Cursors.Cursor (Self));
end Finalize;
--------------
-- Finalize --
--------------
overriding procedure Finalize
(Connection : access Postgresql_Connection_Record;
Prepared : DBMS_Stmt)
is
Stmt : Postgresql_DBMS_Stmt := Convert (Prepared);
Res : Result;
begin
if Stmt /= null then
declare
Str : constant String := "DEALLOCATE " & To_String (Stmt.Cursor);
begin
Execute (Res, Connection.Postgres.all, Str, Connection.all);
if Active (Me_Query) then
Trace (Me_Query, Str & " (" & Status (Res) & ")");
end if;
end;
Clear (Res);
Unchecked_Free (Stmt);
end if;
end Finalize;
----------------------
-- Parameter_String --
----------------------
overriding function Parameter_String
(Self : Postgresql_Connection_Record;
Index : Positive;
Type_Descr : String) return String
is
pragma Unreferenced (Self);
begin
if Type_Descr = "" then
return '$' & Image (Index, 0);
else
return '$' & Image (Index, 0) & "::" & Type_Descr;
end if;
end Parameter_String;
------------------------------
-- Field_Type_Autoincrement --
------------------------------
overriding function Field_Type_Autoincrement
(Self : Postgresql_Connection_Record) return String
is
pragma Unreferenced (Self);
begin
return "SERIAL PRIMARY KEY";
end Field_Type_Autoincrement;
------------------------------
-- Field_Type_Money --
------------------------------
overriding function Field_Type_Money
(Self : Postgresql_Connection_Record) return String
is
pragma Unreferenced (Self);
begin
return "NUMERIC (" & K_Digits'Img & "," & K_Decimals'Img & ")";
end Field_Type_Money;
------------------
-- String_Image --
------------------
overriding function String_Image
(Self : Postgresql_Connection_Record; Value : String; Quote : Boolean)
return String
is
pragma Unreferenced (Self);
Num_Of_Apostrophes : constant Natural :=
Ada.Strings.Fixed.Count (Value, "'");
Num_Of_Backslashes : constant Natural :=
Ada.Strings.Fixed.Count (Value, "\");
New_Str : String
(Value'First .. Value'Last + Num_Of_Apostrophes + Num_Of_Backslashes);
Index : Natural := Value'First;
Prepend_E : Boolean := False;
begin
if not Quote then
return Value;
end if;
if Num_Of_Apostrophes = 0
and then Num_Of_Backslashes = 0
then
return "'" & Value & "'";
end if;
for I in Value'Range loop
if Value (I) = ''' then
New_Str (Index .. Index + 1) := "''";
Index := Index + 1;
elsif Value (I) = '\' then
New_Str (Index .. Index + 1) := "\\";
Prepend_E := True;
Index := Index + 1;
else
New_Str (Index) := Value (I);
end if;
Index := Index + 1;
end loop;
if Prepend_E then
return "E'" & New_Str & "'";
else
return "'" & New_Str & "'";
end if;
end String_Image;
---------------------------------
-- Can_Alter_Table_Constraints --
---------------------------------
overriding function Can_Alter_Table_Constraints
(Self : access Postgresql_Connection_Record) return Boolean
is
pragma Unreferenced (Self);
begin
return True;
end Can_Alter_Table_Constraints;
-----------------
-- Has_Pragmas --
-----------------
overriding function Has_Pragmas
(Self : access Postgresql_Connection_Record) return Boolean
is
pragma Unreferenced (Self);
begin
return False;
end Has_Pragmas;
end GNATCOLL.SQL.Postgres.Builder;
|