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
|
/*-----------------------------------------------------------------------
FILENAME:
pg_database.c
PURPOSE:
Provide the database I/F utilities - postgresql-specific.
REVISION HISTORY:
Date Engineer Revision Function
06/06/2005 M.S. Teel 0 Original
ASSUMPTIONS:
This is linked with libpq ...
LICENSE:
Copyright 2001-2005 Mark S. Teel. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. 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.
THIS SOFTWARE IS PROVIDED BY Mark Teel ``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 MARK TEEL 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.
------------------------------------------------------------------------*/
/* ... System include files
*/
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
/* ... Library include files
*/
#include <libpq-fe.h>
#include <radlist.h>
#include <radmsgLog.h>
#include <raddatabase.h>
/* ... Local include files
*/
#include "_pg-types.h"
/* ... global memory declarations
*/
/* ... global memory referenced
*/
/* ... static (local) memory declarations
*/
/* ... define the postgresql-specific work area we return as "DATABASE_ID"
*/
typedef struct
{
PGconn *dbConn;
RESULT_SET_ID resSet;
} *PGRESQL_ID;
/* ... methods
*/
static char errorString[512];
static char *printError (PGRESQL_ID id)
{
if (id != NULL)
{
sprintf (errorString, "error: %s",
PQerrorMessage (id->dbConn));
}
else
{
errorString[0] = 0;
}
return errorString;
}
static void freeRow (ROW_ID id)
{
FIELD_ID node;
for (node = (FIELD_ID) radListGetFirst (&id->fields);
node != NULL;
node = (FIELD_ID) radListGetFirst (&id->fields))
{
if ((node->type & FIELD_STRING) || (node->type & FIELD_DATETIME))
{
free (node->cvalue);
}
radListRemove (&id->fields, (NODE_PTR)node);
free (node);
}
free (id);
return;
}
static int processResults (PGRESQL_ID id, PGresult *set)
{
UINT row, col, numRows;
ROW_ID genRow;
FIELD_ID genField;
int fieldLength, fieldType;
char *fieldVal;
// get the number of rows returned
numRows = PQntuples (set);
for (row = 0; row < numRows; row ++)
{
/* ... get generic row memory
*/
genRow = (ROW_ID) malloc (sizeof (*genRow));
if (genRow == NULL)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseTableQuery: malloc failed!");
return ERROR;
}
memset (genRow, 0, sizeof (*genRow));
radListReset (&genRow->fields);
for (col = 0; col < PQnfields (set); col ++)
{
if (PQfformat (set, col) != 0)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseTableQuery: binary format returned!");
freeRow (genRow);
return ERROR;
}
fieldLength = PQgetlength (set, row, col);
fieldType = PQftype (set, col);
fieldVal = PQgetvalue (set, row, col);
/* ... create the generic field memory
*/
genField = (FIELD_ID) malloc (sizeof (*genField));
if (genField == NULL)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseTableQuery: malloc failed!");
raddatabaseRowDescriptionDelete (genRow);
return ERROR;
}
memset (genField, 0, sizeof (*genField));
strncpy (genField->name, PQfname (set, col), DB_FIELD_NAME_MAX);
if (PQgetisnull (set, row, col))
{
genField->type = FIELD_VALUE_IS_NULL;
if (fieldType == FIELD_TYPE_TINY ||
fieldType == FIELD_TYPE_SHORT ||
fieldType == FIELD_TYPE_INT)
{
genField->type |= FIELD_INT;
}
else if (fieldType == FIELD_TYPE_LONGLONG)
{
genField->type |= FIELD_BIGINT;
}
else if (fieldType == FIELD_TYPE_DATETIME)
{
genField->type |= FIELD_DATETIME;
}
else if (fieldType == FIELD_TYPE_FLOAT)
{
genField->type |= FIELD_FLOAT;
}
else if (fieldType == FIELD_TYPE_DOUBLE)
{
genField->type |= FIELD_DOUBLE;
}
else if (fieldType == FIELD_TYPE_STRING)
{
genField->type |= FIELD_STRING;
}
else
{
// this should happen on the first row of the result set,
// thus we can safely cleanup the current row only
radMsgLog(PRI_CATASTROPHIC, "raddatabaseTableQuery: results unknown field type");
free (genField);
freeRow (genRow);
return ERROR;
}
radListAddToEnd (&genRow->fields, (NODE_PTR)genField);
continue;
}
if (fieldType == FIELD_TYPE_TINY)
{
genField->type |= FIELD_INT;
genField->ivalue = atoi (fieldVal);
}
else if (fieldType == FIELD_TYPE_SHORT)
{
genField->type |= FIELD_INT;
genField->ivalue = atoi (fieldVal);
}
else if (fieldType == FIELD_TYPE_INT)
{
genField->type |= FIELD_INT;
genField->ivalue = atoi (fieldVal);
}
else if (fieldType == FIELD_TYPE_LONGLONG)
{
genField->type |= FIELD_BIGINT;
genField->llvalue = atoll (fieldVal);
}
else if (fieldType == FIELD_TYPE_FLOAT)
{
genField->type |= FIELD_FLOAT;
genField->fvalue = (float)atof (fieldVal);
}
else if (fieldType == FIELD_TYPE_DOUBLE)
{
genField->type |= FIELD_DOUBLE;
genField->dvalue = atof (fieldVal);
}
else if (fieldType == FIELD_TYPE_DATETIME)
{
genField->type |= FIELD_DATETIME;
genField->cvalue = malloc (fieldLength+1);
if (genField->cvalue == NULL)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseTableQuery: malloc failed!");
freeRow (genRow);
free (genField);
return ERROR;
}
memcpy (genField->cvalue, fieldVal, fieldLength);
genField->cvalue[fieldLength] = 0;
genField->cvalLength = fieldLength;
}
else if (fieldType == FIELD_TYPE_STRING)
{
genField->type |= FIELD_STRING;
genField->cvalue = malloc (fieldLength+1);
if (genField->cvalue == NULL)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseTableQuery: malloc failed!");
freeRow (genRow);
free (genField);
return ERROR;
}
memcpy (genField->cvalue, fieldVal, fieldLength);
genField->cvalue[fieldLength] = 0;
genField->cvalLength = fieldLength;
}
else
{
// this should happen on the first row of the result set,
// thus we can safely cleanup the current row only
radMsgLog(PRI_CATASTROPHIC, "raddatabaseTableQuery: results unknown field type");
free (genField);
freeRow (genRow);
return ERROR;
}
/* ... add to the generic field list here...
*/
radListAddToEnd (&genRow->fields, (NODE_PTR)genField);
}
/* ... add to the generic result row list here ...
*/
radListAddToEnd (&id->resSet->rows, (NODE_PTR)genRow);
}
return OK;
}
/************************** Database - Level ******************************
**************************************************************************
*/
/* ... connect to a database server;
... if 'host' is NULL, localhost is used;
... 'username' and 'password' MUST be populated and are the db
... server username and password;
... if 'dbName' is NULL, no specific database is opened and all
... tableNames in calls below MUST be of the form 'dbName.tableName';
... returns the ID or NULL
*/
DATABASE_ID raddatabaseOpen
(
const char *host,
const char *username,
const char *password,
const char *dbName
)
{
PGRESQL_ID newId;
char conninfo[256], hoststr[64];
if (dbName == NULL)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseOpen: postgresql requires a non-NULL dbName!");
return NULL;
}
if (username == NULL || password == NULL)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseOpen: non-NULL username and password required!");
return NULL;
}
if (host == NULL)
{
sprintf (hoststr, "host=localhost");
}
else
{
if (isdigit(host[0]))
{
sprintf (hoststr, "hostaddr=%s", host);
}
else
{
sprintf (hoststr, "host=%s", host);
}
}
newId = (PGRESQL_ID) malloc (sizeof *newId);
if (newId == NULL)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseOpen: malloc failed!");
return NULL;
}
memset (newId, 0, sizeof (*newId));
/* ...allocate, initialize connection handler
*/
sprintf (conninfo, "%s dbname=%s user=%s password=%s",
hoststr, dbName, username, password);
newId->dbConn = PQconnectdb (conninfo);
if (newId->dbConn == NULL)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseOpen: "
"PQconnectdb() failed (probably out of memory)");
free (newId);
return NULL;
}
else if (PQstatus (newId->dbConn) != CONNECTION_OK)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseOpen: "
"PQstatus(): %s", printError (newId));
PQfinish (newId->dbConn);
free (newId);
return NULL;
}
return (DATABASE_ID)newId;
}
/* ... close a database server connection
*/
void raddatabaseClose (DATABASE_ID id)
{
PGRESQL_ID pgId = (PGRESQL_ID)id;
PQfinish (pgId->dbConn);
if (pgId->resSet)
{
raddatabaseReleaseResults (id, pgId->resSet);
}
free (pgId);
return;
}
/* ... create a database on the db server;
... returns OK or ERROR
*/
int raddatabaseCreate
(
DATABASE_ID id,
const char *dbName
)
{
char query[DB_QUERY_LENGTH_MAX];
sprintf (query, "CREATE DATABASE %s", dbName);
return (raddatabaseQuery (id, query, FALSE));
}
/* ... destroy a database on the db server;
... returns OK or ERROR
*/
int raddatabaseDelete
(
DATABASE_ID id,
const char *dbName
)
{
char query[DB_QUERY_LENGTH_MAX];
sprintf (query, "DROP DATABASE %s", dbName);
return (raddatabaseQuery (id, query, FALSE));
}
/* ... issue an SQL query to the db engine;
... 'createResults' should be set to TRUE if a result set should
... be created for retrieval with the raddatabaseTableGetResults function
... described below, otherwise set 'createResults' to FALSE;
... if results are generated it can be VERY slow and eat up a lot of
... heap space; the good news is that once the RESULT_SET_ID is
... retrieved, it can persist as long as the user needs to keep it
... without adverse effects on the db server;
... returns OK or ERROR if there is a db server error, query error,
... or 'createResults' is set to TRUE and no result set is generated
... by the 'query'
*/
int raddatabaseQuery
(
DATABASE_ID id,
const char *query,
int createResults
)
{
PGRESQL_ID pgId = (PGRESQL_ID)id;
PGresult *queryResult;
ExecStatusType retVal;
if (strlen (query) > DB_QUERY_LENGTH_MAX-1)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseTableQuery: "
"query string longer than %d characters...",
DB_QUERY_LENGTH_MAX-1);
return ERROR;
}
pgId->resSet = NULL;
queryResult = PQexec (pgId->dbConn, query);
if (queryResult == NULL)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseTableQuery: PQexec(): %s",
printError (pgId));
return ERROR;
}
retVal = PQresultStatus (queryResult);
if (retVal == PGRES_FATAL_ERROR ||
retVal == PGRES_BAD_RESPONSE ||
retVal == PGRES_EMPTY_QUERY)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseTableQuery: PQexec(): %s",
PQresultErrorMessage (queryResult));
PQclear (queryResult);
return ERROR;
}
/* the query succeeded; determine whether or not it returns data */
if (retVal == PGRES_COMMAND_OK)
{
if (createResults)
{
/*
* no result set was returned; query returned no data
* (it was not a SELECT, SHOW, DESCRIBE, or EXPLAIN),
* so just report number of rows affected by query
*/
radMsgLog(PRI_STATUS, "raddatabaseTableQuery:"
" no result set for this query");
PQclear (queryResult);
return ERROR;
}
else
{
PQclear (queryResult);
return OK;
}
}
if (retVal != PGRES_TUPLES_OK || !createResults)
{
PQclear (queryResult);
return OK;
}
/* ... a result set was returned (and we want one!)
... store rows in the generic data structure
*/
pgId->resSet = (RESULT_SET_ID) malloc (sizeof (*(pgId->resSet)));
if (pgId->resSet == NULL)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseTableQuery:"
" malloc failed!");
PQclear (queryResult);
return ERROR;
}
memset (pgId->resSet, 0, sizeof (*(pgId->resSet)));
radListReset (&pgId->resSet->rows);
strncpy (pgId->resSet->query, query, DB_QUERY_LENGTH_MAX-1);
if (processResults (pgId, queryResult) == ERROR)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseTableQuery:"
" processResults failed!");
raddatabaseReleaseResults (id, pgId->resSet);
pgId->resSet = NULL;
PQclear (queryResult);
return ERROR;
}
PQclear (queryResult);
return OK;
}
/* ... retrieve the result set if there is one;
... should be called immediately after raddatabaseTableQuery if the
... query was supposed to generate a result set (SELECT, SHOW, etc.);
... returns NULL if there is no result set available;
... RESULT_SET_ID should be released via raddatabaseTableResultsRelease
... once the user is finished with it;
... returns RESULT_SET_ID or NULL
*/
RESULT_SET_ID raddatabaseGetResults
(
DATABASE_ID id
)
{
PGRESQL_ID pgId = (PGRESQL_ID)id;
return pgId->resSet;
}
/* ... refresh and replace a result set based on the original query;
... can be even SLOWER;
... RESULT_SET_ID should be released via raddatabaseTableResultsRelease
... once the user is finished with it;
... returns a new RESULT_SET_ID or NULL
*/
RESULT_SET_ID raddatabaseRefreshResults
(
DATABASE_ID id,
RESULT_SET_ID resSetId
)
{
char query[DB_QUERY_LENGTH_MAX];
RESULT_SET_ID newSetId;
strncpy (query, resSetId->query, DB_QUERY_LENGTH_MAX-1);
raddatabaseReleaseResults (id, resSetId);
if (raddatabaseQuery (id, query, TRUE) == ERROR)
{
return NULL;
}
if ((newSetId = raddatabaseGetResults (id)) == NULL)
{
return NULL;
}
return newSetId;
}
/* ... release a result set
*/
void raddatabaseReleaseResults
(
DATABASE_ID id,
RESULT_SET_ID resSet
)
{
PGRESQL_ID pgId = (PGRESQL_ID)id;
ROW_ID row;
for (row = (ROW_ID) radListGetFirst (&resSet->rows);
row != NULL;
row = (ROW_ID) radListGetFirst (&resSet->rows))
{
radListRemove (&resSet->rows, (NODE_PTR)row);
raddatabaseRowDescriptionDelete (row);
}
pgId->resSet = NULL;
free (resSet);
return;
}
/*************************** Table - Level ********************************
**************************************************************************
*/
/* ... does 'tableName' table exist?;
... returns TRUE or FALSE
*/
int raddatabaseTableIfExists
(
DATABASE_ID id,
const char *tableName
)
{
PGRESQL_ID pgId = (PGRESQL_ID)id;
PGresult *queryResult;
ExecStatusType retVal;
char query[DB_QUERY_LENGTH_MAX];
int boolReturn = FALSE;
sprintf (query, "SELECT relname FROM pg_class WHERE relname='%s'", tableName);
queryResult = PQexec (pgId->dbConn, query);
if (queryResult == NULL)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseTableIfExists: PQexec(): %s",
printError (pgId));
return FALSE;
}
retVal = PQresultStatus (queryResult);
if (retVal == PGRES_FATAL_ERROR ||
retVal == PGRES_BAD_RESPONSE ||
retVal == PGRES_EMPTY_QUERY)
{
PQclear (queryResult);
return FALSE;
}
/* the query succeeded; determine whether or not it returns data */
if ((retVal == PGRES_TUPLES_OK) && (PQntuples(queryResult) > 0))
{
boolReturn = TRUE;
}
PQclear (queryResult);
return boolReturn;
}
/* ... table management; all return OK or ERROR
*/
int raddatabaseTableCreate
(
DATABASE_ID id,
const char *tableName,
ROW_ID rowDescr /* see raddatabaseRowDescriptionCreate */
)
{
char query[DB_QUERY_LENGTH_MAX];
char fType[12], notNull[12];
int index = 0, priKey = FALSE;
FIELD_ID field;
index = sprintf (query, "CREATE TABLE %s ( ", tableName);
/* ... do the column definitions first
*/
for (field = (FIELD_ID) radListGetFirst (&rowDescr->fields);
field != NULL;
field = (FIELD_ID) radListGetNext (&rowDescr->fields, (NODE_PTR)field))
{
if (field->name[0] == 0)
{
radMsgLog(PRI_MEDIUM, "raddatabaseTableCreate: field name is empty!");
return ERROR;
}
if (field->type == 0)
{
radMsgLog(PRI_MEDIUM, "raddatabaseTableCreate: type is empty!");
return ERROR;
}
if ((field->type & FIELD_STRING) && (field->cvalLength == 0))
{
radMsgLog(PRI_MEDIUM, "raddatabaseTableCreate: cval length is 0!");
return ERROR;
}
if (field->type & FIELD_INT)
{
sprintf (fType, "int4");
}
else if (field->type & FIELD_BIGINT)
{
sprintf (fType, "int8");
}
else if (field->type & FIELD_FLOAT)
{
sprintf (fType, "float4");
}
else if (field->type & FIELD_DOUBLE)
{
sprintf (fType, "float8");
}
else if (field->type & FIELD_DATETIME)
{
sprintf (fType, "timestamp");
}
else
{
sprintf (fType, "char(%d)", field->cvalLength);
}
if (field->type & FIELD_NOT_NULL)
{
sprintf (notNull, "NOT NULL");
}
else
{
notNull[0] = 0;
}
index += sprintf (&query[index], "%s %s %s,",
field->name, fType, notNull);
}
/* ... now do the indexes
*/
for (field = (FIELD_ID) radListGetFirst (&rowDescr->fields);
field != NULL;
field = (FIELD_ID) radListGetNext (&rowDescr->fields, (NODE_PTR)field))
{
if (field->type & FIELD_PRI_KEY)
{
if (priKey)
{
radMsgLog(PRI_MEDIUM, "raddatabaseTableCreate: "
"more than one PRIMARY KEY specified!");
return ERROR;
}
index += sprintf (&query[index], "PRIMARY KEY (%s),",
field->name);
priKey = TRUE;
continue;
}
else if (field->type & FIELD_UNIQUE_INDEX)
{
index += sprintf (&query[index], "UNIQUE (%s),",
field->name);
continue;
}
}
if (query[index-1] == ',')
{
index --;
}
sprintf (&query[index], ")");
return (raddatabaseQuery (id, query, FALSE));
}
int raddatabaseTableDelete
(
DATABASE_ID id,
const char *tableName
)
{
char query[DB_QUERY_LENGTH_MAX];
sprintf (query, "DROP TABLE %s", tableName);
return (raddatabaseQuery (id, query, FALSE));
}
int raddatabaseTableTruncate
(
DATABASE_ID id,
const char *tableName
)
{
char query[DB_QUERY_LENGTH_MAX];
sprintf (query, "DELETE FROM %s", tableName);
return (raddatabaseQuery (id, query, FALSE));
}
/* ... create a row description to use for row insertion/retrieval;
... must be deleted with raddatabaseRowDescriptionDelete after use;
... sets the FIELD_VALUE_IS_NULL bit in field->type for all fields -
... this means the user must clear this bit for field values to be
... used in queries/insertions/deletions;
... returns ROW_ID or NULL
*/
ROW_ID raddatabaseTableDescriptionGet
(
DATABASE_ID id,
const char *tableName
)
{
ROW_ID newRow;
PGRESQL_ID pgId = (PGRESQL_ID)id;
char query[DB_QUERY_LENGTH_MAX];
int j, numRows, row, col, type;
FIELD_ID genField;
PGresult *queryResult;
ExecStatusType retVal;
char *fieldName, *fieldVal;
newRow = (ROW_ID) malloc (sizeof (*newRow));
if (newRow == NULL)
{
radMsgLog(PRI_STATUS, "raddatabaseTableDescriptionGet: malloc failed!");
return NULL;
}
memset (newRow, 0, sizeof (*newRow));
radListReset (&newRow->fields);
sprintf (query,
"SELECT attname,atttypid,attnotnull from pg_class, pg_attribute "
"WHERE relname='%s' AND pg_class.oid=attrelid AND attnum > 0",
tableName);
pgId->resSet = NULL;
queryResult = PQexec (pgId->dbConn, query);
if (queryResult == NULL)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseTableDescriptionGet: PQexec(): %s",
printError (pgId));
return NULL;
}
retVal = PQresultStatus (queryResult);
if (retVal == PGRES_FATAL_ERROR ||
retVal == PGRES_BAD_RESPONSE ||
retVal == PGRES_EMPTY_QUERY)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseTableDescriptionGet: PQexec(): %s",
PQresultErrorMessage (queryResult));
PQclear (queryResult);
return NULL;
}
/* the query succeeded; determine whether or not it returns data */
if (retVal != PGRES_TUPLES_OK)
{
/*
* no result set was returned; query returned no data
* (it was not a SELECT, SHOW, DESCRIBE, or EXPLAIN),
* so just report number of rows affected by query
*/
radMsgLog(PRI_STATUS, "raddatabaseTableDescriptionGet:"
" table is empty!");
PQclear (queryResult);
free (newRow);
return NULL;
}
numRows = PQntuples (queryResult);
if (numRows <= 0) /* no result set was returned */
{
/*
* no result set was returned; query returned no data
* (it was not a SELECT, SHOW, DESCRIBE, or EXPLAIN),
* so just report number of rows affected by query
*/
radMsgLog(PRI_STATUS, "raddatabaseTableDescriptionGet:"
" table is empty!");
PQclear (queryResult);
free (newRow);
return NULL;
}
// there should be one row per column to process...
for (row = 0; row < numRows; row ++)
{
/* ... get generic field memory
*/
genField = (FIELD_ID) malloc (sizeof (*genField));
if (genField == NULL)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseTableDescriptionGet: "
"malloc failed!");
PQclear (queryResult);
freeRow (newRow);
return NULL;
}
memset (genField, 0, sizeof (*genField));
for (col = 0; col < PQnfields (queryResult); col ++)
{
if (PQfformat (queryResult, col) != 0)
{
radMsgLog(PRI_CATASTROPHIC, "raddatabaseTableDescriptionGet: "
"binary format returned!");
PQclear (queryResult);
freeRow (newRow);
return NULL;
}
fieldName = PQfname (queryResult, col);
fieldVal = PQgetvalue (queryResult, row, col);
if (!strcasecmp (fieldName, "attname"))
{
strncpy (genField->name, fieldVal, DB_FIELD_NAME_MAX);
}
else if (!strcasecmp (fieldName, "atttypid"))
{
type = atoi (fieldVal);
switch (type)
{
case FIELD_TYPE_TINY:
case FIELD_TYPE_SHORT:
case FIELD_TYPE_INT:
genField->type = FIELD_INT;
break;
case FIELD_TYPE_LONGLONG:
genField->type = FIELD_BIGINT;
break;
case FIELD_TYPE_FLOAT:
genField->type = FIELD_FLOAT;
break;
case FIELD_TYPE_DOUBLE:
genField->type = FIELD_DOUBLE;
break;
case FIELD_TYPE_STRING:
genField->type = FIELD_STRING;;
break;
case FIELD_TYPE_DATETIME:
genField->type = FIELD_DATETIME;;
break;
default:
continue;
}
/* ... set to be unused by default
*/
genField->type |= FIELD_VALUE_IS_NULL;
}
else if (!strcasecmp (fieldName, "attnotnull"))
{
if (fieldVal[0] == 't')
{
genField->type |= FIELD_NOT_NULL;
}
}
else
{
continue;
}
}
/* ... add to the generic field list here...
*/
radListAddToEnd (&newRow->fields, (NODE_PTR)genField);
}
PQclear (queryResult);
return newRow;
}
/* ... query a table to create a result set given a row description;
... columns to be included in the result set should have FIELD_DISPLAY
... set in the appropriate FIELD_ID.type within 'rowDescription';
... columns NOT to be included in the WHERE clause should have
... FIELD_VALUE_IS_NULL set in FIELD_ID.type;
... can be VERY slow and eat up a lot of heap space; the good news
... is that once the RESULT_SET_ID is retrieved, it can persist as
... long as the user needs to keep it without adverse effects on
... the db server;
... RESULT_SET_ID should be released via raddatabaseTableResultsRelease
... once the user is finished with it;
... only the populated fields in 'rowDescription' will be used to
... match records in the table (i.e., multiple rows can be matched)
... returns RESULT_SET_ID or NULL
*/
RESULT_SET_ID raddatabaseTableQueryRow
(
DATABASE_ID id,
const char *tableName,
ROW_ID rowDescr
)
{
char query[DB_QUERY_LENGTH_MAX];
char select[DB_QUERY_LENGTH_MAX];
char where[DB_QUERY_LENGTH_MAX];
int index, firstWhere = TRUE;
FIELD_ID field;
/* ... build the select clause
*/
index = 0;
for (field = (FIELD_ID) radListGetFirst (&rowDescr->fields);
field != NULL;
field = (FIELD_ID) radListGetNext (&rowDescr->fields, (NODE_PTR)field))
{
if (field->type & FIELD_DISPLAY)
{
index += sprintf (&select[index], "%s,", field->name);
}
}
select[index-1] = 0;
/* ... build the where clause
*/
index = 0;
for (field = (FIELD_ID) radListGetFirst (&rowDescr->fields);
field != NULL;
field = (FIELD_ID) radListGetNext (&rowDescr->fields, (NODE_PTR)field))
{
if (field->type & FIELD_VALUE_IS_NULL)
{
continue;
}
if (!firstWhere)
{
index += sprintf (&where[index], "AND ");
}
firstWhere = FALSE;
if (field->type & FIELD_INT)
{
index += sprintf (&where[index], "(%s = %d)",
field->name, field->ivalue);
}
else if (field->type & FIELD_BIGINT)
{
index += sprintf (&where[index], "(%s = %lld)",
field->name, field->llvalue);
}
else if (field->type & FIELD_FLOAT)
{
index += sprintf (&where[index], "(%s = %f)",
field->name, field->fvalue);
}
else if (field->type & FIELD_DOUBLE)
{
index += sprintf (&where[index], "(%s = %f)",
field->name, field->dvalue);
}
else
{
index += sprintf (&where[index], "(%s = \"%s\")",
field->name, field->cvalue);
}
}
/* ... build the query
*/
sprintf (query, "SELECT %s FROM %s WHERE %s",
select, tableName, where);
/* ... now we have a query, call the other guy
*/
if (raddatabaseQuery (id, query, TRUE) == ERROR)
{
return NULL;
}
return (raddatabaseGetResults (id));
}
/* ... insert a row into a table;
... 'rowId' was created with raddatabaseTableDescriptionGet then
... field values were populated with raddatabaseFieldGet,
... raddatabaseFieldSetIntValue, etc. prior to this call;
... if a 'NOT NULL' field has a NULL value in rowId, it's an error;
... returns OK or ERROR
*/
int raddatabaseTableInsertRow
(
DATABASE_ID id,
const char *tableName,
ROW_ID rowId
)
{
FIELD_ID field;
char query[DB_QUERY_LENGTH_MAX];
char columns[DB_QUERY_LENGTH_MAX];
char values[DB_QUERY_LENGTH_MAX];
int colindex, valindex;
sprintf (query, "INSERT INTO %s ", tableName);
colindex = sprintf (columns, "(");
valindex = sprintf (values, " VALUES (");
/* ... build the columns and values strings
*/
for (field = (FIELD_ID) radListGetFirst (&rowId->fields);
field != NULL;
field = (FIELD_ID) radListGetNext (&rowId->fields, (NODE_PTR)field))
{
/* ... is this a NOT NULL field with NULL value?
*/
if ((field->type & FIELD_NOT_NULL) &&
(field->type & FIELD_VALUE_IS_NULL))
{
radMsgLog(PRI_MEDIUM, "raddatabaseTableInsertRow: "
"NOT NULL field has NULL value!");
return ERROR;
}
if (field->type & FIELD_VALUE_IS_NULL)
{
continue;
}
if (field->type & FIELD_INT)
{
colindex += sprintf (&columns[colindex], "%s,",
field->name);
valindex += sprintf (&values[valindex], "%d,",
field->ivalue);
}
else if (field->type & FIELD_BIGINT)
{
colindex += sprintf (&columns[colindex], "%s,",
field->name);
valindex += sprintf (&values[valindex], "%lld,",
field->llvalue);
}
else if (field->type & FIELD_FLOAT)
{
colindex += sprintf (&columns[colindex], "%s,",
field->name);
valindex += sprintf (&values[valindex], "%f,",
field->fvalue);
}
else if (field->type & FIELD_DOUBLE)
{
colindex += sprintf (&columns[colindex], "%s,",
field->name);
valindex += sprintf (&values[valindex], "%f,",
field->dvalue);
}
else
{
colindex += sprintf (&columns[colindex], "%s,",
field->name);
valindex += sprintf (&values[valindex], "'%s',",
field->cvalue);
}
}
/* ... get rid of the trailing ','s
*/
columns[colindex-1] = ')';
values[valindex-1] = ')';
strcat (query, columns);
strcat (query, values);
return (raddatabaseQuery (id, query, FALSE));
}
/* ... modify rows in a table matching 'matchId';
... only the non-NULL fields will be used to match records
... in the table (i.e., multiple rows can be matched)
... all fields in newData will be updated in the db rows - if a NULL
... value is given for a NOT NULL field it is an error;
... thus if you don't want to modify a column value, remove it from
... the newData row desription;
... returns OK or ERROR
*/
int raddatabaseTableModifyRows
(
DATABASE_ID id,
const char *tableName,
ROW_ID matchId,
ROW_ID newData
)
{
char query[DB_QUERY_LENGTH_MAX];
char set[DB_QUERY_LENGTH_MAX];
char where[DB_QUERY_LENGTH_MAX];
int index, firstWhere = TRUE;
FIELD_ID field;
/* ... build the set clause
*/
index = 0;
for (field = (FIELD_ID) radListGetFirst (&newData->fields);
field != NULL;
field = (FIELD_ID) radListGetNext (&newData->fields, (NODE_PTR)field))
{
/* ... is this a NOT NULL field with NULL value?
*/
if ((field->type & FIELD_NOT_NULL) &&
(field->type & FIELD_VALUE_IS_NULL))
{
radMsgLog(PRI_MEDIUM, "raddatabaseTableModifyRows: "
"NOT NULL field has NULL value!");
return ERROR;
}
if (field->type & FIELD_VALUE_IS_NULL)
{
index += sprintf (&set[index], "%s = NULL,",
field->name);
}
if (field->type & FIELD_INT)
{
index += sprintf (&set[index], "%s = %d,",
field->name, field->ivalue);
}
else if (field->type & FIELD_BIGINT)
{
index += sprintf (&set[index], "%s = %lld,",
field->name, field->llvalue);
}
else if (field->type & FIELD_FLOAT)
{
index += sprintf (&set[index], "%s = %f,",
field->name, field->fvalue);
}
else if (field->type & FIELD_DOUBLE)
{
index += sprintf (&set[index], "%s = %f,",
field->name, field->dvalue);
}
else
{
index += sprintf (&set[index], "%s = \"%s\",",
field->name, field->cvalue);
}
}
set[index-1] = 0;
/* ... build the where clause
*/
index = 0;
for (field = (FIELD_ID) radListGetFirst (&matchId->fields);
field != NULL;
field = (FIELD_ID) radListGetNext (&matchId->fields, (NODE_PTR)field))
{
if (field->type & FIELD_VALUE_IS_NULL)
{
continue;
}
if (!firstWhere)
{
index += sprintf (&where[index], "AND ");
}
firstWhere = FALSE;
if (field->type & FIELD_INT)
{
index += sprintf (&where[index], "(%s = %d)",
field->name, field->ivalue);
}
else
{
index += sprintf (&where[index], "(%s = \"%s\")",
field->name, field->cvalue);
}
}
/* ... build the query
*/
sprintf (query, "UPDATE %s SET %s WHERE %s",
tableName, set, where);
/* ... now we have a query, call the other guy
*/
return (raddatabaseQuery (id, query, FALSE));
}
/* ... delete rows in a table matching 'matchId';
... only the non-NULL fields will be used to match records
... in the table (i.e., multiple rows can be matched)
... returns OK or ERROR
*/
int raddatabaseTableDeleteRows
(
DATABASE_ID id,
const char *tableName,
ROW_ID matchId
)
{
FIELD_ID field;
char query[DB_QUERY_LENGTH_MAX];
int index, firstWhere = TRUE;
index = sprintf (query, "DELETE FROM %s WHERE ", tableName);
/* ... build all the "WHERE" clause
*/
for (field = (FIELD_ID) radListGetFirst (&matchId->fields);
field != NULL;
field = (FIELD_ID) radListGetNext (&matchId->fields, (NODE_PTR)field))
{
if (field->type & FIELD_VALUE_IS_NULL)
{
continue;
}
if (!firstWhere)
{
index += sprintf (&query[index], " AND ");
}
firstWhere = FALSE;
if (field->type & FIELD_INT)
{
index += sprintf (&query[index], "(%s = %d)",
field->name, field->ivalue);
}
else if (field->type & FIELD_BIGINT)
{
index += sprintf (&query[index], "(%s = %lld)",
field->name, field->llvalue);
}
else if (field->type & FIELD_FLOAT)
{
index += sprintf (&query[index], "(%s = %f)",
field->name, field->fvalue);
}
else if (field->type & FIELD_DOUBLE)
{
index += sprintf (&query[index], "(%s = %f)",
field->name, field->dvalue);
}
else
{
index += sprintf (&query[index], "(%s = \"%s\")",
field->name, field->cvalue);
}
}
return (raddatabaseQuery (id, query, FALSE));
}
|