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 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861
|
<?php
/**
* Structures_DataGrid Class
*
* PHP version 5
*
* LICENSE:
*
* Copyright (c) 1997-2007, Andrew Nagy <asnagy@webitecture.org>,
* Olivier Guilyardi <olivier@samalyse.com>,
* Mark Wiesemann <wiesemann@php.net>
* Sascha Grossenbacher <saschagros@bluewin.ch>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * 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.
* * The names of the authors may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 THE COPYRIGHT OWNER 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.
*
* CSV file id: $Id$
*
* @version $Revision$
* @package Structures_DataGrid
* @category Structures
* @license http://opensource.org/licenses/bsd-license.php New BSD License
*/
require_once 'PEAR.php';
require_once 'Structures/DataGrid/Column.php';
// Rendering Drivers
define('DATAGRID_RENDER_TABLE', 'HTMLTable');
define('DATAGRID_RENDER_SMARTY', 'Smarty');
define('DATAGRID_RENDER_XML', 'XML');
define('DATAGRID_RENDER_XLS', 'XLS');
define('DATAGRID_RENDER_XUL', 'XUL');
define('DATAGRID_RENDER_CSV', 'CSV');
define('DATAGRID_RENDER_CONSOLE', 'Console');
define('DATAGRID_RENDER_PAGER', 'Pager');
define('DATAGRID_RENDER_SORTFORM', 'HTMLSortForm');
define('DATAGRID_RENDER_DEFAULT', DATAGRID_RENDER_TABLE);
// DataSource Drivers
define('DATAGRID_SOURCE_ARRAY', 'Array');
define('DATAGRID_SOURCE_DATAOBJECT','DataObject');
define('DATAGRID_SOURCE_DB', 'DB');
define('DATAGRID_SOURCE_XML', 'XML');
define('DATAGRID_SOURCE_RSS', 'RSS');
define('DATAGRID_SOURCE_CSV', 'CSV');
define('DATAGRID_SOURCE_DBQUERY', 'DBQuery');
define('DATAGRID_SOURCE_DBTABLE', 'DBTable');
define('DATAGRID_SOURCE_MDB2', 'MDB2');
// PEAR_Error code for unsupported features
define('DATAGRID_ERROR_UNSUPPORTED', 1);
/**
* Structures_DataGrid Class
*
* A PHP class to implement the functionality provided by the .NET Framework's
* DataGrid control. This class can produce a data driven list in many formats
* based on a defined record set. Commonly, this is used for outputting an HTML
* table based on a record set from a database or an XML document. It allows
* for the output to be published in many ways, including an HTML table,
* an HTML Template, an Excel spreadsheet, an XML document. The data can
* be sorted and paged, each cell can have custom output, and the table can be
* custom designed with alternating color rows.
*
* Quick Example:
* <code>
* <?php
* require 'Structures/DataGrid.php';
* $datagrid = new Structures_DataGrid();
* $options = array('dsn' => 'mysql://user:password@host/db_name');
* $datagrid->bind("SELECT * FROM my_table", $options);
* $datagrid->render();
* ?>
* </code>
*
* @author Andrew S. Nagy <asnagy@webitecture.org>
* @author Olivier Guilyardi <olivier@samalyse.com>
* @author Mark Wiesemann <wiesemann@php.net>
* @author Sascha Grossenbacher <saschagros@bluewin.ch>
* @access public
* @package Structures_DataGrid
* @category Structures
*/
class Structures_DataGrid
{
/**
* Renderer driver
* @var object Structures_DataGrid_Renderer_* family
* @access private
*/
var $_renderer;
/**
* Renderer driver type
* @var int DATAGRID_RENDER_* constant family
* @access private
*/
var $_rendererType = null;
/**
* Options to use for all renderers
* @var array
* @access private
*/
var $_rendererCommonOptions = array();
/**
* Renderer driver backup
* @var object Structures_DataGrid_Renderer_* family
* @access private
*/
var $_rendererBackup;
/**
* Renderer driver type backup
* @var int DATAGRID_RENDER_* constant family
* @access private
*/
var $_rendererTypeBackup = null;
/**
* Whether the backup is an empty renderer
*
* This property is set to true when _saveRenderer() is called and there
* is no renderer loaded.
*
* @var bool
* @access private
*/
var $_rendererEmptyBackup = false;
/**
* Array of columns. Columns are defined as a DataGridColumn object.
* @var array
* @access private
*/
var $columnSet = array();
/**
* Array of records.
* @var array
* @access private
*/
var $recordSet = array();
/**
* The Data Source Driver object
* @var object Structures_DataGrid_DataSource
* @access private
*/
var $_dataSource;
/**
* Fields/directions to sort the data by
*
* @var array Structure: array(fieldName => direction, ....)
* @access private
*/
var $sortSpec = array();
/**
* Default fields/directions to sort the data by
*
* @var array Structure: array(fieldName => direction, ....)
* @access private
*/
var $defaultSortSpec = array();
/**
* Limit of records to show per page.
* @var string
* @access private
*/
var $rowLimit;
/**
* The current page to show.
* @var string
* @access private
*/
var $page;
/**
* Whether the page number was provided at instantiation or not
* @var bool
* @access private
*/
var $_forcePage;
/**
* GET/POST/Cookie parameters prefix
* @var string
* @access private
*/
var $_requestPrefix = '';
/**
* Possible renderer types and their equivalent renderer constants
* @var array
* @access private
*/
var $_rendererTypes = array(
'html_table' => DATAGRID_RENDER_TABLE,
'smarty' => DATAGRID_RENDER_SMARTY,
'spreadsheet_excel_writer_workbook' => DATAGRID_RENDER_XLS,
'console_table' => DATAGRID_RENDER_CONSOLE,
'pager_common' => DATAGRID_RENDER_PAGER,
);
/**
* Number of records that should be buffered when streaming is enabled
* @var integer
* @access private
*/
var $_bufferSize = null;
/**
* Array of matched params
*
* @var array
* @access private
*/
var $_mapperMatch = null;
/**
* Allowed URL parameters. Format: Name => regex
*
* @var array
* @access private
*/
var $_mapperRules = array(
'page' => '[0-9]+',
'orderBy' => '[^\/]+',
'direction' => '(ASC|DESC|asc|desc)'
);
/**
* Default values for mapper. Format: Name => value
*
* A default value triggers the param to be optional
*
* @var array
* @access private
*/
var $_mapperDefaults = array(
'orderBy' => null,
'direction' => null,
'page' => 1
);
/**
* URL mapper instance, if activated
*
* @var object Net_URL_Mapper
* @access protected
*/
var $_urlMapper = null;
/**
* Constructor
*
* Builds the DataGrid class. The Core functionality and Renderer are
* seperated for maintainability and to keep cohesion high.
*
* @example constructor.php Instantiation
* @param string $limit The number of records to display per page.
* @param int $page The current page viewed.
* In most cases, this is useless.
* Note: if you specify this, the "page" GET
* variable will be ignored.
* @param string $rendererType The type of renderer to use.
* You may prefer to use the $type argument
* of {@link render}, {@link fill} or
* {@link getOutput}
*
* @return void
* @access public
*/
function Structures_DataGrid($limit = null, $page = null,
$rendererType = null)
{
// Set the defined rowlimit
$this->rowLimit = $limit;
//Use set page number, otherwise automatically detect the page number
if (!is_null($page)) {
$this->page = $page;
$this->_forcePage = true;
} else {
$this->page = 1;
$this->_forcePage = false;
}
// Automatic handling of GET/POST/COOKIE variables
$this->_parseHttpRequest();
if (!is_null($rendererType)) {
$this->setRenderer($rendererType);
}
}
/**
* Method used for debugging purposes only. Displays a dump of the DataGrid
* object.
*
* @access public
* @return void
*/
function dump()
{
echo '<pre>';
print_r($this);
echo '</pre>';
}
/**
* Checks if a file exists in the include path
*
* @access private
* @param string filename
* @return boolean true success and false on error
*/
function fileExists($file)
{
$fp = @fopen($file, 'r', true);
if (is_resource($fp)) {
@fclose($fp);
return true;
}
return false;
}
/**
* Checks if a class exists without triggering __autoload
*
* @param string className
* @return bool true success and false on error
*
* @access private
*/
function classExists($className)
{
if (version_compare(phpversion(), "5.0", ">=")) {
return class_exists($className, false);
}
return class_exists($className);
}
/**
* Load a Renderer or DataSource driver
*
* @param string $className Name of the driver class
* @access private
* @return object The driver object or a PEAR_Error
* @static
*/
function loadDriver($className)
{
if (!Structures_DataGrid::classExists($className)) {
$fileName = str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php';
if (!include_once($fileName)) {
if (!Structures_DataGrid::fileExists($fileName)) {
$msg = "unable to find package '$className' file '$fileName'";
} else {
$msg = "unable to load driver class '$className' from file '$fileName'";
}
$error = PEAR::raiseError($msg);
return $error;
}
}
$driver = new $className();
return $driver;
}
/**
* Datasource driver Factory
*
* A clever method which loads and instantiate data source drivers.
*
* Can be called in various ways:
*
* Detect the source type and load the appropriate driver with default
* options:
* <code>
* $driver = Structures_DataGrid::dataSourceFactory($source);
* </code>
*
* Detect the source type and load the appropriate driver with custom
* options:
* <code>
* $driver = Structures_DataGrid::dataSourceFactory($source, $options);
* </code>
*
* Load a driver for an explicit type (faster, bypasses detection routine):
* <code>
* $driver = Structures_DataGrid::dataSourceFactory($source, $options, $type);
* </code>
*
* @access public
* @param mixed $source The data source respective to the driver
* @param array $options An associative array of the form:
* array(optionName => optionValue, ...)
* @param string $type The data source type constant (of the form
* DATAGRID_SOURCE_*)
* @uses Structures_DataGrid::_detectSourceType()
* @return Structures_DataGrid_DataSource|PEAR_Error
* driver object or PEAR_Error on failure
* @static
*/
function dataSourceFactory($source, $options = array(), $type = null)
{
if (is_null($type) &&
!($type = Structures_DataGrid::_detectSourceType($source,
$options))) {
$error = PEAR::raiseError('Unable to determine the data source type. '.
'You may want to explicitly specify it.');
return $error;
}
$type = Structures_DataGrid::_correctDriverName($type, 'DataSource');
if (PEAR::isError($type)) {
return $type;
}
$className = "Structures_DataGrid_DataSource_$type";
if (PEAR::isError($driver = Structures_DataGrid::loadDriver($className))) {
return $driver;
}
$result = $driver->bind($source, $options);
if (PEAR::isError($result)) {
return $result;
} else {
return $driver;
}
}
/**
* Renderer driver factory
*
* Load and instantiate a renderer driver.
*
* @access private
* @param mixed $source The rendering container respective to the driver
* @param array $options An associative array of the form:
* array(optionName => optionValue, ...)
* @param string $type The renderer type constant (of the form
* DATAGRID_RENDER_*)
* @uses Structures_DataGrid_DataSource::_detectRendererType()
* @return mixed Returns the renderer driver object or
* PEAR_Error on failure
*/
function rendererFactory($type, $options = array())
{
$type = Structures_DataGrid::_correctDriverName($type, 'Renderer');
if (PEAR::isError($type)) {
return $type;
}
$className = "Structures_DataGrid_Renderer_$type";
if (PEAR::isError($driver = Structures_DataGrid::loadDriver($className))) {
return $driver;
}
$options = array_merge($this->_rendererCommonOptions, $options);
if ($this->_urlMapper) {
$driver->setUrlMapper($this->_urlMapper);
}
if ($options) {
$driver->setOptions((array)$options);
}
return $driver;
}
/**
* Render the datagrid
*
* You can call this method several times with different renderers.
*
* @param mixed $renderer Renderer type or instance (optional)is_object($source) &&
* @param array $options An associative array of the form:
* array(optionName => optionValue, ...)
* @access public
* @return mixed True or PEAR_Error
*/
function render($renderer = null, $options = array())
{
if (!is_null($renderer)) {
$this->_saveRenderer();
if (is_a($renderer, 'Structures_DataGrid_Renderer')) {
$result = $this->attachRenderer($renderer);
} else {
$result = $this->setRenderer($renderer);
}
if (PEAR::isError($result)) {
$this->_restoreRenderer();
return $result;
}
} else if (!isset($this->_renderer)) {
$result = $this->setRenderer(DATAGRID_RENDER_DEFAULT);
if (PEAR::isError($result)) {
return $result;
}
}
$options = array_merge($this->_rendererCommonOptions, (array)$options);
if ($options) {
$this->_renderer->setOptions($options);
}
if (!$this->_renderer->isBuilt()) {
$result = $this->build();
if (PEAR::isError($result)) {
return $result;
}
}
$result = $this->_renderer->render();
if (PEAR::isError($result)) {
if ($result->getCode() == DATAGRID_ERROR_UNSUPPORTED) {
$type = is_null($this->_rendererType)
? get_class($this->_renderer)
: $this->_rendererType;
$this->_restoreRenderer();
return PEAR::raiseError("The $type driver does not support the ".
"render() method. Try using fill().");
} else {
$this->_restoreRenderer();
return $result;
}
}
$this->_restoreRenderer();
return true;
}
/**
* Return the datagrid output
*
* @param int $type Renderer type (optional)
* @param array $options An associative array of the form:
* array(optionName => optionValue, ...)
* @access public
* @return mixed The datagrid output (Usually a string: HTML, CSV, etc...)
* or a PEAR_Error
*/
function getOutput($type = null, $options = array())
{
if (!is_null($this->_bufferSize)) {
return PEAR::raiseError('getOutput() cannot be used together with ' .
'streaming.');
}
if (!is_null($type)) {
$this->_saveRenderer();
$test = $this->setRenderer($type);
if (PEAR::isError($test)) {
$this->_restoreRenderer();
return $test;
}
} else if (!isset($this->_renderer)) {
$this->setRenderer(DATAGRID_RENDER_DEFAULT);
}
$options = array_merge($this->_rendererCommonOptions, (array)$options);
if ($options) {
$this->_renderer->setOptions($options);
}
if (!$this->_renderer->isBuilt()) {
$result = $this->build();
if (PEAR::isError($result)) {
return $result;
}
}
$output = $this->_renderer->getOutput();
if (PEAR::isError($output) && $output->getCode() == DATAGRID_ERROR_UNSUPPORTED) {
$type = is_null($this->_rendererType)
? get_class($this->_renderer)
: $this->_rendererType;
$this->_restoreRenderer();
return PEAR::raiseError("The $type driver does not support the ".
"getOutput() method. Try using render().");
}
$this->_restoreRenderer();
return $output;
}
/**
* Get the current or default Rendering driver
*
* Retrieves the renderer object as a reference
*
* @return object Renderer object reference
* @access public
*/
function getRenderer()
{
isset($this->_renderer) or $this->setRenderer(DATAGRID_RENDER_DEFAULT);
return $this->_renderer;
}
/**
* Get the currently loaded DataSource driver
*
* Retrieves the DataSource object as a reference
*
* @return object DataSource object reference or null if no driver is loaded
* @access public
*/
function getDataSource()
{
if (isset($this->_dataSource)) {
return $this->_dataSource;
}
return null;
}
/**
* Set Renderer
*
* Defines which renderer to be used by the DataGrid based on given
* $type and $options. To attach an existing renderer instance, use
* attachRenderer() instead.
*
* @param string $type The defined renderer string
* @param array $options Rendering options
* @return mixed Renderer instance or PEAR_Error
* @access public
* @see Structures_DataGrid::attachRenderer()
*/
function setRenderer($type, $options = array())
{
$renderer = $this->rendererFactory($type, $options);
if (PEAR::isError($renderer)) {
return $renderer;
}
$this->_rendererType = $type;
return $this->attachRenderer($renderer);
}
/**
* Backup the current renderer
*
* @return void
* @access private
*/
function _saveRenderer()
{
if (isset($this->_renderer)) {
// The following line is a workaround for PHP bug 32660
// See: http://bugs.php.net/bug.php?id=32660
// Another solution would be to remove __get which is used only for BC
$this->_rendererBackup = 1;
$this->_rendererBackup = $this->_renderer;
$this->_rendererTypeBackup = $this->_rendererType;
unset($this->_renderer);
$this->_rendererType = null;
} else {
$this->_rendererEmptyBackup = true;
}
}
/**
* Restore a previously saved renderer
*
* If the $_renderer property was not set when _saveRenderer() got
* previously called, _restoreRenderer() will unset it.
*
* @return void
* @access private
*/
function _restoreRenderer()
{
if ($this->_rendererEmptyBackup) {
unset($this->_renderer);
$this->_rendererType = null;
} elseif (isset($this->_rendererBackup)) {
$this->_renderer = $this->_rendererBackup;
$this->_rendererType = $this->_rendererTypeBackup;
}
unset($this->_rendererBackup);
$this->_rendererTypeBackup = null;
$this->_rendererEmptyBackup = false;
}
/**
* Tell the renderer how the data is sorted
*
* This method takes the "multiSort" capabilities of the datasource
* into account. The idea is to correctly inform the renderer : for
* example, a GET request may contain multiple fields and directions
* to sort by. But, if the datasource does not support "multiSort"
* then the renderer should not be told that the data is sorted according
* to multiple fields.
*
* It also properly set the "multiSortCapable" renderer flag (second argument
* to Renderer::setCurrentSorting()).
*
* This method requires both a datasource and renderer to be loaded.
*
* It should be called even if $sortSpec is empty.
*
* @return void
* @access private
*/
function _setRendererCurrentSorting()
{
$sortSpec = $this->sortSpec ? $this->sortSpec : $this->defaultSortSpec;
if (isset($this->_dataSource)
&& $this->_dataSource->hasFeature('multiSort')
) {
$this->_renderer->setCurrentSorting($sortSpec, true);
} else {
reset($sortSpec);
list($field, $direction) = each($sortSpec);
$this->_renderer->setCurrentSorting(
array($field => $direction), false);
}
}
/**
* Attach an already instantiated Rendering driver
*
* @param object $renderer Driver object, subclassing
* Structures_DataGrid_Renderer
* @return mixed Renderer instance or a PEAR_Error object
* @access public
* @see Structures_DataGrid::setRenderer()
*/
function attachRenderer($renderer)
{
if (is_subclass_of($renderer, 'structures_datagrid_renderer')) {
// The following line is a workaround for PHP bug 32660
// See: http://bugs.php.net/bug.php?id=32660
$this->_renderer = 1;
$this->_renderer = $renderer;
if (isset($this->_dataSource)) {
$this->_renderer->setColumns($this->columnSet);
$this->_renderer->setLimit($this->page, $this->rowLimit,
$this->getRecordCount());
$this->_setRendererCurrentSorting();
}
if ($this->_requestPrefix) {
$this->_renderer->setRequestPrefix($this->_requestPrefix);
}
} else {
return PEAR::raiseError('Invalid renderer type, ' .
'must be a valid renderer driver class');
}
return $renderer;
}
/**
* Fill a rendering container with data
*
* @example fill-sortform.php Fill a form with sort fields
* @example fill-pager.php Filling a Pager object
* @param object $container A rendering container of any of the supported
* types (example: an HTML_Table object,
* a Spreadsheet_Excel_Writer object, etc...)
* @param array $options Options for the corresponding rendering driver
* @param string $type Explicit type in case the container type
* can't be detected
* @return mixed Either true or a PEAR_Error object
* @access public
*/
function fill($container, $options = array(), $type = null)
{
if (is_null($type)) {
$type = $this->_detectRendererType($container);
if (is_null($type)) {
return PEAR::raiseError('The rendering container type can not '.
'be automatically detected. Please ' .
'specify its type explicitly.');
}
}
/* Is a renderer driver already loaded and does it exactly match
* the driver class name that corresponds to $type ? */
//FIXME: is this redundant with the $rendererType property ?
if (!isset($this->_renderer)
or !is_a($this->_renderer, "Structures_DataGrid_Renderer_$type")) {
/* No, then load the right driver */
$this->_saveRenderer();
if (PEAR::isError($test = $this->setRenderer($type, $options))) {
$this->_restoreRenderer();
return $test;
}
} else {
$options = array_merge($this->_rendererCommonOptions, (array)$options);
$this->_renderer->setOptions($options);
}
$test = $this->_renderer->setContainer($container);
if (PEAR::isError($test)) {
if ($test->getCode() == DATAGRID_ERROR_UNSUPPORTED) {
$this->_restoreRenderer();
return PEAR::raiseError("The $type driver does not support the " .
"fill() method. Try using render().");
} else {
$this->_restoreRenderer();
return $test;
}
}
if (!$this->_renderer->isBuilt()) {
$result = $this->build();
if (PEAR::isError($result)) {
return $result;
}
}
$this->_restoreRenderer();
return true;
}
/**
* Create Default Columns
*
* This method handles the instantiation of default column objects,
* when some records have been fetched from the datasource but columns
* have neither been generated, nor provided by the user.
*
* @access private
* @return void
*/
function _createDefaultColumns()
{
if (empty($this->columnSet)) {
$this->generateColumns();
}
}
/**
* Retrieves the current page number when paging is implemented
*
* @return int the current page number
* @access public
*/
function getCurrentPage()
{
return $this->page;
}
/**
* Define the current page number.
*
* This method is used when paging is implemented
*
* @access public
* @param mixed $page The current page number (as string or int).
*/
function setCurrentPage($page)
{
$this->page = $page;
}
/**
* Returns the total number of pages
*
* @return int the total number of pages or 1 if there are no records
* or if there is no row limit
* @access public
*/
function getPageCount()
{
if (is_null($this->rowLimit) || $this->getRecordCount() == 0) {
return 1;
} else {
return ceil($this->getRecordCount() / $this->rowLimit);
}
}
/**
* Returns the number of columns
*
* @return int the number of columns
* @access public
*/
function getColumnCount()
{
return count($this->columnSet);
}
/**
* Returns the total number of records
*
* @return int the total number of records
* @access public
*/
function getRecordCount()
{
if (isset($this->_dataSource)) {
return $this->_dataSource->count();
} else {
// If there is no datasource then there is no data. The old way
// of putting an array into the recordSet property does not exist
// anymore. Binding an array loads the Array datasource driver.
return 0;
}
}
/**
* Returns the number of the first record of the current page
*
* @return int the number of the first record currently shown, or: 0
* if there are no records, 1 if there is no row limit
* @access public
*/
function getCurrentRecordNumberStart()
{
if (is_null($this->page)) {
return 1;
} elseif ($this->getRecordCount() == 0) {
return 0;
} else {
return ($this->page - 1) * $this->rowLimit + 1;
}
}
/**
* Returns the number of the last record of the current page
*
* @return int the number of the last record currently shown
* @access public
*/
function getCurrentRecordNumberEnd()
{
if (is_null($this->rowLimit)) {
return $this->getRecordCount();
} else {
return
min($this->getCurrentRecordNumberStart() + $this->rowLimit - 1,
$this->getRecordCount());
}
}
/**
* Set the global GET/POST variables prefix
*
* If you need to change the request variables, you can define a prefix.
* This is extra useful when using multiple datagrids.
*
* This method needs to be called before bind().
*
* @access public
* @param string $prefix The prefix to use on request variables;
*/
function setRequestPrefix($prefix)
{
$this->_requestPrefix = $prefix;
$this->_parseHttpRequest();
if (isset($this->_renderer)) {
$this->_renderer->setRequestPrefix($prefix);
/* We just called parseHttpRequest() using a new requestPrefix.
* The page and sort request might have changed, so we need
* to pass them again to the renderer */
$this->_renderer->setLimit($this->page, $this->rowLimit,
$this->getRecordCount());
$this->_setRendererCurrentSorting();
}
}
/**
* Add a column, with optional position
*
* @example addColumn.php Adding a simple column
* @access public
* @param object $column The Structures_DataGrid_Column object
* (reference to)
* @param string $position One of: "last", "first", "after" or "before"
* (default: "last")
* @param string $relativeTo The name (label) or field name of the
* relative column, if $position is "after"
* or "before"
* @return mixed PEAR_Error on failure, void otherwise
*/
function addColumn($column, $position = 'last', $relativeTo = null)
{
if (!is_a($column, 'structures_datagrid_column')) {
return PEAR::raiseError(__FUNCTION__ . "(): not a valid ".
" Structures_DataGrid_Column object");
} else {
switch ($position) {
case 'first':
array_unshift($this->columnSet, '');
$this->columnSet[0] = $column;
break;
case 'last':
$this->columnSet[] = $column;
break;
case 'after':
case 'before':
$this->_createDefaultColumns();
// Has a relative column been specified ?
if (is_null($relativeTo)) {
return PEAR::raiseError(
__FUNCTION__ . "(): a relative column must be".
"specified when using position \"$position\"");
}
// Yes, does it exist ?
foreach ($this->columnSet as $i => $relColumn) {
if ($relColumn->columnName == $relativeTo
|| $relColumn->fieldName == $relativeTo) {
$relIndex = $i;
}
}
// If it does not exist, return an error
if (!isset($relIndex)) {
return PEAR::raiseError(
__FUNCTION__ . "(): Can't find a relative ".
"column which name or field name is: ".
$relativeTo);
}
// It exists, add the column after or before it
if ($position == 'after') {
array_splice($this->columnSet, $relIndex + 1, 0, '');
$this->columnSet[$relIndex + 1] = $column;
} else {
array_splice($this->columnSet, $relIndex, 0, '');
$this->columnSet[$relIndex] = $column;
}
break;
}
}
}
/**
* Return the current columns
*
* @return array Structures_DataGrid_Column objects (references to).
* This is a numerically indexed array (starting from 0).
* @access public
*/
function getColumns()
{
$this->_createDefaultColumns();
// Cloning the column set to prevent users from playing with our
// internal $columnSet property.
$columnSetClone = array();
$columnCount = $this->getColumnCount();
for ($i = 0; $i < $columnCount; $i++) {
$columnSetClone[$i] = $this->columnSet[$i];
}
return $columnSetClone;
}
/**
* Find a column by name (label)
*
* @access public
* @param string $name The name (label) of the column to look for
* @return object Either the column object (reference to) or
* false if there is no such column
*/
function getColumnByName($name)
{
$this->_createDefaultColumns();
foreach ($this->columnSet as $key => $column) {
if ($column->columnName === $name) {
return $this->columnSet[$key];
}
}
$ret = false;
return $ret;
}
/**
* Find a column by field name
*
* @access public
* @param string $fieldName The field name of the column to look for
* @return object Either the column object (reference to) or
* false if there is no such column
*/
function getColumnByField($fieldName)
{
$this->_createDefaultColumns();
foreach ($this->columnSet as $key => $column) {
if ($column->fieldName === $fieldName) {
return $this->columnSet[$key];
}
}
$ret = false;
return $ret;
}
/**
* Remove a column
*
* @example removeColumn.php Remove an unneeded column
* @access public
* @param object $column The Structures_DataGrid_Column object
* (reference to)
* @return void
*/
function removeColumn($column)
{
$columnCount = count($this->columnSet);
for ($i = 0; $i < $columnCount; $i++) {
if ($this->columnSet[$i]->id == $column->id) {
for ($i++; $i < $columnCount; $i++) {
$this->columnSet[$i - 1] = $this->columnSet[$i];
}
array_pop($this->columnSet);
}
}
}
/**
* A simple way to add a record set to the datagrid
*
* @example bind-dataobject.php Bind a DB_DataObject
* @example bind-sql.php Bind an SQL query
* @access public
* @param mixed $container The record set in any of the supported data
* source types
* @param array $options Optional. The options to be used for the
* data source
* @param string $type Optional. The data source type
* @return bool True if successful, otherwise PEAR_Error.
*/
function bind($container, $options = array(), $type = null)
{
$source = Structures_DataGrid::dataSourceFactory($container, $options,
$type);
if (!PEAR::isError($source)) {
return $this->bindDataSource($source);
} else {
return $source;
}
}
/**
* Bind an already instantiated DataSource driver
*
* @access public
* @param mixed $source The data source driver object
* @return mixed True if successful, otherwise PEAR_Error
*/
function bindDataSource($source)
{
if (is_subclass_of($source, 'structures_datagrid_datasource')) {
$this->_dataSource = $source;
$result = $this->fetchDataSource();
if (PEAR::isError($result)) {
return $result;
}
if ($columnSet = $this->_dataSource->getColumns()) {
$this->columnSet = array_merge($this->columnSet, $columnSet);
}
} else {
return PEAR::raiseError('Invalid data source type, ' .
'must be a valid data source driver class');
}
return true;
}
/**
* Request the datasource to sort its data
*
* @return void
* @access private
*/
function _sortDataSource()
{
if (!empty($this->sortSpec)) {
if ($this->_dataSource->hasFeature('multiSort')) {
$this->_dataSource->sort($this->sortSpec);
} else {
reset($this->sortSpec);
list($sortBy, $direction) = each($this->sortSpec);
$this->_dataSource->sort($sortBy, $direction);
}
}
}
/**
* Fetch data from the datasource
*
* @param integer $startRow Start fetching from the specified row number
* (optional)
* @return mixed Either true or a PEAR_Error object
* @access private
*/
function fetchDataSource($startRow = null)
{
if (isset($this->_dataSource)) {
// Sort the data
if (empty($this->sortSpec) and $this->defaultSortSpec) {
$this->sortSpec = $this->defaultSortSpec;
}
$this->_sortDataSource();
// is streaming enabled or not?
if (is_null($this->_bufferSize)) {
// sometimes we have to fix the page number:
// if we have a row limit, a page number lower than 1, or greater
// than 1 and the real page count is lower than the given page
// number indicates, the page number will be set to 1
if (!is_null($this->rowLimit) && ($this->page < 1 ||
($this->page > 1 && $this->getPageCount() < $this->page))
) {
$this->page = 1;
}
// Determine page
$page = $this->page ? $this->page - 1 : 0;
// Fetch the data
$recordSet = $this->_dataSource->fetch(
($page * $this->rowLimit),
$this->rowLimit);
} else {
$limit = $this->_bufferSize;
if (!is_null($this->rowLimit) && $limit > $this->rowLimit) {
$limit = $this->rowLimit;
}
// Fetch the data
$recordSet = $this->_dataSource->fetch($startRow, $limit);
}
if (PEAR::isError($recordSet)) {
return $recordSet;
} else {
$this->recordSet = $recordSet;
return true;
}
} else {
return PEAR::raiseError("Cannot fetch data: no datasource driver loaded.");
}
}
/**
* Sorts the records by the defined field.
*
* Do not use this method if data is coming from a database as sorting
* is much faster coming directly from the database itself.
*
* @access public
* @param array $sortSpec Sorting specification
* Structure: array(fieldName => direction, ...)
* @param string $direction Deprecated. Put the direction(s) into
* $sortSpec
* @return void
*/
function sortRecordSet($sortSpec, $direction = 'ASC')
{
if (is_array($sortSpec)) {
$this->sortSpec = $sortSpec;
} else {
$this->sortSpec = array($sortSpec => $direction);
}
if (isset($this->_dataSource)) {
$this->_sortDataSource();
}
}
/**
* Set default sorting specification
*
* If there is no sorting query in the HTTP request, and if the
* sortRecordSet() method is not called, then the specification
* passed to setDefaultSort() will be used.
*
* This is especially useful if you want the data to already be
* sorted when a user first see the datagrid.
*
* This method needs to be called before bind().
*
* @param array $sortSpec Sorting specification
* Structure: array(fieldName => direction, ...)
* @return mixed Either true or a PEAR_Error object
* @access public
*/
function setDefaultSort($sortSpec)
{
if (!is_array($sortSpec)) {
return PEAR::raiseError('Invalid parameter, array expected');
}
$this->defaultSortSpec = $sortSpec;
return true;
}
/**
* Read an HTTP request argument
*
* This methods take the $_requestPrefix into account, and respect the
* POST, GET, COOKIE read order.
*
* @param string $name Argument name
* @return mixed Argument value or null
* @access private
*/
function _getRequestArgument($name)
{
$value = null;
if (is_array($this->_mapperMatch)) {
if (isset($this->_mapperMatch[$name])) {
return $this->_mapperMatch[$name];
}
}
$prefix = $this->_requestPrefix;
if (isset($_REQUEST["$prefix$name"])) {
if (isset($_POST["$prefix$name"])) {
$value = $_POST["$prefix$name"];
} elseif (isset($_GET["$prefix$name"])) {
$value = $_GET["$prefix$name"];
} elseif (isset($_COOKIE["$prefix$name"])) {
$value = $_COOKIE["$prefix$name"];
}
}
return $value;
}
/**
* Secure the sort direction string
*
* @param string $str Direction string
* @return string Either ASC or DESC
* @access private
*/
function _secureDirection($str)
{
$str = strtoupper($str);
return ($str == 'ASC' or $str == 'DESC') ? $str : 'ASC';
}
/**
* Parse HTTP Request parameters
*
* Determine page, sort and direction values
*
* @access private
* @return array Associative array of parsed arguments, each of these
* defaulting to null if not found.
*/
function _parseHttpRequest()
{
//FIXME: with two grids on the same page, one grid with an empty prefix
//and the other with a non-empty prefix, the first interfers with the
//second, because _parseHttpRequest() is called from the constructor
//before setRequestPrefix().
if (!$this->_forcePage) {
if (!($this->page = $this->_getRequestArgument('page'))) {
$this->page = 1;
}
if (!is_numeric($this->page)) {
$this->page = 1;
}
}
if (($orderBy = $this->_getRequestArgument('orderBy')) !== null) {
if (is_array($orderBy)) {
$direction = $this->_getRequestArgument('direction');
$this->sortSpec = array();
foreach ($orderBy as $index => $field) {
if (!empty($field)) {
$this->sortSpec[$field] =
$this->_secureDirection($direction[$index]);
}
}
} else {
if (!($direction = $this->_getRequestArgument('direction'))) {
$direction = 'ASC';
}
$this->sortSpec =
array($orderBy => $this->_secureDirection($direction));
}
}
}
/**
* Detect datasource container type
*
* @param mixed $source Some kind of source
* @param array $options Options passed to dataSourceFactory()
* @return string The type constant of this source or null if
* it couldn't be detected
* @access private
* @todo Add CSV detector. Possible rewrite in IFs to allow for
* hierarchy for seperating file handle sources from others
*/
function _detectSourceType($source, $options = array())
{
switch(true) {
// DB_DataObject
case is_object($source) && is_subclass_of($source, 'db_dataobject'):
return DATAGRID_SOURCE_DATAOBJECT;
// DB_Result
case is_object($source) && strtolower(get_class($source)) == 'db_result':
return DATAGRID_SOURCE_DB;
// Array
case is_array($source):
return DATAGRID_SOURCE_ARRAY;
// RSS
case is_string($source) && stristr('<rss', $source):
case is_string($source) && stristr('<rdf:RDF', $source):
case is_string($source) && strpos($source, '.rss') !== false:
return DATAGRID_SOURCE_RSS;
// XML
case is_string($source) && preg_match('#^ *<\?xml#', $source) === 1:
return DATAGRID_SOURCE_XML;
// SQL query based drivers
case is_string($source) &&
preg_match('#SELECT\s.+\sFROM#is', $source) === 1:
if (array_key_exists('dbc', $options)) {
switch (true) {
case is_subclass_of($options['dbc'], 'db_common'):
return 'DBQuery';
case is_subclass_of($options['dbc'], 'PDO'):
return 'PDO';
}
}
return 'MDB2'; // default driver for SQL queries
// DB_Table
case is_object($source) && is_subclass_of($source, 'db_table'):
return DATAGRID_SOURCE_DBTABLE;
default:
return null;
}
}
/**
* Detect rendering container type
*
* @param object $container The rendering container
* @return string The container type or null if unrecognized
* @access private
*/
function _detectRendererType($container)
{
foreach ($this->_rendererTypes as $class => $type) {
if (is_a($container, $class)) {
return $type;
}
}
return null;
}
/**
* Correct the (file)name of a driver
*
* @param string $name The name of the driver
* @param string $type The type of the driver
* @return mixed Either true or a PEAR_Error object
* @access private
*/
function _correctDriverName($name, $type)
{
$driverNameMap = array(
'DataSource' => array(
'DBDataObject' => 'DataObject',
'XLS' => 'Excel'
),
'Renderer' => array(
'ConsoleTable' => 'Console',
'Excel' => 'XLS'
)
);
// replace underscores (e.g. HTML_Table driver has filename HTMLTable.php)
$name = str_replace('_', '', $name);
// does the file exist?
if (Structures_DataGrid::fileExists("Structures/DataGrid/$type/$name.php")) {
return $name;
}
// check, whether a name mapping exists (e.g. from 'Excel' to 'XLS')
if (isset($driverNameMap[$type][$name])) {
return $driverNameMap[$type][$name];
}
// we could not find a valid driver name => return an error
$error = PEAR::raiseError("Unknown $type driver. Please specify an " .
'existing driver.');
return $error;
}
/**
* Build the datagrid
*
* @return mixed Either true or a PEAR_Error object
* @access public
*/
function build()
{
if (isset($this->_dataSource)) {
isset($this->_renderer) or $this->setRenderer(DATAGRID_RENDER_DEFAULT);
// is streaming enabled or not?
if (is_null($this->_bufferSize)) {
$this->_prepareColumnsAndRenderer();
$result = $this->_renderer->build($this->recordSet, 0, true);
if (PEAR::isError($result)) {
return $result;
}
} else {
$recordCount = $this->_dataSource->count();
for ($row = ($this->page - 1) * $this->rowLimit, $initial = true;
( is_null($this->rowLimit)
|| $row < $this->page * $this->rowLimit
)
&& $row < $recordCount;
$row += $this->_bufferSize, $initial = false
) {
if ($initial) {
// prepare columns and renderer only on first iteration
$this->_prepareColumnsAndRenderer();
} else {
// we don't fetch on the first iteration because a chunk
// of data has already been fetched by bindDataSource()
if (PEAR::isError($result = $this->fetchDataSource($row))) {
unset($this->_dataSource);
return $result;
}
}
if ( ( is_null($this->rowLimit)
|| $row + $this->_bufferSize < $this->page * $this->rowLimit
)
&& $row + $this->_bufferSize < $recordCount
) {
$eof = false;
} else {
$eof = true;
}
$startRow = $row - ($this->page - 1) * $this->rowLimit;
$result = $this->_renderer->build($this->recordSet,
$startRow, $eof);
if (PEAR::isError($result)) {
return $result;
}
}
}
return true;
} else {
return PEAR::raiseError('Cannot build the datagrid: ' .
'no datasource driver loaded');
}
}
/**
* Prepare columns and renderer for building
*
* @return void
* @access private
*/
function _prepareColumnsAndRenderer()
{
$this->_createDefaultColumns();
if (isset($this->_renderer)) {
$this->_renderer->setStreaming(!is_null($this->_bufferSize));
$this->_renderer->setColumns($this->columnSet);
$this->_renderer->setLimit($this->page, $this->rowLimit,
$this->getRecordCount());
if ($this->sortSpec) {
$this->_setRendererCurrentSorting();
}
}
}
/**
* Provide some BC fix (requires PHP5)
*
* This is a PHP5 magic method used to simulate the old public
* $renderer property
* @access private
*/
function __get($var)
{
if ($var == 'renderer') {
isset($this->_renderer) or $this->setRenderer(DATAGRID_RENDER_DEFAULT);
return $this->_renderer;
}
}
/**
* Set a single renderer option
*
* @param string $name Option name
* @param mixed $value Option value
* @param bool $common Whether to use this option for all
* renderers (true) or only for the current
* one (false)
* @access public
*/
function setRendererOption($name, $value, $common = false)
{
$this->setRendererOptions(array($name => $value), $common);
}
/**
* Set multiple renderer options
*
* @param array $options An associative array of the form:
* array("option_name" => "option_value",...)
* @param bool $common Whether to use these options for all
* renderers (true) or only for the current
* one (false)
* @access public
*/
function setRendererOptions($options, $common = false)
{
if ($common) {
$this->_rendererCommonOptions
= array_merge($this->_rendererCommonOptions, (array)$options);
// There is no need to load the default renderer if these are common
// options. rendererFactory() will set them up.
isset($this->_renderer) and $this->_renderer->setOptions((array)$options);
} else {
isset($this->_renderer) or $this->setRenderer(DATAGRID_RENDER_DEFAULT);
$this->_renderer->setOptions((array)$options);
}
}
/**
* Set a single datasource option
*
* @param string $name Option name
* @param mixed $value Option value
* @access public
*/
function setDataSourceOption($name, $value)
{
return $this->setDataSourceOptions(array($name => $value));
}
/**
* Set multiple datasource options
*
* @param array $options An associative array of the form:
* array("option_name" => "option_value",...)
* @access public
*/
function setDataSourceOptions($options)
{
if (isset($this->_dataSource)) {
$this->_dataSource->setOptions((array)$options);
} else {
return PEAR::raiseError('Unable to set options; no datasource loaded.');
}
}
/**
* Enable streaming support for reading from DataSources and writing with
* Renderers and set the buffer size (number of records)
*
* @param integer $bufferSize Number of records that should be buffered
* @access public
*/
function enableStreaming($bufferSize = 500)
{
$this->_bufferSize = $bufferSize;
}
/**
* Generate columns from a fields list
*
* This is a shortcut for adding simple columns easily, instead of creating
* them manually and calling addColumn() for each.
*
* The generated columns are appended to the current column set.
*
* @param array $fields Fields and labels.
* Array of the form: array(field => label, ...)
* The default is an empty array, which means:
* all fields fetched from the datasource
*
* @return void
* @access public
*/
function generateColumns($fields = array())
{
if (empty($fields)) {
if (!empty($this->recordSet)) {
foreach ($this->recordSet[0] as $key => $data) {
$fields[$key] = $key;
}
}
}
foreach ($fields as $field => $label) {
$column = new Structures_DataGrid_Column($label, $field, $field);
$this->addColumn($column);
unset($column);
}
}
/**
* Enable and configure URL mapping
*
* If this is set, it will be parsed instead of GET/POST.
* This is only supported on PHP5, as it depends on
* Net_URL_Mapper.
*
* There are three possible placeholders, :pager, :orderBy and :direction.
* :page or (:orderBy and :direction) can be used alone.
*
* It is possible to use multipe DataGrid instances on one page with
* different prefixes.
*
* Instead of a format string you might also pass a Net_URL_Mapper instance
* to this method, in which case $prefix and $scriptname will be ignored.
* This instance must be properly set up, connected to url patterns, etc...
* This is especially useful when you've already configured URL mapping
* globally for your application and want Structures_DataGrid to integrate.
*
* @example urlFormat.php configure a url format
*
* @param mixed $format The URL format string or a Net_URL_Mapper instance
* @param string $prefix Sets the url prefix
* @param string $scriptname Set the scriptname if mod_rewrite not available
*
* @return void
* @access public
* @throws Net_URL_Mapper_InvalidException
*
* @see http://pear.php.net/Net_URL_Mapper
*/
function setUrlFormat($format, $prefix = null, $scriptname = null)
{
if (is_string($format)) {
if (!Structures_DataGrid::fileExists('Net/URL/Mapper.php')) {
return PEAR::raiseError('Net_URL_Mapper Package is missing');
}
include_once 'Net/URL/Mapper.php';
}
// reset parsed Params and reparse the request
$this->_mapperMatch = null;
// only call _parseHttpRequest again if the URL matches
if ($this->_parseRequestWithMapper($format, $prefix, $scriptname)) {
$this->_parseHttpRequest();
// copied from setRequestPrefix
// perhabs, this part can be moved to _parseHttpRequest
if (isset($this->_renderer)) {
/* The page and sort request might have changed, so we need
* to pass them again to the renderer */
$this->_renderer->setLimit($this->page, $this->rowLimit,
$this->getRecordCount());
$this->_setRendererCurrentSorting();
}
}
}
/**
* Tries to parse the request with
* Net_URL_Mapper.
*
* @param mixed $format The URL format string or a Net_URL_Mapper instance
* @param string $prefix Set the url prefix
* @param string $scriptname Set the scriptname if mod_rewrite not available
*
* @return void
* @access private
* @throws Net_URL_Mapper_InvalidException
*
*/
function _parseRequestWithMapper($format, $prefix = null, $scriptname = null)
{
if (is_a($format, 'Net_URL_Mapper')) {
$this->_urlMapper = $format;
} else {
// Use a special instance, so that it is usable for multipe
// SDG instances and other NUM Instances
$this->_urlMapper = Net_URL_Mapper::getInstance('__SDG_Instance_' . $prefix);
// If the prefix is not null, set it
if (!is_null($prefix)) {
$this->_urlMapper->setPrefix($prefix);
}
//if the scriptname is not null, set it
if (!is_null($scriptname)) {
$this->_urlMapper->setScriptName($scriptname);
}
// "connect" the format wit defaults and the defined rules
$this->_urlMapper->connect($format, $this->_mapperDefaults, $this->_mapperRules);
}
// run NUM, if it returns an array, the url was successfully matched,
// return true
if ($this->_mapperMatch = $this->_urlMapper->match($_SERVER['REQUEST_URI'])) {
return true;
}
return false;
}
}
/* vim: set expandtab tabstop=4 shiftwidth=4: */
?>
|