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:
<?php
namespace LeanMapper;
use ArrayAccess;
use Closure;
use DibiSqliteDriver;
use DibiSqlite3Driver;
use DibiRow;
use LeanMapper\Exception\InvalidArgumentException;
use LeanMapper\Exception\InvalidMethodCallException;
use LeanMapper\Exception\InvalidStateException;
class Result implements \Iterator
{
const STRATEGY_IN = 'in';
const STRATEGY_UNION = 'union';
const DETACHED_ROW_ID = -1;
const KEY_PRELOADED = 'preloaded';
const KEY_FORCED = 'forced';
const ERROR_MISSING_COLUMN = 1;
private static $storedConnection;
private $isDetached;
private $data;
private $modified = array();
private $added = array();
private $removed = array();
private $table;
private $connection;
protected $mapper;
private $keys;
private $referenced = array();
private $referencing = array();
private $index = array();
private $proxy;
public static function createInstance($data, $table, Connection $connection, IMapper $mapper)
{
$dataArray = array();
$primaryKey = $mapper->getPrimaryKey($table);
if ($data instanceof DibiRow) {
$dataArray = array(isset($data->$primaryKey) ? $data->$primaryKey : self::DETACHED_ROW_ID => $data->toArray());
} else {
$e = new InvalidArgumentException('Invalid type of data given, only DibiRow, DibiRow[], ArrayAccess[] or array of arrays is supported at this moment.');
if (!is_array($data)) {
throw $e;
}
if (!empty($data)) {
$record = reset($data);
if (!($record instanceof DibiRow) and !is_array($record) and (!$record instanceof ArrayAccess)) {
throw $e;
}
}
foreach ($data as $record) {
$record = (array) $record;
if (isset($record[$primaryKey])) {
$dataArray[$record[$primaryKey]] = $record;
} else {
$dataArray[] = $record;
}
}
}
return new self($dataArray, $table, $connection, $mapper);
}
public static function createDetachedInstance()
{
return new self;
}
public static function enableSerialization(Connection $connection)
{
if (self::$storedConnection === null) {
self::$storedConnection = $connection;
} elseif (self::$storedConnection !== $connection) {
throw new InvalidStateException("Given connection doesn't equal to connection already present in Result.");
}
}
public function setConnection(Connection $connection)
{
if ($this->connection === null) {
$this->connection = $connection;
} elseif ($this->connection !== $connection) {
throw new InvalidStateException("Given connection doesn't equal to connection already present in Result.");
}
}
public function hasConnection()
{
return $this->connection !== null;
}
public function setMapper(IMapper $mapper)
{
$this->mapper = $mapper;
}
public function getMapper()
{
return $this->mapper;
}
public function getRow($id = null)
{
if ($this->isDetached) {
if ($id !== null) {
throw new InvalidArgumentException('Argument $id in Result::getRow method cannot be passed when Result is in detached state.');
}
$id = self::DETACHED_ROW_ID;
} elseif ($id === null) {
throw new InvalidArgumentException('Argument $id in Result::getRow method must be passed when Result is in attached state.');
}
if (!isset($this->data[$id])) {
return null;
}
return new Row($this, $id);
}
public function getDataEntry($id, $key)
{
if (!isset($this->data[$id])) {
throw new InvalidArgumentException("Missing row with id $id.");
}
if ($this->isAlias($key)) {
$key = $this->trimAlias($key);
}
if (!array_key_exists($key, $this->data[$id])) {
throw new InvalidArgumentException("Missing '$key' column in row with id $id.", self::ERROR_MISSING_COLUMN);
}
return $this->data[$id][$key];
}
public function setDataEntry($id, $key, $value)
{
if (!isset($this->data[$id])) {
throw new InvalidArgumentException("Missing row with ID $id.");
}
if (!$this->isDetached and $key === $this->mapper->getPrimaryKey($this->table)) {
throw new InvalidArgumentException("ID can only be set in detached rows.");
}
$this->modified[$id][$key] = true;
$this->data[$id][$key] = $value;
}
public function hasDataEntry($id, $column)
{
return isset($this->data[$id]) and array_key_exists($column, $this->data[$id]);
}
public function unsetDataEntry($id, $column)
{
if (!isset($this->data[$id])) {
throw new InvalidArgumentException("Missing row with ID $id.");
}
unset($this->data[$id][$column], $this->modified[$id][$column]);
}
public function addDataEntry(array $values)
{
if ($this->isDetached) {
throw new InvalidStateException('Cannot add data entry to detached Result.');
}
$this->data[] = $values;
$this->added[] = $values;
$this->cleanReferencedResultsCache();
}
public function removeDataEntry(array $values)
{
if ($this->isDetached) {
throw new InvalidStateException('Cannot remove data entry to detached Result.');
}
foreach ($this->data as $key => $entry) {
if (array_diff_assoc($values, $entry) === array()) {
$this->removed[] = $entry;
unset($this->data[$key], $this->modified[$key]);
break;
}
}
}
public function getData($id)
{
return isset($this->data[$id]) ? $this->data[$id] : array();
}
public function getModifiedData($id)
{
$result = array();
if (isset($this->modified[$id])) {
foreach (array_keys($this->modified[$id]) as $column) {
$result[$column] = $this->data[$id][$column];
}
}
return $result;
}
public function createDataDifference()
{
return new DataDifference($this->added, $this->removed);
}
public function isModified($id)
{
return isset($this->modified[$id]) and !empty($this->modified[$id]);
}
public function isDetached()
{
return $this->isDetached;
}
public function markAsUpdated($id)
{
if ($this->isDetached) {
throw new InvalidMethodCallException('Detached Result cannot be marked as updated.');
}
unset($this->modified[$id]);
}
public function attach($id, $table)
{
if (!$this->isDetached) {
throw new InvalidStateException('Result is not in detached state.');
}
if ($this->connection === null) {
throw new InvalidStateException('Missing connection.');
}
if ($this->mapper === null) {
throw new InvalidStateException('Missing mapper.');
}
$modifiedData = $this->getModifiedData(self::DETACHED_ROW_ID);
$this->data = array(
$id => array($this->mapper->getPrimaryKey($table) => $id) + $modifiedData
);
$this->modified = array();
$this->table = $table;
$this->isDetached = false;
}
public function cleanAddedAndRemovedMeta()
{
$this->added = array();
$this->removed = array();
}
public function getReferencedRow($id, $table, $viaColumn = null, Filtering $filtering = null)
{
if ($viaColumn === null) {
$viaColumn = $this->mapper->getRelationshipColumn($this->table, $table);
}
$result = $this->getReferencedResult($table, $viaColumn, $filtering);
$rowId = $this->getDataEntry($id, $viaColumn);
return $rowId === null ? null : $result->getRow($rowId);
}
public function getReferencingRows($id, $table, $viaColumn = null, Filtering $filtering = null, $strategy = null)
{
if ($viaColumn === null) {
$viaColumn = $this->mapper->getRelationshipColumn($table, $this->table);
}
$referencingResult = $this->getReferencingResult($table, $viaColumn, $filtering, $strategy);
$resultHash = spl_object_hash($referencingResult);
if (!isset($this->index[$resultHash])) {
$column = $this->isAlias($viaColumn) ? $this->trimAlias($viaColumn) : $viaColumn;
$this->index[$resultHash] = array();
foreach ($referencingResult as $key => $row) {
$this->index[$resultHash][$row[$column]][] = new Row($referencingResult, $key);
}
}
if (!isset($this->index[$resultHash][$id])) {
return array();
}
return $this->index[$resultHash][$id];
}
public function setReferencedResult(self $referencedResult, $table, $viaColumn = null)
{
if ($viaColumn === null) {
$viaColumn = $this->mapper->getRelationshipColumn($table, $this->table);
}
$this->referenced["$table($viaColumn)#" . self::KEY_PRELOADED] = $referencedResult;
}
public function setReferencingResult(self $referencingResult, $table, $viaColumn = null, $strategy = self::STRATEGY_IN)
{
$strategy = $this->translateStrategy($strategy);
if ($viaColumn === null) {
$viaColumn = $this->mapper->getRelationshipColumn($table, $this->table);
}
$this->referencing["$table($viaColumn)$strategy#" . self::KEY_PRELOADED] = $referencingResult;
unset($this->index[spl_object_hash($referencingResult)]);
}
public function addToReferencing(array $values, $table, $viaColumn = null, Filtering $filtering = null, $strategy = self::STRATEGY_IN)
{
$result = $this->getReferencingResult($table, $viaColumn, $filtering, $strategy);
$result->addDataEntry($values);
unset($this->index[spl_object_hash($result)]);
}
public function removeFromReferencing(array $values, $table, $viaColumn = null, Filtering $filtering = null, $strategy = self::STRATEGY_IN)
{
$result = $this->getReferencingResult($table, $viaColumn, $filtering, $strategy);
$result->removeDataEntry($values);
unset($this->index[spl_object_hash($result)]);
}
public function createReferencingDataDifference($table, $viaColumn = null, Filtering $filtering = null, $strategy = self::STRATEGY_IN)
{
return $this->getReferencingResult($table, $viaColumn, $filtering, $strategy)
->createDataDifference();
}
public function cleanReferencedResultsCache($table = null, $viaColumn = null)
{
if ($table === null or $viaColumn === null) {
$this->referenced = array();
} else {
foreach ($this->referenced as $key => $value) {
if (preg_match("~^$table\\($viaColumn\\)(#.*)?$~", $key)) {
unset($this->referenced[$key]);
}
}
}
}
public function cleanReferencingResultsCache($table = null, $viaColumn = null)
{
if ($table === null or $viaColumn === null) {
$this->referencing = $this->index = array();
} else {
foreach ($this->referencing as $key => $value) {
$strategies = '(' . self::STRATEGY_IN . '|' . self::STRATEGY_UNION . ')';
if (preg_match("~^$table\\($viaColumn\\)$strategies(#.*)?$~", $key)) {
unset($this->index[spl_object_hash($this->referencing[$key])]);
unset($this->referencing[$key]);
}
}
}
}
public function cleanReferencingAddedAndRemovedMeta($table, $viaColumn = null, Filtering $filtering = null, $strategy = self::STRATEGY_IN)
{
$this->getReferencingResult($table, $viaColumn, $filtering, $strategy)
->cleanAddedAndRemovedMeta();
}
public function getProxy($proxyClass)
{
if ($this->proxy === null) {
$this->proxy = new $proxyClass($this);
}
if (!is_a($this->proxy, $proxyClass)) {
throw new InvalidArgumentException('Inconsistent proxy class requested.');
}
return $this->proxy;
}
public function __sleep()
{
if (self::$storedConnection === null and $this->connection !== null) {
self::enableSerialization($this->connection);
}
return array('isDetached', 'data', 'modified', 'added', 'removed', 'table', 'mapper', 'keys', 'referenced', 'referencing', 'index', 'proxy');
}
public function __wakeup()
{
if (self::$storedConnection !== null) {
$this->setConnection(self::$storedConnection);
}
}
public function current()
{
$key = current($this->keys);
return $this->data[$key];
}
public function next()
{
next($this->keys);
}
public function key()
{
return current($this->keys);
}
public function valid()
{
return current($this->keys) !== false;
}
public function rewind()
{
$this->keys = array_keys($this->data);
reset($this->keys);
}
private function __construct(array $data = null, $table = null, Connection $connection = null, IMapper $mapper = null)
{
$this->data = $data !== null ? $data : array(self::DETACHED_ROW_ID => array());
$this->table = $table;
$this->connection = $connection;
$this->mapper = $mapper;
$this->isDetached = ($table === null or $connection === null or $mapper === null);
}
private function getReferencedResult($table, $viaColumn, Filtering $filtering = null)
{
if ($this->isDetached) {
throw new InvalidStateException('Cannot get referenced Result for detached Result.');
}
$key = "$table($viaColumn)";
if (isset($this->referenced[$forcedKey = $key . '#' . self::KEY_FORCED])) {
$ids = $this->extractIds($viaColumn);
$primaryKey = $this->mapper->getPrimaryKey($table);
foreach ($this->referenced[$forcedKey] as $filteringResult) {
if ($filteringResult->isValidFor($ids, $filtering->getArgs())) {
return $filteringResult->getResult();
}
}
}
if (isset($this->referenced[$preloadedKey = $key . '#' . self::KEY_PRELOADED])) {
return $this->referenced[$preloadedKey];
}
if ($filtering === null) {
if (!isset($this->referenced[$key])) {
if (!isset($ids)) {
$ids = $this->extractIds($viaColumn);
$primaryKey = $this->mapper->getPrimaryKey($table);
}
$data = array();
if (!empty($ids)) {
$data = $this->createTableSelection($table, $ids)
->where('%n.%n IN %in', $table, $primaryKey, $ids)
->execute()->setRowClass(null)->fetchAll();
}
$this->referenced[$key] = self::createInstance($data, $table, $this->connection, $this->mapper);
}
return $this->referenced[$key];
}
if (!isset($ids)) {
$ids = $this->extractIds($viaColumn);
$primaryKey = $this->mapper->getPrimaryKey($table);
}
$statement = $this->createTableSelection($table, $ids)->where('%n.%n IN %in', $table, $primaryKey, $ids);
$filteringResult = $this->applyFiltering($statement, $filtering);
if ($filteringResult instanceof FilteringResultDecorator) {
if (!isset($this->referenced[$forcedKey])) {
$this->referenced[$forcedKey] = array();
}
$this->referenced[$forcedKey][] = $filteringResult;
return $filteringResult->getResult();
}
$args = $statement->_export();
$key .= '#' . $this->calculateArgumentsHash($args);
if (!isset($this->referenced[$key])) {
$data = $this->connection->query($args)->setRowClass(null)->fetchAll();
$this->referenced[$key] = self::createInstance($data, $table, $this->connection, $this->mapper);
}
return $this->referenced[$key];
}
private function getReferencingResult($table, $viaColumn = null, Filtering $filtering = null, $strategy = self::STRATEGY_IN)
{
$strategy = $this->translateStrategy($strategy);
if ($this->isDetached) {
throw new InvalidStateException('Cannot get referencing Result for detached Result.');
}
if ($viaColumn === null) {
$viaColumn = $this->mapper->getRelationshipColumn($table, $this->table);
}
$key = "$table($viaColumn)$strategy";
if (isset($this->referencing[$forcedKey = $key . '#' . self::KEY_FORCED])) {
$ids = $this->extractIds($this->mapper->getPrimaryKey($this->table));
foreach ($this->referencing[$forcedKey] as $filteringResult) {
if ($filteringResult->isValidFor($ids, $filtering->getArgs())) {
return $filteringResult->getResult();
}
}
}
if (isset($this->referencing[$preloadedKey = $key . '#' . self::KEY_PRELOADED])) {
return $this->referencing[$preloadedKey];
}
if ($strategy === self::STRATEGY_IN) {
if ($filtering === null) {
if (!isset($this->referencing[$key])) {
isset($ids) or $ids = $this->extractIds($this->mapper->getPrimaryKey($this->table));
$statement = $this->createTableSelection($table, $ids);
if ($this->isAlias($viaColumn)) {
$statement->where('%n IN %in', $this->trimAlias($viaColumn), $ids);
} else {
$statement->where('%n.%n IN %in', $table, $viaColumn, $ids);
}
$data = $statement->execute()->setRowClass(null)->fetchAll();
$this->referencing[$key] = self::createInstance($data, $table, $this->connection, $this->mapper);
}
} else {
isset($ids) or $ids = $this->extractIds($this->mapper->getPrimaryKey($this->table));
$statement = $this->createTableSelection($table, $ids);
if ($this->isAlias($viaColumn)) {
$statement->where('%n IN %in', $this->trimAlias($viaColumn), $ids);
} else {
$statement->where('%n.%n IN %in', $table, $viaColumn, $ids);
}
$filteringResult = $this->applyFiltering($statement, $filtering);
if ($filteringResult instanceof FilteringResultDecorator) {
if (!isset($this->referencing[$forcedKey])) {
$this->referencing[$forcedKey] = array();
}
$this->referencing[$forcedKey][] = $filteringResult;
return $filteringResult->getResult();
}
$args = $statement->_export();
$key .= '#' . $this->calculateArgumentsHash($args);
if (!isset($this->referencing[$key])) {
$data = $this->connection->query($args)->setRowClass(null)->fetchAll();
$this->referencing[$key] = self::createInstance($data, $table, $this->connection, $this->mapper);
}
}
return $this->referencing[$key];
}
if ($filtering === null) {
if (!isset($this->referencing[$key])) {
isset($ids) or $ids = $this->extractIds($this->mapper->getPrimaryKey($this->table));
if (count($ids) === 0) {
$data = array();
} else {
$data = $this->connection->query(
$this->buildUnionStrategySql($ids, $table, $viaColumn)
)->setRowClass(null)->fetchAll();
}
$this->referencing[$key] = self::createInstance($data, $table, $this->connection, $this->mapper);
}
} else {
isset($ids) or $ids = $this->extractIds($this->mapper->getPrimaryKey($this->table));
if (count($ids) === 0) {
$this->referencing[$key] = self::createInstance(array(), $table, $this->connection, $this->mapper);
} else {
$firstStatement = $this->createTableSelection($table, array(reset($ids)));
if ($this->isAlias($viaColumn)) {
$firstStatement->where('%n = ?', $this->trimAlias($viaColumn), reset($ids));
} else {
$firstStatement->where('%n.%n = ?', $table, $viaColumn, reset($ids));
}
$filteringResult = $this->applyFiltering($firstStatement, $filtering);
if ($filteringResult instanceof FilteringResultDecorator) {
if (!isset($this->referencing[$forcedKey])) {
$this->referencing[$forcedKey] = array();
}
$this->referencing[$forcedKey][] = $filteringResult;
return $filteringResult->getResult();
}
$args = $firstStatement->_export();
$key .= '#' . $this->calculateArgumentsHash($args);
if (!isset($this->referencing[$key])) {
$sql = $this->buildUnionStrategySql($ids, $table, $viaColumn, $filtering);
$data = $this->connection->query($sql)->setRowClass(null)->fetchAll();
$result = self::createInstance($data, $table, $this->connection, $this->mapper);
$this->referencing[$key] = $result;
}
}
}
return $this->referencing[$key];
}
private function extractIds($column)
{
if ($this->isAlias($column)) {
$column = $this->trimAlias($column);
}
$ids = array();
foreach ($this->data as $data) {
if (!isset($data[$column]) or $data[$column] === null) continue;
$ids[$data[$column]] = true;
}
return array_keys($ids);
}
private function buildUnionStrategySql(array $ids, $table, $viaColumn, Filtering $filtering = null)
{
$isAlias = $this->isAlias($viaColumn);
if ($isAlias) {
$viaColumn = $this->trimAlias($viaColumn);
}
foreach ($ids as $id) {
$statement = $this->createTableSelection($table, array($id));
if ($isAlias) {
$statement->where('%n = ?', $viaColumn, $id);
} else {
$statement->where('%n.%n = ?', $table, $viaColumn, $id);
}
if ($filtering !== null) {
$this->applyFiltering($statement, $filtering);
}
if (isset($mainStatement)) {
$mainStatement->union($statement);
} else {
$mainStatement = $statement;
}
}
$sql = (string) $mainStatement;
$driver = $this->connection->getDriver();
if ($driver instanceof DibiSqliteDriver or $driver instanceof DibiSqlite3Driver) {
$sql = preg_replace('#(?<=UNION )\((SELECT.*?)\)(?= UNION|$)#', '$1', $sql);
} else {
$sql = preg_replace('#^(SELECT.*?)(?= UNION)#', '($1)', $sql);
}
return $sql;
}
private function createTableSelection($table, $relatedKeys = null)
{
$selection = $this->connection->select('%n.*', $table)->from('%n', $table);
return $relatedKeys !== null ? $selection->setRelatedKeys($relatedKeys) : $selection;
}
private function translateStrategy($strategy)
{
if ($strategy === null) {
$strategy = self::STRATEGY_IN;
} else {
if ($strategy !== self::STRATEGY_IN and $strategy !== self::STRATEGY_UNION) {
throw new InvalidArgumentException("Unsupported SQL strategy given: '$strategy'.");
}
}
return $strategy;
}
private function applyFiltering(Fluent $statement, Filtering $filtering)
{
$targetedArgs = $filtering->getTargetedArgs();
foreach ($filtering->getFilters() as $filter) {
$baseArgs = array();
if (!($filter instanceof Closure)) {
foreach (str_split($this->connection->getWiringSchema($filter)) as $autowiredArg) {
if ($autowiredArg === 'e') {
$baseArgs[] = $filtering->getEntity();
} elseif ($autowiredArg === 'p') {
$baseArgs[] = $filtering->getProperty();
}
}
if (isset($targetedArgs[$filter])) {
$baseArgs = array_merge($baseArgs, $targetedArgs[$filter]);
}
}
$result = call_user_func_array(array($statement, 'applyFilter'), array_merge(array($filter), $baseArgs, $filtering->getArgs()));
if ($result instanceof FilteringResult) {
return new FilteringResultDecorator($result, $baseArgs);
}
}
}
private function calculateArgumentsHash(array $arguments)
{
return md5(serialize($arguments));
}
private function isAlias($column)
{
return strncmp($column, '*', 1) === 0;
}
private function trimAlias($column)
{
return substr($column, 1);
}
}