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
|
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
*
* The Contents of this file are made available subject to the terms of
* the Sun Industry Standards Source License Version 1.2
*
* Sun Microsystems Inc., March, 2001
*
*
* Sun Industry Standards Source License Version 1.2
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.2 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2001 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
************************************************************************/
/*___INFO__MARK_END__*/
#include <string.h>
#include "sgermon.h"
#include "sge_log.h"
#include "sge_feature.h"
#include "sge_answer.h"
#include "sge_object.h"
#include "sge_conf.h"
#include "sge_hgroup.h"
#include "sge_host.h"
#include "sge_job.h"
#include "sge_ja_task.h"
#include "sge_pe_task.h"
#include "sge_pe.h"
#include "sge_schedd_conf.h"
#include "sge_userprj.h"
#include "sge_userset.h"
#include "spool/sge_spooling.h"
#include "spool/sge_spooling_utilities.h"
#include "msg_common.h"
#include "spool/msg_spoollib.h"
#include "spool/sge_spooling_database.h"
#ifndef __SGE_NO_USERMAPPING__
#include "sge_cuserL.h"
#endif
/****** spool/database/--Database-Spooling *************************************
*
* NAME
* Database Spooling -- spooling to databases
*
* FUNCTION
* This module provides data structures and functions useful for the
* implementation of spooling methods conformant to the spooling framework,
* that spool into a database.
*
* Database can be SQL databases, file based databased, etc.
*
* SEE ALSO
* spool/--Spooling
* spool/sql/--SQL-Spooling
****************************************************************************
*/
/****** spool/database/-Database-Spooling-Typedefs *****************************
*
* NAME
* Typedefs -- type definitions for the database spooling
*
* SYNOPSIS
* typedef struct sge_database_info {...} sge_database_info;
* typedef struct {...} table_description;
*
* FUNCTION
* These typedefs are for internal use only!
* Please use the access functions named under SEE ALSO.
*
* The sge_database_info structure is used to store information
* like a database system dependent handle,
* whether to spool with historical data or not, etc.
* An instance of sge_database_info is stored in the SPR_clientdata
* attribute of spooling rules.
*
* The table_description structure contains information describing
* the table layout for SGE CULL datatypes, e.g. the names of table columns
* holding id's, timestamps for spooling with historical data etc.
*
* In addition, it contains information information like the CULL attribute
* name (nm) for the primary key field,
* and a mapping table from primary key to database internal id, that is
* cached within the spooling module.
*
* Instances of table_description are stored in the clientdata attribute
* of the spooling_field structure describing which fields are spooled,
* in the element with index 0.
*
* Example for a spooling_field structure including table_description:
*
* -> fields[0].nm EH_name
* .name "EH_name"
* .sub_fields NULL
* .clientdata table_description.table_name "sge_exechost"
* .field_name_id "EH__id"
* ...
* .key_nm EH_name
* .id_list
* ...
* fields[5].nm EH_load_list
* .sub_fields spooling_field[0].nm HL_name
* .name "HL_name"
* .clientdata table_description
*
* SEE ALSO
* spool/database/spool_database_initialize()
* spool/database/spool_database_get_handle()
* spool/database/spool_database_set_handle()
* spool/database/spool_database_set_history()
* spool/database/spool_database_get_history()
* spool/database/spool_database_get_table_name()
* spool/database/spool_database_get_id_field()
* spool/database/spool_database_get_parent_id_field()
* spool/database/spool_database_get_valid_field()
* spool/database/spool_database_get_created_field()
* spool/database/spool_database_get_deleted_field()
* spool/database/spool_database_get_key_nm()
* spool/database/spool_database_get_fields()
* spool/database/spool_database_store_id()
* spool/database/spool_database_get_id()
* spool/database/spool_database_delete_id()
* spool/database/spool_database_tag_id()
* spool/database/spool_database_get_id_list()
* spool/database/spool_database_object_changed()
****************************************************************************
*/
typedef struct sge_database_info {
bool with_history; /* store historical data */
void *handle; /* database specific handle or structure */
spooling_field *fields[SGE_TYPE_ALL];
} sge_database_info;
typedef struct {
const char *table_name;
const char *field_name_id;
const char *field_name_parent_id;
const char *field_name_valid;
const char *field_name_created;
const char *field_name_deleted;
int key_nm;
lList *id_list;
} table_description;
static lList **
spool_database_get_field_id_list(const spooling_field *fields);
static bool
spool_database_assign_table_description(lList **answer_list, spooling_field *fields, const char *table_name, const lDescr *descr, bool sublevel);
static table_description *
spool_database_create_table_description(lList **answer_list, const char *table_name, const char *prefix, int key_nm, bool sublevel);
static const char *
spool_database_get_sub_table_name(const char *prefix, int nm);
#if 0
static bool
spool_database_set_table_description(spooling_field *fields, int nm, table_description *description);
#endif
static table_description table_base[SGE_TYPE_ALL] = {
{ "sge_adminhost", "AH__id", NULL, "AH__valid", "AH__created", "AH_deleted", AH_name },
{ "sge_calendar", NULL , NULL, NULL, NULL, NULL, NoName},
{ "sge_ckpt", NULL , NULL, NULL, NULL, NULL, NoName},
{ "sge_config", NULL , NULL, NULL, NULL, NULL, NoName},
{ NULL , NULL, NULL, NULL, NULL, NULL, NoName},
{ "sge_exechost", "EH__id" , NULL, "EH__valid", "EH__created", "EH__deleted", EH_name },
{ "sge_jatask", NULL , NULL, NULL, NULL, NULL, NoName},
{ "sge_petask", NULL , NULL, NULL, NULL, NULL, NoName},
{ "sge_job", NULL , NULL, NULL, NULL, NULL, NoName},
{ "sge_job_schedd_info", NULL, NULL , NULL, NULL, NULL, NoName},
{ "sge_manager", NULL , NULL, NULL, NULL, NULL, NoName},
{ "sge_operator", NULL , NULL, NULL, NULL, NULL, NoName},
{ "sge_sharetree", NULL , NULL, NULL, NULL, NULL, NoName},
{ "sge_pe", NULL , NULL, NULL, NULL, NULL, NoName},
{ "sge_project", NULL , NULL, NULL, NULL, NULL, NoName},
{ "sge_cqueue", NULL , NULL, NULL, NULL, NULL, NoName},
{ "sge_qinstance", NULL , NULL, NULL, NULL, NULL, NoName},
{ "sge_sched_config", NULL, NULL , NULL, NULL, NULL, NoName},
{ NULL , NULL, NULL, NULL, NULL, NULL, NoName},
{ NULL , NULL, NULL, NULL, NULL, NULL, NoName},
{ NULL , NULL, NULL, NULL, NULL, NULL, NoName},
{ "sge_submithost", NULL , NULL, NULL, NULL, NULL, NoName},
{ "sge_user", NULL , NULL, NULL, NULL, NULL, NoName},
{ "sge_userset", NULL , NULL, NULL, NULL, NULL, NoName},
{ "sge_hgroup", NULL , NULL, NULL, NULL, NULL, NoName},
{ "sge_complex", NULL , NULL, NULL, NULL, NULL, NoName},
{ NULL , NULL, NULL, NULL, NULL, NULL, NoName},
{ NULL , NULL, NULL, NULL, NULL, NULL, NoName},
{ "sge_limitruleset" , NULL, NULL, NULL, NULL, NULL, NoName},
{ "sge_ar" , NULL, NULL, NULL, NULL, NULL, NoName},
{ "sge_jobscript" , NULL, NULL, NULL, NULL, NULL, NoName},
#ifndef __SGE_NO_USERMAPPING__
{ "sge_cuser", NULL , NULL, NULL, NULL, NULL, NoName}
#endif
};
const spool_instr spool_database_sub_instr = {
CULL_SUBLIST,
true,
false,
&spool_database_sub_instr,
NULL
};
const spool_instr spool_database_instr = {
CULL_SPOOL,
true,
false,
&spool_database_sub_instr,
NULL
};
const spool_instr spool_database_sharetree_instr = {
CULL_SPOOL,
true,
false,
&spool_database_sharetree_instr,
NULL
};
const spool_instr spool_database_complex_sub_instr = {
CULL_SPOOL,
true,
false,
NULL,
NULL
};
const spool_instr spool_database_complex_instr = {
CULL_SPOOL,
true,
false,
&spool_database_complex_sub_instr,
NULL
};
const spool_instr spool_database_userprj_sub_instr = {
CULL_SUBLIST,
true,
false,
&spool_database_userprj_sub_instr,
NULL
};
const spool_instr spool_database_project_instr = {
CULL_SPOOL | CULL_SPOOL_PROJECT,
true,
false,
&spool_database_userprj_sub_instr,
NULL
};
const spool_instr spool_database_user_instr = {
CULL_SPOOL | CULL_SPOOL_USER,
true,
false,
&spool_database_userprj_sub_instr,
NULL
};
/****** spool/database/spool_database_initialize() **********************
* NAME
* spool_database_initialize() -- initialize database spooling information
*
* SYNOPSIS
* bool
* spool_database_initialize(lList **answer_list, lListElem *rule)
*
* FUNCTION
* Initializes internal information needed for database spooling.
*
* INPUTS
* lList **answer_list - to return error messages
* lListElem *rule - rule that will hold the created data structures
*
* RESULT
* bool - true on success,
* else false - error messages are returned in answer_list
*
* SEE ALSO
* ???/???
*******************************************************************************/
bool
spool_database_initialize(lList **answer_list, lListElem *rule)
{
bool ret = true;
sge_object_type i;
sge_database_info *info;
DENTER(TOP_LAYER, "spool_database_initialize");
info = (sge_database_info *)malloc(sizeof(sge_database_info));
info->with_history = false;
info->handle = NULL;
for (i = SGE_TYPE_ADMINHOST; i < SGE_TYPE_ALL && ret; i++) {
const lDescr *descr = object_type_get_descr(i);
/* evaluate which fields to spool */
switch (i) {
case SGE_TYPE_ADMINHOST:
case SGE_TYPE_CALENDAR:
case SGE_TYPE_CKPT:
case SGE_TYPE_CONFIG:
case SGE_TYPE_EXECHOST:
case SGE_TYPE_JOB:
#if 0
case SGE_TYPE_JATASK:
case SGE_TYPE_PETASK:
case SGE_TYPE_JOB_SCHEDD_INFO:
#endif
case SGE_TYPE_MANAGER:
case SGE_TYPE_OPERATOR:
case SGE_TYPE_PE:
case SGE_TYPE_CQUEUE:
case SGE_TYPE_QINSTANCE:
case SGE_TYPE_SCHEDD_CONF:
case SGE_TYPE_SUBMITHOST:
case SGE_TYPE_USERSET:
case SGE_TYPE_HGROUP:
case SGE_TYPE_RQS:
case SGE_TYPE_AR:
#ifndef __SGE_NO_USERMAPPING__
case SGE_TYPE_CUSER:
#endif
info->fields[i] = spool_get_fields_to_spool(answer_list,
object_type_get_descr(i),
&spool_database_instr);
if (info->fields[i] == NULL) {
ret = false;
continue;
}
ret = spool_database_assign_table_description(answer_list, info->fields[i], table_base[i].table_name, descr, false);
break;
case SGE_TYPE_SHARETREE:
info->fields[i] = spool_get_fields_to_spool(answer_list,
object_type_get_descr(i),
&spool_database_sharetree_instr);
if (info->fields[i] == NULL) {
ret = false;
continue;
}
ret = spool_database_assign_table_description(answer_list, info->fields[i], table_base[i].table_name, descr, false);
break;
case SGE_TYPE_PROJECT:
info->fields[i] = spool_get_fields_to_spool(answer_list,
object_type_get_descr(i),
&spool_database_project_instr);
if (info->fields[i] == NULL) {
ret = false;
continue;
}
ret = spool_database_assign_table_description(answer_list, info->fields[i], table_base[i].table_name, descr, false);
break;
case SGE_TYPE_USER:
info->fields[i] = spool_get_fields_to_spool(answer_list,
object_type_get_descr(i),
&spool_database_user_instr);
if (info->fields[i] == NULL) {
ret = false;
continue;
}
ret = spool_database_assign_table_description(answer_list, info->fields[i], table_base[i].table_name, descr, false);
break;
default:
info->fields[i] = NULL;
break;
}
}
lSetRef(rule, SPR_clientdata, info);
DEXIT;
return ret;
}
bool
spool_database_check_version(lList **answer_list, const char *version)
{
bool ret = true;
char buffer[256];
dstring ds;
const char *my_version;
sge_dstring_init(&ds, buffer, sizeof(buffer));
my_version = feature_get_product_name(FS_SHORT_VERSION, &ds);
if (strcmp(version, my_version) != 0) {
answer_list_add_sprintf(answer_list, STATUS_EUNKNOWN,
ANSWER_QUALITY_ERROR,
MSG_SPOOL_WRONGVERSION_SS,
version, my_version);
ret = false;
}
return ret;
}
/****** spool/database/spool_database_get_handle() **********************
* NAME
* spool_database_get_handle() -- get database handle
*
* SYNOPSIS
* void *
* spool_database_get_handle(const lListElem *rule)
*
* FUNCTION
* Returns the database handle associated with a rule.
* Database handle is some database specific pointer that is used to
* address the database.
*
* INPUTS
* const lListElem *rule - the rule from which to read the database handle
*
* RESULT
* void * - pointer to the database handle, or NULL on error
*
* SEE ALSO
* ???/???
*******************************************************************************/
void *
spool_database_get_handle(const lListElem *rule)
{
sge_database_info *info;
info = (sge_database_info *)lGetRef(rule, SPR_clientdata);
return info->handle;
}
/****** spool/database/spool_database_set_handle() **********************
* NAME
* spool_database_set_handle() -- set database handle
*
* SYNOPSIS
* bool
* spool_database_set_handle(const lListElem *rule, void *handle)
*
* FUNCTION
* Stores a database specific handle (pointer) in a certain rule.
*
* INPUTS
* const lListElem *rule - the rule to use
* void *handle - the handle to store
*
* RESULT
* bool - true on success, else false
*
* SEE ALSO
* ???/???
*******************************************************************************/
bool
spool_database_set_handle(const lListElem *rule, void *handle)
{
bool ret = true;
sge_database_info *info;
info = (sge_database_info *)lGetRef(rule, SPR_clientdata);
info->handle = handle;
return ret;
}
/****** spool/database/spool_database_set_history() *********************
* NAME
* spool_database_set_history() -- set history information
*
* SYNOPSIS
* void spool_database_set_history(const lListElem *rule, bool value)
*
* FUNCTION
* Sets for a certain rule the information, whether spooling shall be done
* with or without historical data.
*
* INPUTS
* const lListElem *rule - the rule to use
* bool value - true = spooling with history,
* false = spooling without history
*
* SEE ALSO
* ???/???
*******************************************************************************/
void
spool_database_set_history(const lListElem *rule, bool value)
{
sge_database_info *info = (sge_database_info *)lGetRef(rule, SPR_clientdata);
info->with_history = value;
}
/****** spool/database/spool_database_get_history() *********************
* NAME
* spool_database_get_history() -- get history information
*
* SYNOPSIS
* bool
* spool_database_get_history(const lListElem *rule)
*
* FUNCTION
* Returns the information, whether spooling shall be done with or without
* historical information.
*
* INPUTS
* const lListElem *rule - the rule to read from
*
* RESULT
* bool - true: spool with historical data
* false: don't spool historical data
*
* SEE ALSO
* ???/???
*******************************************************************************/
bool
spool_database_get_history(const lListElem *rule)
{
sge_database_info *info = (sge_database_info *)lGetRef(rule, SPR_clientdata);
return info->with_history;
}
/****** spool/database/spool_database_get_table_name() ******************
* NAME
* spool_database_get_table_name() -- get the database table name
*
* SYNOPSIS
* const char* spool_database_get_table_name(const spooling_field *fields)
*
* FUNCTION
* Returns the name of the database table used for spooling data of the type
* described in the parameter fields.
*
* INPUTS
* const spooling_field *fields - structure containing spooling information
*
* RESULT
* const char* - name of the database table
*
* SEE ALSO
* ???/???
*******************************************************************************/
const char *
spool_database_get_table_name(const spooling_field *fields)
{
table_description *tdescr = (table_description *)fields[0].clientdata;
return tdescr->table_name;
}
/****** spool/database/spool_database_get_id_field() ********************
* NAME
* spool_database_get_id_field() -- return name of the id field
*
* SYNOPSIS
* const char*
* spool_database_get_id_field(const spooling_field *fields)
*
* FUNCTION
* Returns the name of the database field holding the internal record
* identifier.
* This id field is used to reference parent objects in related tables.
*
* INPUTS
* const spooling_field *fields - structure containing spooling information
*
* RESULT
* const char* - name of the id field
*
* SEE ALSO
* ???/???
*******************************************************************************/
const char *
spool_database_get_id_field(const spooling_field *fields)
{
table_description *tdescr = (table_description *)fields[0].clientdata;
return tdescr->field_name_id;
}
/****** spool/database/spool_database_get_parent_id_field() *************
* NAME
* spool_database_get_parent_id_field() -- return name of parent id field
*
* SYNOPSIS
* const char*
* spool_database_get_parent_id_field(const spooling_field *fields)
*
* FUNCTION
* Returns the name of the database field holding the internal record
* identifier of parent objects.
*
* INPUTS
* const spooling_field *fields - structure containing spooling information
*
* RESULT
* const char* - name of the parent id field
*
* SEE ALSO
* ???/???
*******************************************************************************/
const char *
spool_database_get_parent_id_field(const spooling_field *fields)
{
table_description *tdescr = (table_description *)fields[0].clientdata;
return tdescr->field_name_parent_id;
}
/****** spool/database/spool_database_get_valid_field() *****************
* NAME
* spool_database_get_valid_field() -- return name of valid field
*
* SYNOPSIS
* const char*
* spool_database_get_valid_field(const spooling_field *fields)
*
* FUNCTION
* Returns the name of the database field holding the "valid" information.
* This boolean field informs about validity of a record in case of spooling
* with historical information.
*
* INPUTS
* const spooling_field *fields - structure containing spooling information
*
* RESULT
* const char* - name of the valid field
*
* SEE ALSO
* ???/???
*******************************************************************************/
const char *
spool_database_get_valid_field(const spooling_field *fields)
{
table_description *tdescr = (table_description *)fields[0].clientdata;
return tdescr->field_name_valid;
}
/****** spool/database/spool_database_get_created_field() ***************
* NAME
* spool_database_get_created_field() -- return name of created field
*
* SYNOPSIS
* const char*
* spool_database_get_created_field(const spooling_field *fields)
*
* FUNCTION
* Returns the name of the database field holding the "created" information.
* This timestamp field holds the information, when a certain record was
* created or modified for the last time.
*
* INPUTS
* const spooling_field *fields - structure containing spooling information
*
* RESULT
* const char* - name of the created field
*
* SEE ALSO
* ???/???
*******************************************************************************/
const char *
spool_database_get_created_field(const spooling_field *fields)
{
table_description *tdescr = (table_description *)fields[0].clientdata;
return tdescr->field_name_created;
}
/****** spool/database/spool_database_get_deleted_field() ***************
* NAME
* spool_database_get_deleted_field() -- return name of deleted field
*
* SYNOPSIS
* const char*
* spool_database_get_deleted_field(const spooling_field *fields)
*
* FUNCTION
* Returns the name of the database field holding the "deleted" information.
* This timestamp field holds the information, when a certain record was
* deleted (only in case of spooling with historical information).
*
* INPUTS
* const spooling_field *fields - structure containing spooling information
*
* RESULT
* const char* - name of the deleted field
*
* SEE ALSO
* ???/???
*******************************************************************************/
const char *
spool_database_get_deleted_field(const spooling_field *fields)
{
table_description *tdescr = (table_description *)fields[0].clientdata;
return tdescr->field_name_deleted;
}
/****** spool/database/spool_database_get_key_nm() **********************
* NAME
* spool_database_get_key_nm() -- return primary key field
*
* SYNOPSIS
* int
* spool_database_get_key_nm(const spooling_field *fields)
*
* FUNCTION
* Returns the nm (CULL attribute identifier) of the primary key attribute
* for the datatype represented by the given fields structure.
*
* INPUTS
* const spooling_field *fields - structure containing spooling information
*
* RESULT
* int - the nm of the primary key attribute
*
* SEE ALSO
* ???/???
*******************************************************************************/
int
spool_database_get_key_nm(const spooling_field *fields)
{
table_description *tdescr = (table_description *)fields[0].clientdata;
return tdescr->key_nm;
}
/****** spool/database/spool_database_get_field_id_list() ***************
* NAME
* spool_database_get_field_id_list() -- get key->id mapping list
*
* SYNOPSIS
* static lList **
* spool_database_get_field_id_list(const spooling_field *fields)
*
* FUNCTION
* Returns the key->id mapping list for a certain spooled object type
* described in the fields structure.
*
* INPUTS
* const spooling_field *fields - structure containing spooling information
*
* RESULT
* static lList ** - pointer to the key->id mapping list
*
* SEE ALSO
* ???/???
*******************************************************************************/
static lList **
spool_database_get_field_id_list(const spooling_field *fields)
{
table_description *tdescr = (table_description *)fields[0].clientdata;
return &tdescr->id_list;
}
/****** spool/database/spool_database_get_fields() **********************
* NAME
* spool_database_get_fields() -- return field information for object type
*
* SYNOPSIS
* spooling_field *
* spool_database_get_fields(const lListElem *rule, sge_object_type type)
*
* FUNCTION
* Returns the spooling information for a certain object type.
*
* INPUTS
* const lListElem *rule - the rule for the spooling method
* sge_object_type type - object type
*
* RESULT
* spooling_field * - spooling information
*
* SEE ALSO
* ???/???
*******************************************************************************/
spooling_field *
spool_database_get_fields(const lListElem *rule, sge_object_type type)
{
sge_database_info *info = (sge_database_info *)lGetRef(rule, SPR_clientdata);
return info->fields[type];
}
spooling_field *
spool_database_get_sub_fields(spooling_field *fields, int nm)
{
spooling_field *ret = NULL;
if (fields != NULL) {
int i;
for (i = 0; fields[i].nm != NoName; i++) {
if (fields[i].nm == nm) {
ret = fields[i].sub_fields;
break;
}
}
}
return ret;
}
/****** spool/database/spool_database_store_id() ************************
* NAME
* spool_database_store_id() -- store an id in the key->id mapping
*
* SYNOPSIS
* bool
* spool_database_store_id(lList **answer_list, const spooling_field *fields,
* const char *parent_key, const char *key,
* const char *id, bool tag)
*
* FUNCTION
* Stores an id in the key->id mapping for the given object type (fields).
* If tag is set to true, the created object is tagged for later analyis.
*
* INPUTS
* lList **answer_list - to return error messages
* const spooling_field *fields - structure containing spooling information
* const char *parent_key - key of a parent object, may be NULL
* const char *key - key to store
* const char *id - id to store
* bool tag - shall the mapping entry be tagged?
*
* RESULT
* bool - true on success,
* else false - error messages are returned in answer_list
*
* SEE ALSO
* ???/???
*******************************************************************************/
bool
spool_database_store_id(lList **answer_list, const spooling_field *fields,
const char *parent_key, const char *key,
const char *id, bool tag)
{
bool ret = true;
lList **id_list;
lListElem *ep;
/* get id list for this field */
id_list = spool_database_get_field_id_list(fields);
/* if we have a parent key: search or create it and create ep in sublist
* else create ep in top level list id_list
*/
if (parent_key != NULL) {
lListElem *parent_ep;
parent_ep = lGetElemStr(*id_list, SPM_key, parent_key);
if (parent_ep == NULL) {
parent_ep = lAddElemStr(id_list, SPM_key, parent_key, SPM_Type);
}
ep = lAddSubStr(parent_ep, SPM_key, key, SPM_sublist, SPM_Type);
} else {
ep = lAddElemStr(id_list, SPM_key, key, SPM_Type);
}
/* finish ep */
lSetString(ep, SPM_id, id);
if (tag) {
lSetBool(ep, SPM_tag, true);
}
return ret;
}
/****** spool/database/spool_database_get_id() **************************
* NAME
* spool_database_get_id() -- get the id for a certain key
*
* SYNOPSIS
* const char *
* spool_database_get_id(lList **answer_list, const spooling_field *fields,
* const char *parent_key, const char *key, bool tag)
*
* FUNCTION
* Searches the key->id mapping for the given object type (fields) for the
* given key.
* If the key is found, the id is returned.
* If tag = true, the mapping entry is tagged for later analyis.
*
* INPUTS
* lList **answer_list - to return error messages
* const spooling_field *fields - structure containing spooling information
* const char *parent_key - key of a parent object, may be NULL
* const char *key - key
* bool tag - shall the mapping entry be tagged?
*
* RESULT
* const char * - the id, if the given key was found,
* else NULL.
* If errors occured, NULL is returned and error messages
* are appended to answer_list.
*
* SEE ALSO
* ???/???
*******************************************************************************/
const char *
spool_database_get_id(lList **answer_list, const spooling_field *fields,
const char *parent_key, const char *key, bool tag)
{
const char *id = NULL;
lList **id_list;
/* get id list for this field */
id_list = spool_database_get_field_id_list(fields);
if (*id_list != NULL) {
lListElem *ep = NULL;
/* if we have a parent_key, search key in parent's sublist
* else search it in the toplevel list id_list
*/
if (parent_key != NULL) {
lListElem *parent_ep = lGetElemStr(*id_list, SPM_key, parent_key);
if (parent_ep != NULL) {
ep = lGetSubStr(parent_ep, SPM_key, key, SPM_sublist);
}
} else {
ep = lGetElemStr(*id_list, SPM_key, key);
}
/* if we found an entry, read id and optionally tag the entry */
if (ep != NULL) {
id = lGetString(ep, SPM_id);
if (tag) {
lSetBool(ep, SPM_tag, true);
}
}
}
return id;
}
/****** spool/database/spool_database_delete_id() ***********************
* NAME
* spool_database_delete_id() -- delete a key->id mapping entry
*
* SYNOPSIS
* bool
* spool_database_delete_id(lList **answer_list,
* const spooling_field *fields,
* const char *parent_key, const char *key)
*
* FUNCTION
* Deletes a certain key from the key-id mapping.
*
* INPUTS
* lList **answer_list - to return error messages
* const spooling_field *fields - structure containing spooling information
* const char *parent_key - key of a parent object
* const char *key - key
*
* RESULT
* bool - true on success,
* else false - error messages are returned in answer_list
*
* SEE ALSO
* ???/???
*******************************************************************************/
bool
spool_database_delete_id(lList **answer_list,
const spooling_field *fields,
const char *parent_key, const char *key)
{
bool ret = false;
lList **id_list;
/* get id list for this field */
id_list = spool_database_get_field_id_list(fields);
if (*id_list != NULL) {
/* if we have a parent_key:
* if no key is specified: delete parent_key
* else delete key entry in parent's sublist
* else delete key in toplevel list id_list
*/
if (parent_key != NULL) {
lListElem *parent_ep = lGetElemStr(*id_list, SPM_key, parent_key);
if (parent_ep != NULL) {
if (key == NULL) {
lRemoveElem(*id_list, &parent_ep);
ret = true;
} else {
if (lDelSubStr(parent_ep, SPM_key, key, SPM_sublist)) {
ret = true;
}
}
}
} else {
/* don't use lDelElemStr - we don't write back id_list! */
lListElem *ep = lGetElemStr(*id_list, SPM_key, key);
if (ep != NULL) {
lRemoveElem(*id_list, &ep);
ret = true;
}
}
}
return ret;
}
/****** spool/database/spool_database_get_id_list() *********************
* NAME
* spool_database_get_id_list() -- get id list for a parent key
*
* SYNOPSIS
* lList *
* spool_database_get_id_list(lList **answer_list,
* const spooling_field *fields,
* const char *parent_key)
*
* FUNCTION
* Returns the list of keys that are stored for a certain parent key.
*
* INPUTS
* lList **answer_list - to return error messages
* const spooling_field *fields - structure containing spooling information
* const char *parent_key - the parent key
*
* RESULT
* lList * - a list of keys stored for the parent_key.
* NULL, if no information was found or an error occured.
* In case of an error, error messages are returned in answer_list
*
* SEE ALSO
* ???/???
*******************************************************************************/
lList *
spool_database_get_id_list(lList **answer_list,
const spooling_field *fields,
const char *parent_key)
{
lList *ret = NULL;
lList **id_list;
/* get id list for this field */
id_list = spool_database_get_field_id_list(fields);
if (*id_list != NULL) {
if (parent_key != NULL) {
lListElem *parent_ep = lGetElemStr(*id_list, SPM_key, parent_key);
if (parent_ep != NULL) {
ret = lGetList(parent_ep, SPM_sublist);
}
} else {
ret = *id_list;
}
}
return ret;
}
/****** spool/database/spool_database_tag_id() **************************
* NAME
* spool_database_tag_id() -- tag an entry in the key->id mapping
*
* SYNOPSIS
* bool
* spool_database_tag_id(lList **answer_list, const spooling_field *fields,
* const char *parent_key, const char *key, bool value)
*
* FUNCTION
* Sets the tag of the specified key->id mapping entries to value.
*
* INPUTS
* lList **answer_list - to return error messages
* const spooling_field *fields - structure containing spooling information
* const char *parent_key - parent key
* const char *key - key
* bool value - the new value for the tag field
*
* RESULT
* bool - true on success,
* else false - error messages are returned in answer_list
*
* SEE ALSO
* ???/???
*******************************************************************************/
bool
spool_database_tag_id(lList **answer_list, const spooling_field *fields,
const char *parent_key, const char *key, bool value)
{
bool ret = false;
lList **id_list;
/* get id list for this field */
id_list = spool_database_get_field_id_list(fields);
if (*id_list != NULL) {
/* if we have a parent_key
* if no key is given: tag all children of parent_key
* else tag ep given by key in parent's sublist
* else search element given by key in id_list and tag it
*/
if (parent_key != NULL) {
lListElem *parent_ep = lGetElemStr(*id_list, SPM_key, parent_key);
if (parent_ep != NULL) {
if (key == NULL) {
lListElem *ep;
for_each(ep, lGetList(parent_ep, SPM_sublist)) {
lSetBool(ep, SPM_tag, value);
ret = true;
}
} else {
lListElem *ep = lGetSubStr(parent_ep, SPM_key, key, SPM_sublist);
if (ep != NULL) {
lSetBool(ep, SPM_tag, value);
ret = true;
}
}
}
} else {
lListElem *ep = lGetElemStr(*id_list, SPM_key, key);
if (ep != NULL) {
lSetBool(ep, SPM_tag, value);
ret = true;
}
}
}
return ret;
}
/****** spool/database/spool_database_object_changed() ******************
* NAME
* spool_database_object_changed() -- check if an object changed
*
* SYNOPSIS
* bool
* spool_database_object_changed(lList **answer_list,
* const lListElem *object,
* const spooling_field *fields)
*
* FUNCTION
* Checks, if an object changed.
* The information is gained by looking at the changed bits stored in a
* CULL object.
* Only the fields that will be spooled will be considered.
* Sublists will NOT be considered.
*
* INPUTS
* lList **answer_list - to return error messages
* const lListElem *object - the object to analyze
* const spooling_field *fields - structure containing spooling information
*
* RESULT
* bool - true, if the object has changed, else false
*
* SEE ALSO
* ???/???
*******************************************************************************/
bool
spool_database_object_changed(lList **answer_list, const lListElem *object,
const spooling_field *fields)
{
bool ret = false;
int i;
const lDescr *descr;
descr = lGetElemDescr(object);
for (i = 0; fields[i].nm != NoName; i++) {
int pos, type;
pos = lGetPosInDescr(descr, fields[i].nm);
if (pos < 0) {
answer_list_add_sprintf(answer_list, STATUS_EUNKNOWN,
ANSWER_QUALITY_ERROR,
MSG_ATTRIBUTENOTINOBJECT_S,
lNm2Str(fields[i].nm));
continue;
}
type = mt_get_type(descr[pos].mt);
if (type != lListT) {
if (lListElem_is_pos_changed(object, pos)) {
ret = true;
break;
}
}
}
return ret;
}
/****** spool/database/spool_database_create_table_description() ********
* NAME
* spool_database_create_table_description() -- create spooling information
*
* SYNOPSIS
* static table_description *
* spool_database_create_table_description(const char *table_name,
* const char *field_name_id,
* const char *field_name_parent_id,
* const char *field_name_valid,
* const char *field_name_created,
* const char *field_name_deleted,
* int key_nm)
*
* FUNCTION
* Creates a structure containing information necessary for database
* spooling, containing for certain object types information like the name
* of the database table to use, the name of certain fields within this
* table etc.
*
* INPUTS
* const char *table_name - the table name
* const char *field_name_id - the name of the id field
* const char *field_name_parent_id - the name of the parent id field
* const char *field_name_valid - the name of the valid field
* const char *field_name_created - the name of the created field
* const char *field_name_deleted - the name of the deleted field
* int key_nm - the CULL nm of the primary key field
*
* RESULT
* static table_description * - the initialized information record
*
* SEE ALSO
* ???/???
*******************************************************************************/
static table_description *
spool_database_create_table_description(lList **answer_list, const char *table_name, const char *prefix, int key_nm, bool sublevel)
{
table_description *description;
DENTER(TOP_LAYER, "spool_database_create_table_description");
description = (table_description *)malloc(sizeof(table_description));
if (description == NULL) {
answer_list_add_sprintf(answer_list, STATUS_EUNKNOWN,
ANSWER_QUALITY_ERROR,
MSG_UNABLETOALLOCATEBYTES_DS,
sizeof(table_description), SGE_FUNC);
} else {
dstring name_dstring;
char name_buffer[30];
sge_dstring_init(&name_dstring, name_buffer, sizeof(name_buffer));
description->table_name = table_name;
description->field_name_id = strdup(sge_dstring_sprintf(&name_dstring, "%s%s", prefix, "_id"));
if (sublevel) {
description->field_name_parent_id = strdup(sge_dstring_sprintf(&name_dstring, "%s%s", prefix, "_parent"));
} else {
description->field_name_parent_id = NULL;
}
description->field_name_created = strdup(sge_dstring_sprintf(&name_dstring, "%s%s", prefix, "_created"));
description->field_name_valid = strdup(sge_dstring_sprintf(&name_dstring, "%s%s", prefix, "_valid"));
description->field_name_deleted = strdup(sge_dstring_sprintf(&name_dstring, "%s%s", prefix, "_deleted"));
description->key_nm = key_nm;
description->id_list = NULL;
}
DEXIT;
return description;
}
#if 0
/****** spool/database/spool_database_set_table_description() ***********
* NAME
* spool_database_set_table_description() -- set table description for nm
*
* SYNOPSIS
* static bool
* spool_database_set_table_description(spooling_field *fields, int nm,
* table_description *description)
*
* FUNCTION
* Sets the table description for a certain field (sublist) in the given
* field structure.
*
* INPUTS
* spooling_field *fields - structure containing spooling information
* int nm - the field (sublist) to change
* table_description *description - the structure containing information for
* the specified sublist
*
* RESULT
* bool - true on success,
* else false
*
* SEE ALSO
* ???/???
*******************************************************************************/
static bool
spool_database_set_table_description(spooling_field *fields, int nm,
table_description *description)
{
bool ret = false;
int i;
for (i = 0; fields[i].nm != NoName; i++) {
if (fields[i].nm == nm) {
spooling_field *sub_fields = fields[i].sub_fields;
if (sub_fields != NULL) {
sub_fields[0].clientdata = description;
ret = true;
}
break;
}
}
return ret;
}
#endif
static bool
spool_database_assign_table_description(lList **answer_list, spooling_field *fields, const char *table_name, const lDescr *descr, bool sublevel)
{
bool ret = true;
DENTER(TOP_LAYER, "spool_database_assign_table_description");
/* create table description for this level */
if (table_name == NULL) {
answer_list_add_sprintf(answer_list, STATUS_EUNKNOWN,
ANSWER_QUALITY_ERROR,
MSG_NOTABLENAMEPASSEDTO_S, SGE_FUNC);
} else {
const char *prefix;
int key_nm;
dstring prefix_dstring;
char prefix_buffer[10];
sge_dstring_init(&prefix_dstring, prefix_buffer, sizeof(prefix_buffer));
prefix = object_get_name_prefix(descr, &prefix_dstring);
key_nm = object_get_primary_key(descr);
if (prefix == NULL || key_nm == NoName) {
answer_list_add_sprintf(answer_list, STATUS_EUNKNOWN,
ANSWER_QUALITY_ERROR,
MSG_UNKNOWNPREFIXORKEYNMFORTABLE_S,
table_name);
ret = false;
} else {
bool recursive_table = false;
int i;
/* create table description for all sublevels */
for (i = 0; fields[i].nm != NoName && ret; i++) {
spooling_field *sub_fields = fields[i].sub_fields;
if (sub_fields != NULL) {
if (sub_fields == fields) {
recursive_table = true;
} else {
const lDescr *sub_descr = object_get_subtype(fields[i].nm);
if (sub_descr == NULL) {
answer_list_add_sprintf(answer_list, STATUS_EUNKNOWN,
ANSWER_QUALITY_ERROR,
MSG_UNKNOWNOBJECTTYPEFOR_SS,
lNm2Str(fields[i].nm), SGE_FUNC);
ret = false;
} else {
const char *sub_table_name;
sub_table_name = spool_database_get_sub_table_name(table_name, fields[i].nm);
if (sub_table_name == NULL) {
answer_list_add_sprintf(answer_list, STATUS_EUNKNOWN,
ANSWER_QUALITY_ERROR,
MSG_UNKNOWNTABLENAMEFORSUBLIST_S,
lNm2Str(fields[i].nm));
ret = false;
} else {
ret = spool_database_assign_table_description(answer_list,
sub_fields,
sub_table_name,
sub_descr,
true);
}
}
}
}
}
/* processing for subfields succeeded. Create info for this level */
if (ret) {
table_description *description;
description = spool_database_create_table_description(answer_list, table_name, prefix, key_nm, (bool)(sublevel || recursive_table));
if (description == NULL) {
/* error messages created in spool_database_create_table_description */
ret = false;
} else {
fields[0].clientdata = description;
}
}
}
}
DEXIT;
return ret;
}
static const char *
spool_database_get_sub_table_name(const char *prefix, int nm)
{
const char *ret = NULL;
dstring table_dstring;
char table_buffer[MAX_STRING_SIZE];
sge_dstring_init(&table_dstring, table_buffer, sizeof(table_buffer));
/* special handling for some very long field names */
switch (nm) {
case PET_granted_destin_identifier_list:
ret = sge_dstring_sprintf(&table_dstring, "%s_%s", prefix, "granted_queues");
break;
case JAT_granted_destin_identifier_list:
ret = sge_dstring_sprintf(&table_dstring, "%s_%s", prefix, "granted_queues");
break;
default:
{
const char *name;
name = lNm2Str(nm);
if (name != NULL) {
const char *postfix;
postfix = strchr(name, '_');
if (postfix == NULL) {
postfix = name;
} else {
postfix++;
}
ret = sge_dstring_sprintf(&table_dstring, "%s_%s",
prefix, postfix);
}
}
break;
}
if (ret != NULL) {
ret = strdup(ret);
}
return ret;
}
|