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:
<?php
namespace Nethgui\Adapter;
class TableAdapter implements AdapterInterface, \ArrayAccess, \IteratorAggregate, \Countable
{
private $database;
private $types;
private $data;
private $changes;
private $filter = NULL;
public function __construct(\Nethgui\System\DatabaseInterface $db, $types = NULL, $filter = NULL)
{
$this->database = $db;
$this->types = is_string($types) ? array($types) : (is_null($types) ? array() : $types);
$filter = $filter === FALSE ? NULL : $filter;
if (is_array($filter)) {
$this->filter = function($key, $value) use ($filter) {
foreach ($filter as $prop => $regexp) {
if ( ! preg_match($regexp, $value[$prop])) {
return FALSE;
}
}
return TRUE;
};
} else {
$this->filter = $filter;
}
if( ! ($this->filter === NULL || is_callable($this->filter))) {
throw new \InvalidArgumentException(sprintf("%s: filter argument must be an array or NULL, or a callable object.", __CLASS__), 1398679653);
}
if( ! is_array($this->types)) {
throw new \InvalidArgumentException(sprintf("%s: type argument must be an array or string.", __CLASS__), 1398679654);
}
}
private function lazyInitialization()
{
$this->data = new \ArrayObject();
$this->changes = new \ArrayObject();
$dbType = count($this->types) === 1 ? $this->types[0] : NULL;
$rawData = $this->database->getAll($dbType);
if ( ! is_array($rawData)) {
return;
}
foreach ($rawData as $key => $row) {
if (count($this->types) === 1) {
unset($row['type']);
} elseif (count($this->types) > 1 && ! in_array($row['type'], $this->types)) {
continue;
}
if ($this->filter === NULL) {
$this->data[$key] = new \ArrayObject($row);
} elseif (call_user_func($this->filter, $key, $row)) {
$this->data[$key] = new \ArrayObject($row);
}
}
}
public function count()
{
if ( ! isset($this->data)) {
$this->lazyInitialization();
}
return $this->data->count();
}
public function delete()
{
if ( ! isset($this->data)) {
$this->lazyInitialization();
}
foreach (array_keys($this->data->getArrayCopy()) as $key) {
unset($this[$key]);
}
}
public function get()
{
if ( ! isset($this->data)) {
$this->lazyInitialization();
}
return $this->data;
}
public function set($value)
{
if ( ! is_array($value) && ! $value instanceof \Traversable) {
throw new \InvalidArgumentException(sprintf('%s: Value must be an array!', __CLASS__), 1322149788);
}
if ( ! isset($this->data)) {
$this->lazyInitialization();
}
foreach ($value as $key => $props) {
if (is_array($props)) {
$props = new \ArrayObject($props);
}
$this[$key] = $props;
}
}
public function save()
{
if ( ! $this->isModified()) {
return 0;
}
$saveCount = 0;
foreach ($this->changes as $args) {
$method = array_shift($args);
call_user_func_array(array($this->database, $method), $args);
$saveCount ++;
}
$this->changes = new \ArrayObject();
$this->modified = FALSE;
return $saveCount;
}
public function getIterator()
{
if ( ! isset($this->data)) {
$this->lazyInitialization();
}
return $this->data->getIterator();
}
public function isModified()
{
return $this->changes instanceof \ArrayObject && count($this->changes) > 0;
}
public function offsetExists($offset)
{
if ( ! isset($this->data)) {
$this->lazyInitialization();
}
return $this->data->offsetExists($offset);
}
public function offsetGet($offset)
{
if ( ! isset($this->data)) {
$this->lazyInitialization();
}
return $this->data->offsetGet($offset);
}
public function offsetSet($offset, $value)
{
if ( ! isset($this->data)) {
$this->lazyInitialization();
}
if (is_array($value)) {
$value = new \ArrayObject($value);
} elseif ( ! $value instanceof \Traversable) {
throw new \InvalidArgumentException(sprintf('%s: Value must be an array!', __CLASS__), 1322149789);
}
if (isset($this[$offset])) {
$props = iterator_to_array($value);
if(isset($props['type'])) {
unset($props['type']);
}
$this->changes[] = array('setProp', $offset, $props);
} elseif (count($this->types) === 1) {
$this->changes[] = array('setKey', $offset, $this->types[0], iterator_to_array($value));
} elseif (isset($value['type'])) {
$props = iterator_to_array($value);
unset($props['type']);
$this->changes[] = array('setKey', $offset, $value['type'], $props);
} else {
throw new \LogicException(sprintf('%s: New record `type` was not specified!', __CLASS__), 1397569441);
}
$this->data->offsetSet($offset, $value);
}
public function offsetUnset($offset)
{
if ( ! isset($this->data)) {
$this->lazyInitialization();
}
unset($this->data[$offset]);
$this->changes[] = array('deleteKey', $offset);
}
public function flush()
{
unset($this->data);
return $this;
}
}