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 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618
|
/*
* Copyright 2001-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* $Id: SAMLDateTime.cpp,v 1.4 2005/02/14 22:35:17 cantor Exp $
*/
/*
* This is mostly copied from Xerces-C, but they don't seem inclined to produce a usable
* class, so I had to incorporate my own version of it for now. I can't inherit it
* since the fields I need are private.
*/
#include "internal.h"
#ifndef WIN32
# include <errno.h>
#endif
#include <ctime>
#include <xercesc/util/Janitor.hpp>
#include <xercesc/util/NumberFormatException.hpp>
using namespace saml;
using namespace std;
//
// constants used to process raw data (fBuffer)
//
// [-]{CCYY-MM-DD}'T'{HH:MM:SS.MS}['Z']
// [{+|-}hh:mm']
//
static const XMLCh DURATION_STARTER = chLatin_P; // 'P'
static const XMLCh DURATION_Y = chLatin_Y; // 'Y'
static const XMLCh DURATION_M = chLatin_M; // 'M'
static const XMLCh DURATION_D = chLatin_D; // 'D'
static const XMLCh DURATION_H = chLatin_H; // 'H'
static const XMLCh DURATION_S = chLatin_S; // 'S'
static const XMLCh DATE_SEPARATOR = chDash; // '-'
static const XMLCh TIME_SEPARATOR = chColon; // ':'
static const XMLCh TIMEZONE_SEPARATOR = chColon; // ':'
static const XMLCh DATETIME_SEPARATOR = chLatin_T; // 'T'
static const XMLCh MILISECOND_SEPARATOR = chPeriod; // '.'
static const XMLCh UTC_STD_CHAR = chLatin_Z; // 'Z'
static const XMLCh UTC_POS_CHAR = chPlus; // '+'
static const XMLCh UTC_NEG_CHAR = chDash; // '-'
static const XMLCh UTC_SET[] = {UTC_STD_CHAR //"Z+-"
, UTC_POS_CHAR
, UTC_NEG_CHAR
, chNull};
static const int YMD_MIN_SIZE = 10; // CCYY-MM-DD
static const int YMONTH_MIN_SIZE = 7; // CCYY_MM
static const int TIME_MIN_SIZE = 8; // hh:mm:ss
static const int TIMEZONE_SIZE = 5; // hh:mm
static const int DAY_SIZE = 5; // ---DD
//static const int MONTH_SIZE = 6; // --MM--
static const int MONTHDAY_SIZE = 7; // --MM-DD
static const int NOT_FOUND = -1;
//define constants to be used in assigning default values for
//all date/time excluding duration
static const int YEAR_DEFAULT = 2000;
static const int MONTH_DEFAULT = 01;
static const int DAY_DEFAULT = 15;
// order-relation on duration is a partial order. The dates below are used to
// for comparison of 2 durations, based on the fact that
// duration x and y is x<=y iff s+x<=s+y
// see 3.2.6 duration W3C schema datatype specs
//
// the dates are in format: {CCYY,MM,DD, H, S, M, MS, timezone}
const int SAMLDateTime::DATETIMES[][TOTAL_SIZE] =
{
{1696, 9, 1, 0, 0, 0, 0, UTC_STD},
{1697, 2, 1, 0, 0, 0, 0, UTC_STD},
{1903, 3, 1, 0, 0, 0, 0, UTC_STD},
{1903, 7, 1, 0, 0, 0, 0, UTC_STD}
};
// ---------------------------------------------------------------------------
// local methods
// ---------------------------------------------------------------------------
static inline int fQuotient(int a, int b)
{
div_t div_result = div(a, b);
return div_result.quot;
}
static inline int fQuotient(int temp, int low, int high)
{
return fQuotient(temp - low, high - low);
}
static inline int mod(int a, int b, int quotient)
{
return (a - quotient*b) ;
}
static inline int modulo (int temp, int low, int high)
{
//modulo(a - low, high - low) + low
int a = temp - low;
int b = high - low;
return (mod (a, b, fQuotient(a, b)) + low) ;
}
static inline bool isLeapYear(int year)
{
return((year%4 == 0) && ((year%100 != 0) || (year%400 == 0)));
}
static int maxDayInMonthFor(int year, int month)
{
if ( month == 4 || month == 6 || month == 9 || month == 11 )
{
return 30;
}
else if ( month==2 )
{
if ( isLeapYear(year) )
return 29;
else
return 28;
}
else
{
return 31;
}
}
// ---------------------------------------------------------------------------
// static methods : for duration
// ---------------------------------------------------------------------------
/**
* Compares 2 given durations. (refer to W3C Schema Datatypes "3.2.6 duration")
*
* 3.2.6.2 Order relation on duration
*
* In general, the order-relation on duration is a partial order since there is no
* determinate relationship between certain durations such as one month (P1M) and 30 days (P30D).
* The order-relation of two duration values x and y is x < y iff s+x < s+y for each qualified
* dateTime s in the list below.
*
* These values for s cause the greatest deviations in the addition of dateTimes and durations
*
**/
int SAMLDateTime::compare(const SAMLDateTime* const pDate1
, const SAMLDateTime* const pDate2
, bool strict)
{
//REVISIT: this is unoptimazed vs of comparing 2 durations
// Algorithm is described in 3.2.6.2 W3C Schema Datatype specs
//
int resultA, resultB = XMLDateTime::INDETERMINATE;
//try and see if the objects are equal
if ( (resultA = compareOrder(pDate1, pDate2)) == XMLDateTime::EQUAL)
return XMLDateTime::EQUAL;
//long comparison algorithm is required
SAMLDateTime tempA, *pTempA = &tempA;
SAMLDateTime tempB, *pTempB = &tempB;
addDuration(pTempA, pDate1, 0);
addDuration(pTempB, pDate2, 0);
resultA = compareOrder(pTempA, pTempB);
if ( resultA == XMLDateTime::INDETERMINATE )
return XMLDateTime::INDETERMINATE;
addDuration(pTempA, pDate1, 1);
addDuration(pTempB, pDate2, 1);
resultB = compareOrder(pTempA, pTempB);
resultA = compareResult(resultA, resultB, strict);
if ( resultA == XMLDateTime::INDETERMINATE )
return XMLDateTime::INDETERMINATE;
addDuration(pTempA, pDate1, 2);
addDuration(pTempB, pDate2, 2);
resultB = compareOrder(pTempA, pTempB);
resultA = compareResult(resultA, resultB, strict);
if ( resultA == XMLDateTime::INDETERMINATE )
return XMLDateTime::INDETERMINATE;
addDuration(pTempA, pDate1, 3);
addDuration(pTempB, pDate2, 3);
resultB = compareOrder(pTempA, pTempB);
resultA = compareResult(resultA, resultB, strict);
return resultA;
}
//
// Form a new SAMLDateTime with duration and baseDate array
// Note: C++ Java
// fNewDate duration
// fDuration date
//
void SAMLDateTime::addDuration(SAMLDateTime* fNewDate
, const SAMLDateTime* const fDuration
, int index)
{
//REVISIT: some code could be shared between normalize() and this method,
// however is it worth moving it? The structures are different...
//
fNewDate->reset();
//add months (may be modified additionaly below)
int temp = DATETIMES[index][Month] + fDuration->fValue[Month];
fNewDate->fValue[Month] = modulo(temp, 1, 13);
int carry = fQuotient(temp, 1, 13);
//add years (may be modified additionaly below)
fNewDate->fValue[CentYear] =
DATETIMES[index][CentYear] + fDuration->fValue[CentYear] + carry;
//add seconds
temp = DATETIMES[index][Second] + fDuration->fValue[Second];
carry = fQuotient (temp, 60);
fNewDate->fValue[Second] = mod(temp, 60, carry);
//add minutes
temp = DATETIMES[index][Minute] + fDuration->fValue[Minute] + carry;
carry = fQuotient(temp, 60);
fNewDate->fValue[Minute] = mod(temp, 60, carry);
//add hours
temp = DATETIMES[index][Hour] + fDuration->fValue[Hour] + carry;
carry = fQuotient(temp, 24);
fNewDate->fValue[Hour] = mod(temp, 24, carry);
fNewDate->fValue[Day] =
DATETIMES[index][Day] + fDuration->fValue[Day] + carry;
while ( true )
{
temp = maxDayInMonthFor(fNewDate->fValue[CentYear], fNewDate->fValue[Month]);
if ( fNewDate->fValue[Day] < 1 )
{ //original fNewDate was negative
fNewDate->fValue[Day] +=
maxDayInMonthFor(fNewDate->fValue[CentYear], fNewDate->fValue[Month]-1);
carry = -1;
}
else if ( fNewDate->fValue[Day] > temp )
{
fNewDate->fValue[Day] -= temp;
carry = 1;
}
else
{
break;
}
temp = fNewDate->fValue[Month] + carry;
fNewDate->fValue[Month] = modulo(temp, 1, 13);
fNewDate->fValue[CentYear] += fQuotient(temp, 1, 13);
}
//fNewDate->fValue[utc] = UTC_STD_CHAR;
fNewDate->fValue[utc] = UTC_STD;
}
int SAMLDateTime::compareResult(int resultA
, int resultB
, bool strict)
{
if ( resultB == XMLDateTime::INDETERMINATE )
{
return XMLDateTime::INDETERMINATE;
}
else if ( (resultA != resultB) &&
strict )
{
return XMLDateTime::INDETERMINATE;
}
else if ( (resultA != resultB) &&
!strict )
{
if ( (resultA != XMLDateTime::EQUAL) &&
(resultB != XMLDateTime::EQUAL) )
{
return XMLDateTime::INDETERMINATE;
}
else
{
return (resultA != XMLDateTime::EQUAL)? resultA : resultB;
}
}
return resultA;
}
// ---------------------------------------------------------------------------
// static methods : for others
// ---------------------------------------------------------------------------
int SAMLDateTime::compare(const SAMLDateTime* const pDate1
, const SAMLDateTime* const pDate2)
{
if (pDate1->fValue[utc] == pDate2->fValue[utc])
{
return SAMLDateTime::compareOrder(pDate1, pDate2);
}
int c1, c2;
if ( pDate1->isNormalized())
{
c1 = compareResult(pDate1, pDate2, false, UTC_POS);
c2 = compareResult(pDate1, pDate2, false, UTC_NEG);
return getRetVal(c1, c2);
}
else if ( pDate2->isNormalized())
{
c1 = compareResult(pDate1, pDate2, true, UTC_POS);
c2 = compareResult(pDate1, pDate2, true, UTC_NEG);
return getRetVal(c1, c2);
}
return XMLDateTime::INDETERMINATE;
}
int SAMLDateTime::compareResult(const SAMLDateTime* const pDate1
, const SAMLDateTime* const pDate2
, bool set2Left
, int utc_type)
{
SAMLDateTime tmpDate = (set2Left ? *pDate1 : *pDate2);
tmpDate.fTimeZone[hh] = 14;
tmpDate.fTimeZone[mm] = 0;
tmpDate.fValue[utc] = utc_type;
tmpDate.normalize();
return (set2Left? SAMLDateTime::compareOrder(&tmpDate, pDate2) :
SAMLDateTime::compareOrder(pDate1, &tmpDate));
}
int SAMLDateTime::compareOrder(const SAMLDateTime* const lValue
, const SAMLDateTime* const rValue)
//, MemoryManager* const memMgr)
{
//
// If any of the them is not normalized() yet,
// we need to do something here.
//
SAMLDateTime lTemp = *lValue;
SAMLDateTime rTemp = *rValue;
lTemp.normalize();
rTemp.normalize();
for ( int i = 0 ; i < TOTAL_SIZE; i++ )
{
if ( lTemp.fValue[i] < rTemp.fValue[i] )
{
return XMLDateTime::LESS_THAN;
}
else if ( lTemp.fValue[i] > rTemp.fValue[i] )
{
return XMLDateTime::GREATER_THAN;
}
}
if ( lTemp.fHasTime)
{
if ( lTemp.fMiliSecond < rTemp.fMiliSecond )
{
return XMLDateTime::LESS_THAN;
}
else if ( lTemp.fMiliSecond > rTemp.fMiliSecond )
{
return XMLDateTime::GREATER_THAN;
}
}
return XMLDateTime::EQUAL;
}
// ---------------------------------------------------------------------------
// ctor and dtor
// ---------------------------------------------------------------------------
SAMLDateTime::~SAMLDateTime()
{
delete[] fBuffer;
}
SAMLDateTime::SAMLDateTime()
: fStart(0)
, fEnd(0)
, fBufferMaxLen(0)
, fBuffer(0)
, fMiliSecond(0)
, fHasTime(false)
{
reset();
}
SAMLDateTime::SAMLDateTime(const XMLCh* const aString)
: fStart(0)
, fEnd(0)
, fBufferMaxLen(0)
, fBuffer(0)
, fMiliSecond(0)
, fHasTime(false)
{
setBuffer(aString);
}
SAMLDateTime::SAMLDateTime(time_t epoch)
: fStart(0)
, fEnd(0)
, fBufferMaxLen(0)
, fBuffer(0)
, fMiliSecond(0)
, fHasTime(false)
{
#ifndef HAVE_GMTIME_R
struct tm* ptime=gmtime(&epoch);
#else
struct tm res;
struct tm* ptime=gmtime_r(&epoch,&res);
#endif
char timebuf[32];
strftime(timebuf,32,"%Y-%m-%dT%H:%M:%SZ",ptime);
auto_ptr_XMLCh timeptr(timebuf);
setBuffer(timeptr.get());
}
// -----------------------------------------------------------------------
// Copy ctor and Assignment operators
// -----------------------------------------------------------------------
SAMLDateTime::SAMLDateTime(const SAMLDateTime &toCopy)
: fBufferMaxLen(0)
, fBuffer(0)
{
copy(toCopy);
}
SAMLDateTime& SAMLDateTime::operator=(const SAMLDateTime& rhs)
{
if (this == &rhs)
return *this;
copy(rhs);
return *this;
}
// -----------------------------------------------------------------------
// Implementation of Abstract Interface
// -----------------------------------------------------------------------
//
// We may simply return the handle to fBuffer
//
const XMLCh* SAMLDateTime::getRawData() const
{
//assertBuffer();
return fBuffer;
}
const XMLCh* SAMLDateTime::getFormattedString() const
{
return getRawData();
}
int SAMLDateTime::getSign() const
{
return 0;
}
time_t SAMLDateTime::getEpoch() const
{
struct tm t;
t.tm_sec=getSecond();
t.tm_min=getMinute();
t.tm_hour=getHour();
t.tm_mday=getDay();
t.tm_mon=getMonth()-1;
t.tm_year=getYear()-1900;
t.tm_isdst=0;
#if defined(HAVE_TIMEGM)
return timegm(&t);
#else
// Windows, and hopefully most others...?
return mktime(&t) - timezone;
#endif
}
// ---------------------------------------------------------------------------
// Parsers
// ---------------------------------------------------------------------------
//
// [-]{CCYY-MM-DD}'T'{HH:MM:SS.MS}[TimeZone]
//
void SAMLDateTime::parseDateTime()
{
initParser();
getDate();
//fStart is supposed to point to 'T'
if (fBuffer[fStart++] != DATETIME_SEPARATOR)
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_gDay_invalid
, fBuffer);
getTime();
validateDateTime();
normalize();
fHasTime = true;
}
//
// [-]{CCYY-MM-DD}[TimeZone]
//
void SAMLDateTime::parseDate()
{
initParser();
getDate();
parseTimeZone();
validateDateTime();
normalize();
}
void SAMLDateTime::parseTime()
{
initParser();
// time initialize to default values
fValue[CentYear]= YEAR_DEFAULT;
fValue[Month] = MONTH_DEFAULT;
fValue[Day] = DAY_DEFAULT;
getTime();
validateDateTime();
normalize();
fHasTime = true;
}
//
// {---DD}[TimeZone]
// 01234
//
void SAMLDateTime::parseDay()
{
initParser();
if (fBuffer[0] != DATE_SEPARATOR ||
fBuffer[1] != DATE_SEPARATOR ||
fBuffer[2] != DATE_SEPARATOR )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_gDay_invalid
, fBuffer);
}
//initialize values
fValue[CentYear] = YEAR_DEFAULT;
fValue[Month] = MONTH_DEFAULT;
fValue[Day] = parseInt(fStart+3, fStart+5);
if ( DAY_SIZE < fEnd )
{
int sign = findUTCSign(DAY_SIZE);
if ( sign < 0 )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_gDay_invalid
, fBuffer);
}
else
{
getTimeZone(sign);
}
}
validateDateTime();
normalize();
}
//
// {--MM--}[TimeZone]
// {--MM}[TimeZone]
// 012345
//
void SAMLDateTime::parseMonth()
{
initParser();
if (fBuffer[0] != DATE_SEPARATOR ||
fBuffer[1] != DATE_SEPARATOR )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_gMth_invalid
, fBuffer);
}
//set constants
fValue[CentYear] = YEAR_DEFAULT;
fValue[Day] = DAY_DEFAULT;
fValue[Month] = parseInt(2, 4);
// REVISIT: allow both --MM and --MM-- now.
// need to remove the following lines to disallow --MM--
// when the errata is officially in the rec.
fStart = 4;
if ( fEnd >= fStart+2 && fBuffer[fStart] == DATE_SEPARATOR && fBuffer[fStart+1] == DATE_SEPARATOR )
{
fStart += 2;
}
//
// parse TimeZone if any
//
if ( fStart < fEnd )
{
int sign = findUTCSign(fStart);
if ( sign < 0 )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_gMth_invalid
, fBuffer);
}
else
{
getTimeZone(sign);
}
}
validateDateTime();
normalize();
}
//
//[-]{CCYY}[TimeZone]
// 0 1234
//
void SAMLDateTime::parseYear()
{
initParser();
// skip the first '-' and search for timezone
//
int sign = findUTCSign((fBuffer[0] == chDash) ? 1 : 0);
if (sign == NOT_FOUND)
{
fValue[CentYear] = parseIntYear(fEnd);
}
else
{
fValue[CentYear] = parseIntYear(sign);
getTimeZone(sign);
}
//initialize values
fValue[Month] = MONTH_DEFAULT;
fValue[Day] = DAY_DEFAULT; //java is 1
validateDateTime();
normalize();
}
//
//{--MM-DD}[TimeZone]
// 0123456
//
void SAMLDateTime::parseMonthDay()
{
initParser();
if (fBuffer[0] != DATE_SEPARATOR ||
fBuffer[1] != DATE_SEPARATOR ||
fBuffer[4] != DATE_SEPARATOR )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_gMthDay_invalid
, fBuffer);
}
//initialize
fValue[CentYear] = YEAR_DEFAULT;
fValue[Month] = parseInt(2, 4);
fValue[Day] = parseInt(5, 7);
if ( MONTHDAY_SIZE < fEnd )
{
int sign = findUTCSign(MONTHDAY_SIZE);
if ( sign<0 )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_gMthDay_invalid
, fBuffer);
}
else
{
getTimeZone(sign);
}
}
validateDateTime();
normalize();
}
void SAMLDateTime::parseYearMonth()
{
initParser();
// get date
getYearMonth();
fValue[Day] = DAY_DEFAULT;
parseTimeZone();
validateDateTime();
normalize();
}
//
//PnYn MnDTnH nMnS: -P1Y2M3DT10H30M
//
// [-]{'P'{[n'Y'][n'M'][n'D']['T'][n'H'][n'M'][n'S']}}
//
// Note: the n above shall be >= 0
// if no time element found, 'T' shall be absent
//
void SAMLDateTime::parseDuration()
{
initParser();
// must start with '-' or 'P'
//
XMLCh c = fBuffer[fStart++];
if ( (c != DURATION_STARTER) &&
(c != chDash) )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_dur_Start_dashP
, fBuffer);
}
// 'P' must ALWAYS be present in either case
if ( (c == chDash) &&
(fBuffer[fStart++]!= DURATION_STARTER ))
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_dur_noP
, fBuffer);
}
// java code
//date[utc]=(c=='-')?'-':0;
//fValue[utc] = UTC_STD;
fValue[utc] = (fBuffer[0] == chDash? UTC_NEG : UTC_STD);
int negate = ( fBuffer[0] == chDash ? -1 : 1);
//
// No negative value is allowed after 'P'
//
// eg P-1234, invalid
//
if (indexOf(fStart, fEnd, chDash) != NOT_FOUND)
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_dur_DashNotFirst
, fBuffer);
}
//at least one number and designator must be seen after P
bool designator = false;
int endDate = indexOf(fStart, fEnd, DATETIME_SEPARATOR);
if ( endDate == NOT_FOUND )
{
endDate = fEnd; // 'T' absent
}
//find 'Y'
int end = indexOf(fStart, endDate, DURATION_Y);
if ( end != NOT_FOUND )
{
//scan year
fValue[CentYear] = negate * parseInt(fStart, end);
fStart = end+1;
designator = true;
}
end = indexOf(fStart, endDate, DURATION_M);
if ( end != NOT_FOUND )
{
//scan month
fValue[Month] = negate * parseInt(fStart, end);
fStart = end+1;
designator = true;
}
end = indexOf(fStart, endDate, DURATION_D);
if ( end != NOT_FOUND )
{
//scan day
fValue[Day] = negate * parseInt(fStart,end);
fStart = end+1;
designator = true;
}
if ( (fEnd == endDate) && // 'T' absent
(fStart != fEnd) ) // something after Day
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_dur_inv_b4T
, fBuffer);
}
if ( fEnd != endDate ) // 'T' present
{
//scan hours, minutes, seconds
//
// skip 'T' first
end = indexOf(++fStart, fEnd, DURATION_H);
if ( end != NOT_FOUND )
{
//scan hours
fValue[Hour] = negate * parseInt(fStart, end);
fStart = end+1;
designator = true;
}
end = indexOf(fStart, fEnd, DURATION_M);
if ( end != NOT_FOUND )
{
//scan min
fValue[Minute] = negate * parseInt(fStart, end);
fStart = end+1;
designator = true;
}
end = indexOf(fStart, fEnd, DURATION_S);
if ( end != NOT_FOUND )
{
//scan seconds
int mlsec = indexOf (fStart, end, MILISECOND_SEPARATOR);
/***
* Schema Errata: E2-23
* at least one digit must follow the decimal point if it appears.
* That is, the value of the seconds component must conform
* to the following pattern: [0-9]+(.[0-9]+)?
*/
if ( mlsec != NOT_FOUND )
{
/***
* make usure there is something after the '.' and before the end.
*/
if ( mlsec+1 == end )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_dur_inv_seconds
, fBuffer);
}
fValue[Second] = negate * parseInt(fStart, mlsec);
fMiliSecond = negate * parseMiliSecond(mlsec+1, end);
}
else
{
fValue[Second] = negate * parseInt(fStart,end);
}
fStart = end+1;
designator = true;
}
// no additional data should appear after last item
// P1Y1M1DT is illigal value as well
if ( (fStart != fEnd) ||
fBuffer[--fStart] == DATETIME_SEPARATOR )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_dur_NoTimeAfterT
, fBuffer);
}
}
if ( !designator )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_dur_NoElementAtAll
, fBuffer);
}
}
// ---------------------------------------------------------------------------
// Scanners
// ---------------------------------------------------------------------------
//
// [-]{CCYY-MM-DD}
//
// Note: CCYY could be more than 4 digits
// Assuming fStart point to the beginning of the Date Section
// fStart updated to point to the position right AFTER the second 'D'
// Since the lenght of CCYY might be variable, we can't check format upfront
//
void SAMLDateTime::getDate()
{
// Ensure enough chars in buffer
if ( (fStart+YMD_MIN_SIZE) > fEnd)
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_date_incomplete
, fBuffer);
getYearMonth(); // Scan YearMonth and
// fStart point to the next '-'
if (fBuffer[fStart++] != DATE_SEPARATOR)
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_date_invalid
, fBuffer);
//("CCYY-MM must be followed by '-' sign");
}
fValue[Day] = parseInt(fStart, fStart+2);
fStart += 2 ; //fStart points right after the Day
return;
}
//
// hh:mm:ss[.msssss]['Z']
// hh:mm:ss[.msssss][['+'|'-']hh:mm]
// 012345678
//
// Note: Assuming fStart point to the beginning of the Time Section
// fStart updated to point to the position right AFTER the second 's'
// or ms if any
//
void SAMLDateTime::getTime()
{
// Ensure enough chars in buffer
if ( (fStart+TIME_MIN_SIZE) > fEnd)
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_time_incomplete
, fBuffer);
//"Imcomplete Time Format"
// check (fixed) format first
if ((fBuffer[fStart + 2] != TIME_SEPARATOR) ||
(fBuffer[fStart + 5] != TIME_SEPARATOR) )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_time_invalid
, fBuffer);
//("Error in parsing time" );
}
//
// get hours, minute and second
//
fValue[Hour] = parseInt(fStart + 0, fStart + 2);
fValue[Minute] = parseInt(fStart + 3, fStart + 5);
fValue[Second] = parseInt(fStart + 6, fStart + 8);
fStart += 8;
// to see if any ms and/or utc part after that
if (fStart >= fEnd)
return;
//find UTC sign if any
int sign = findUTCSign(fStart);
//parse miliseconds
int milisec = (fBuffer[fStart] == MILISECOND_SEPARATOR)? fStart : NOT_FOUND;
if ( milisec != NOT_FOUND )
{
fStart++; // skip the '.'
// make sure we have some thing between the '.' and fEnd
if (fStart >= fEnd)
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_ms_noDigit
, fBuffer);
//("ms shall be present once '.' is present" );
}
if ( sign == NOT_FOUND )
{
fMiliSecond = parseMiliSecond(fStart, fEnd); //get ms between '.' and fEnd
fStart = fEnd;
}
else
{
fMiliSecond = parseMiliSecond(fStart, sign); //get ms between UTC sign and fEnd
}
}
else if(sign == 0 || sign != fStart)
{
// seconds has more than 2 digits
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_min_invalid
, fBuffer);
}
//parse UTC time zone (hh:mm)
if ( sign > 0 ) {
getTimeZone(sign);
}
}
//
// [-]{CCYY-MM}
//
// Note: CCYY could be more than 4 digits
// fStart updated to point AFTER the second 'M' (probably meet the fEnd)
//
void SAMLDateTime::getYearMonth()
{
// Ensure enough chars in buffer
if ( (fStart+YMONTH_MIN_SIZE) > fEnd)
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_ym_incomplete
, fBuffer);
//"Imcomplete YearMonth Format";
// skip the first leading '-'
int start = ( fBuffer[0] == chDash ) ? fStart + 1 : fStart;
//
// search for year separator '-'
//
int yearSeparator = indexOf(start, fEnd, DATE_SEPARATOR);
if ( yearSeparator == NOT_FOUND)
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_ym_invalid
, fBuffer);
//("Year separator is missing or misplaced");
fValue[CentYear] = parseIntYear(yearSeparator);
fStart = yearSeparator + 1; //skip the '-' and point to the first M
//
//gonna check we have enough byte for month
//
if ((fStart + 2) > fEnd )
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_ym_noMonth
, fBuffer);
//"no month in buffer"
fValue[Month] = parseInt(fStart, yearSeparator + 3);
fStart += 2; //fStart points right after the MONTH
return;
}
void SAMLDateTime::parseTimeZone()
{
if ( fStart < fEnd )
{
int sign = findUTCSign(fStart);
if ( sign < 0 )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_tz_noUTCsign
, fBuffer);
//("Error in month parsing");
}
else
{
getTimeZone(sign);
}
}
return;
}
//
// 'Z'
// ['+'|'-']hh:mm
//
// Note: Assuming fStart points to the beginning of TimeZone section
// fStart updated to meet fEnd
//
void SAMLDateTime::getTimeZone(const int sign)
{
if ( fBuffer[sign] == UTC_STD_CHAR )
{
if ((sign + 1) != fEnd )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_tz_stuffAfterZ
, fBuffer);
//"Error in parsing time zone");
}
return;
}
//
// otherwise, it has to be this format
// '[+|-]'hh:mm
// 1 23456 7
// sign fEnd
//
if ( ( ( sign + TIMEZONE_SIZE + 1) != fEnd ) ||
( fBuffer[sign + 3] != TIMEZONE_SEPARATOR ) )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_tz_invalid
, fBuffer);
//("Error in parsing time zone");
}
fTimeZone[hh] = parseInt(sign+1, sign+3);
fTimeZone[mm] = parseInt(sign+4, fEnd);
return;
}
// ---------------------------------------------------------------------------
// Validator and normalizer
// ---------------------------------------------------------------------------
/**
* If timezone present - normalize dateTime [E Adding durations to dateTimes]
*
* @param date CCYY-MM-DDThh:mm:ss+03
* @return CCYY-MM-DDThh:mm:ssZ
*/
void SAMLDateTime::normalize()
{
if ((fValue[utc] == UTC_UNKNOWN) ||
(fValue[utc] == UTC_STD) )
return;
int negate = (fValue[utc] == UTC_POS)? -1: 1;
// add mins
int temp = fValue[Minute] + negate * fTimeZone[mm];
int carry = fQuotient(temp, 60);
fValue[Minute] = mod(temp, 60, carry);
//add hours
temp = fValue[Hour] + negate * fTimeZone[hh] + carry;
carry = fQuotient(temp, 24);
fValue[Hour] = mod(temp, 24, carry);
fValue[Day] += carry;
while (1)
{
temp = maxDayInMonthFor(fValue[CentYear], fValue[Month]);
if (fValue[Day] < 1)
{
fValue[Day] += maxDayInMonthFor(fValue[CentYear], fValue[Month] - 1);
carry = -1;
}
else if ( fValue[Day] > temp )
{
fValue[Day] -= temp;
carry = 1;
}
else
{
break;
}
temp = fValue[Month] + carry;
fValue[Month] = modulo(temp, 1, 13);
fValue[CentYear] += fQuotient(temp, 1, 13);
}
// set to normalized
fValue[utc] = UTC_STD;
return;
}
void SAMLDateTime::validateDateTime() const
{
//REVISIT: should we throw an exception for not valid dates
// or reporting an error message should be sufficient?
if ( fValue[CentYear] == 0 )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_year_zero
, fBuffer);
//"The year \"0000\" is an illegal year value");
}
if ( fValue[Month] < 1 ||
fValue[Month] > 12 )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_mth_invalid
, fBuffer);
//"The month must have values 1 to 12");
}
//validate days
if ( fValue[Day] > maxDayInMonthFor( fValue[CentYear], fValue[Month]) ||
fValue[Day] == 0 )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_day_invalid
, fBuffer);
//"The day must have values 1 to 31");
}
//validate hours
if ((fValue[Hour] < 0) ||
(fValue[Hour] > 24) ||
((fValue[Hour] == 24) && ((fValue[Minute] !=0) ||
(fValue[Second] !=0) ||
(fMiliSecond !=0))))
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_hour_invalid
, fBuffer);
//("Hour must have values 0-23");
}
//validate minutes
if ( fValue[Minute] < 0 ||
fValue[Minute] > 59 )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_min_invalid
, fBuffer);
//"Minute must have values 0-59");
}
//validate seconds
if ( fValue[Second] < 0 ||
fValue[Second] > 60 )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_second_invalid
, fBuffer);
//"Second must have values 0-60");
}
//validate time-zone hours
if ( (abs(fTimeZone[hh]) > 14) ||
((abs(fTimeZone[hh]) == 14) && (fTimeZone[mm] != 0)) )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_tz_hh_invalid
, fBuffer);
//"Time zone should have range -14..+14");
}
//validate time-zone minutes
if ( abs(fTimeZone[mm]) > 59 )
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_min_invalid
, fBuffer);
//("Minute must have values 0-59");
}
return;
}
// -----------------------------------------------------------------------
// locator and converter
// -----------------------------------------------------------------------
int SAMLDateTime::indexOf(const int start, const int end, const XMLCh ch) const
{
for ( int i = start; i < end; i++ )
if ( fBuffer[i] == ch )
return i;
return NOT_FOUND;
}
int SAMLDateTime::findUTCSign (const int start)
{
int pos;
for ( int index = start; index < fEnd; index++ )
{
pos = XMLString::indexOf(UTC_SET, fBuffer[index]);
if ( pos != NOT_FOUND)
{
fValue[utc] = pos+1; // refer to utcType, there is 1 diff
return index;
}
}
return NOT_FOUND;
}
//
// Note:
// start: starting point in fBuffer
// end: ending point in fBuffer (exclusive)
// fStart NOT updated
//
int SAMLDateTime::parseInt(const int start, const int end) const
{
unsigned int retVal = 0;
for (int i=start; i < end; i++) {
if (fBuffer[i] < chDigit_0 || fBuffer[i] > chDigit_9)
ThrowXML(NumberFormatException, XMLExcepts::XMLNUM_Inv_chars);
retVal = (retVal * 10) + (unsigned int) (fBuffer[i] - chDigit_0);
}
return (int) retVal;
}
//
// Note:
// start: pointing to the first digit after the '.'
// end: pointing to one position after the last digit
// fStart NOT updated
//
double SAMLDateTime::parseMiliSecond(const int start, const int end) const
{
unsigned int miliSecLen = (end-1) - (start-1) + 1; //to include the '.'
XMLCh* miliSecData = new XMLCh[miliSecLen + 1];
ArrayJanitor<XMLCh> janMili(miliSecData);
XMLString::copyNString(miliSecData, &(fBuffer[start-1]), miliSecLen);
*(miliSecData + miliSecLen) = chNull;
char *nptr = XMLString::transcode(miliSecData);
ArrayJanitor<char> jan(nptr);
int strLen = strlen(nptr);
char *endptr = 0;
errno = 0;
//printf("milisec=<%s>\n", nptr);
double retVal = strtod(nptr, &endptr);
// check if all chars are valid char
if ( (endptr - nptr) != strLen)
ThrowXML(NumberFormatException, XMLExcepts::XMLNUM_Inv_chars);
// we don't check underflow occurs since
// nothing we can do about it.
return retVal;
}
//
// [-]CCYY
//
// Note: start from fStart
// end (exclusive)
// fStart NOT updated
//
int SAMLDateTime::parseIntYear(const int end) const
{
// skip the first leading '-'
int start = ( fBuffer[0] == chDash ) ? fStart + 1 : fStart;
int length = end - start;
if (length < 4)
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_year_tooShort
, fBuffer);
//"Year must have 'CCYY' format");
}
else if (length > 4 &&
fBuffer[start] == chDigit_0)
{
ThrowXML1(SchemaDateTimeException
, XMLExcepts::DateTime_year_leadingZero
, fBuffer);
//"Leading zeros are required if the year value would otherwise have fewer than four digits;
// otherwise they are forbidden");
}
bool negative = (fBuffer[0] == chDash);
int yearVal = parseInt((negative ? 1 : 0), end);
return ( negative ? (-1) * yearVal : yearVal );
}
/***
* E2-41
*
* 3.2.7.2 Canonical representation
*
* Except for trailing fractional zero digits in the seconds representation,
* '24:00:00' time representations, and timezone (for timezoned values),
* the mapping from literals to values is one-to-one. Where there is more
* than one possible representation, the canonical representation is as follows:
* redundant trailing zero digits in fractional-second literals are prohibited.
* An hour representation of '24' is prohibited. Timezoned values are canonically
* represented by appending 'Z' to the nontimezoned representation. (All
* timezoned dateTime values are UTC.)
*
* .'24:00:00' -> '00:00:00'
* .milisecond: trailing zeros removed
* .'Z'
*
***/
XMLCh* SAMLDateTime::getDateTimeCanonicalRepresentation() const
{
XMLCh *miliStartPtr, *miliEndPtr;
searchMiliSeconds(miliStartPtr, miliEndPtr);
int miliSecondsLen = miliEndPtr - miliStartPtr;
XMLCh* retBuf = new XMLCh[21 + miliSecondsLen + 2];
XMLCh* retPtr = retBuf;
// (-?) cc+yy-mm-dd'T'hh:mm:ss'Z' ('.'s+)?
// 2+ 8 1 8 1
//
int additionalLen = fillYearString(retPtr, CentYear);
if(additionalLen != 0)
{
// very bad luck; have to resize the buffer...
XMLCh *tmpBuf = new XMLCh[additionalLen+21+miliSecondsLen +2];
XMLString::moveChars(tmpBuf, retBuf, 4+additionalLen);
retPtr = tmpBuf+(retPtr-retBuf);
delete[] retBuf;
retBuf = tmpBuf;
}
*retPtr++ = DATE_SEPARATOR;
fillString(retPtr, Month, 2);
*retPtr++ = DATE_SEPARATOR;
fillString(retPtr, Day, 2);
*retPtr++ = DATETIME_SEPARATOR;
fillString(retPtr, Hour, 2);
if (fValue[Hour] == 24)
{
*(retPtr - 2) = chDigit_0;
*(retPtr - 1) = chDigit_0;
}
*retPtr++ = TIME_SEPARATOR;
fillString(retPtr, Minute, 2);
*retPtr++ = TIME_SEPARATOR;
fillString(retPtr, Second, 2);
if (miliSecondsLen)
{
*retPtr++ = chPeriod;
XMLString::copyNString(retPtr, miliStartPtr, miliSecondsLen);
retPtr += miliSecondsLen;
}
*retPtr++ = UTC_STD_CHAR;
*retPtr = chNull;
return retBuf;
}
/***
* 3.2.8 time
*
* . either the time zone must be omitted or,
* if present, the time zone must be Coordinated Universal Time (UTC) indicated by a "Z".
*
* . Additionally, the canonical representation for midnight is 00:00:00.
*
***/
XMLCh* SAMLDateTime::getTimeCanonicalRepresentation() const
{
XMLCh *miliStartPtr, *miliEndPtr;
searchMiliSeconds(miliStartPtr, miliEndPtr);
int miliSecondsLen = miliEndPtr - miliStartPtr;
XMLCh* retBuf = new XMLCh[10 + miliSecondsLen + 2];
XMLCh* retPtr = retBuf;
// 'hh:mm:ss'Z' ('.'s+)?
// 8 1
//
fillString(retPtr, Hour, 2);
if (fValue[Hour] == 24)
{
*(retPtr - 2) = chDigit_0;
*(retPtr - 1) = chDigit_0;
}
*retPtr++ = TIME_SEPARATOR;
fillString(retPtr, Minute, 2);
*retPtr++ = TIME_SEPARATOR;
fillString(retPtr, Second, 2);
if (miliSecondsLen)
{
*retPtr++ = chPeriod;
XMLString::copyNString(retPtr, miliStartPtr, miliSecondsLen);
retPtr += miliSecondsLen;
}
*retPtr++ = UTC_STD_CHAR;
*retPtr = chNull;
return retBuf;
}
void SAMLDateTime::fillString(XMLCh*& ptr, valueIndex ind, int expLen) const
{
XMLCh strBuffer[16];
assert(expLen < 16);
XMLString::binToText(fValue[ind], strBuffer, expLen, 10);
int actualLen = XMLString::stringLen(strBuffer);
int i;
//append leading zeros
for (i = 0; i < expLen - actualLen; i++)
{
*ptr++ = chDigit_0;
}
for (i = 0; i < actualLen; i++)
{
*ptr++ = strBuffer[i];
}
}
int SAMLDateTime::fillYearString(XMLCh*& ptr, valueIndex ind) const
{
XMLCh strBuffer[16];
// let's hope we get no years of 15 digits...
XMLString::binToText(fValue[ind], strBuffer, 15, 10);
int actualLen = XMLString::stringLen(strBuffer);
// don't forget that years can be negative...
int negativeYear = 0;
if(strBuffer[0] == chDash)
{
*ptr++ = strBuffer[0];
negativeYear = 1;
}
int i;
//append leading zeros
for (i = 0; i < 4 - actualLen+negativeYear; i++)
{
*ptr++ = chDigit_0;
}
for (i = negativeYear; i < actualLen; i++)
{
*ptr++ = strBuffer[i];
}
if(actualLen > 4)
return actualLen-4;
return 0;
}
/***
*
* .check if the rawData has the mili second component
* .capture the substring
*
***/
void SAMLDateTime::searchMiliSeconds(XMLCh*& miliStartPtr, XMLCh*& miliEndPtr) const
{
miliStartPtr = miliEndPtr = 0;
int milisec = XMLString::indexOf(fBuffer, MILISECOND_SEPARATOR);
if (milisec == -1)
return;
miliStartPtr = fBuffer + milisec + 1;
miliEndPtr = miliStartPtr;
while (*miliEndPtr)
{
if ((*miliEndPtr < chDigit_0) || (*miliEndPtr > chDigit_9))
break;
miliEndPtr++;
}
//remove trailing zeros
while( *(miliEndPtr - 1) == chDigit_0)
miliEndPtr--;
return;
}
|