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
|
<?php
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
/**
* Classes handling reading and writing from and to AvroIO objects
* @package Avro
*/
/**
* Raised when something unkind happens with respect to AvroDataIO.
* @package Avro
*/
class AvroDataIOException extends AvroException {}
/**
* @package Avro
*/
class AvroDataIO
{
/**
* @var int used in file header
*/
const VERSION = 1;
/**
* @var int count of bytes in synchronization marker
*/
const SYNC_SIZE = 16;
/**
* @var int count of items per block, arbitrarily set to 4000 * SYNC_SIZE
* @todo make this value configurable
*/
const SYNC_INTERVAL = 64000;
/**
* @var string map key for datafile metadata codec value
*/
const METADATA_CODEC_ATTR = 'avro.codec';
/**
* @var string map key for datafile metadata schema value
*/
const METADATA_SCHEMA_ATTR = 'avro.schema';
/**
* @var string JSON for datafile metadata schema
*/
const METADATA_SCHEMA_JSON = '{"type":"map","values":"bytes"}';
/**
* @var string codec value for NULL codec
*/
const NULL_CODEC = 'null';
/**
* @var string codec value for deflate codec
*/
const DEFLATE_CODEC = 'deflate';
/**
* @var array array of valid codec names
* @todo Avro implementations are required to implement deflate codec as well,
* so implement it already!
*/
private static $valid_codecs = array(self::NULL_CODEC);
/**
* @var AvroSchema cached version of metadata schema object
*/
private static $metadata_schema;
/**
* @returns the initial "magic" segment of an Avro container file header.
*/
public static function magic() { return ('Obj' . pack('c', self::VERSION)); }
/**
* @returns int count of bytes in the initial "magic" segment of the
* Avro container file header
*/
public static function magic_size() { return strlen(self::magic()); }
/**
* @returns AvroSchema object of Avro container file metadata.
*/
public static function metadata_schema()
{
if (is_null(self::$metadata_schema))
self::$metadata_schema = AvroSchema::parse(self::METADATA_SCHEMA_JSON);
return self::$metadata_schema;
}
/**
* @param string $file_path file_path of file to open
* @param string $mode one of AvroFile::READ_MODE or AvroFile::WRITE_MODE
* @param string $schema_json JSON of writer's schema
* @returns AvroDataIOWriter instance of AvroDataIOWriter
*
* @throws AvroDataIOException if $writers_schema is not provided
* or if an invalid $mode is given.
*/
public static function open_file($file_path, $mode=AvroFile::READ_MODE,
$schema_json=null)
{
$schema = !is_null($schema_json)
? AvroSchema::parse($schema_json) : null;
$io = false;
switch ($mode)
{
case AvroFile::WRITE_MODE:
if (is_null($schema))
throw new AvroDataIOException('Writing an Avro file requires a schema.');
$file = new AvroFile($file_path, AvroFile::WRITE_MODE);
$io = self::open_writer($file, $schema);
break;
case AvroFile::READ_MODE:
$file = new AvroFile($file_path, AvroFile::READ_MODE);
$io = self::open_reader($file, $schema);
break;
default:
throw new AvroDataIOException(
sprintf("Only modes '%s' and '%s' allowed. You gave '%s'.",
AvroFile::READ_MODE, AvroFile::WRITE_MODE, $mode));
}
return $io;
}
/**
* @returns array array of valid codecs
*/
private static function valid_codecs()
{
return self::$valid_codecs;
}
/**
* @param string $codec
* @returns boolean true if $codec is a valid codec value and false otherwise
*/
public static function is_valid_codec($codec)
{
return in_array($codec, self::valid_codecs());
}
/**
* @param AvroIO $io
* @param AvroSchema $schema
* @returns AvroDataIOWriter
*/
protected function open_writer($io, $schema)
{
$writer = new AvroIODatumWriter($schema);
return new AvroDataIOWriter($io, $writer, $schema);
}
/**
* @param AvroIO $io
* @param AvroSchema $schema
* @returns AvroDataIOReader
*/
protected function open_reader($io, $schema)
{
$reader = new AvroIODatumReader(null, $schema);
return new AvroDataIOReader($io, $reader);
}
}
/**
*
* Reads Avro data from an AvroIO source using an AvroSchema.
* @package Avro
*/
class AvroDataIOReader
{
/**
* @var AvroIO
*/
private $io;
/**
* @var AvroIOBinaryDecoder
*/
private $decoder;
/**
* @var AvroIODatumReader
*/
private $datum_reader;
/**
* @var string
*/
private $sync_marker;
/**
* @var array object container metadata
*/
private $metadata;
/**
* @var int count of items in block
*/
private $block_count;
/**
* @param AvroIO $io source from which to read
* @param AvroIODatumReader $datum_reader reader that understands
* the data schema
* @throws AvroDataIOException if $io is not an instance of AvroIO
* @uses read_header()
*/
public function __construct($io, $datum_reader)
{
if (!($io instanceof AvroIO))
throw new AvroDataIOException('io must be instance of AvroIO');
$this->io = $io;
$this->decoder = new AvroIOBinaryDecoder($this->io);
$this->datum_reader = $datum_reader;
$this->read_header();
$codec = AvroUtil::array_value($this->metadata,
AvroDataIO::METADATA_CODEC_ATTR);
if ($codec && !AvroDataIO::is_valid_codec($codec))
throw new AvroDataIOException(sprintf('Uknown codec: %s', $codec));
$this->block_count = 0;
// FIXME: Seems unsanitary to set writers_schema here.
// Can't constructor take it as an argument?
$this->datum_reader->set_writers_schema(
AvroSchema::parse($this->metadata[AvroDataIO::METADATA_SCHEMA_ATTR]));
}
/**
* Reads header of object container
* @throws AvroDataIOException if the file is not an Avro data file.
*/
private function read_header()
{
$this->seek(0, AvroIO::SEEK_SET);
$magic = $this->read(AvroDataIO::magic_size());
if (strlen($magic) < AvroDataIO::magic_size())
throw new AvroDataIOException(
'Not an Avro data file: shorter than the Avro magic block');
if (AvroDataIO::magic() != $magic)
throw new AvroDataIOException(
sprintf('Not an Avro data file: %s does not match %s',
$magic, AvroDataIO::magic()));
$this->metadata = $this->datum_reader->read_data(AvroDataIO::metadata_schema(),
AvroDataIO::metadata_schema(),
$this->decoder);
$this->sync_marker = $this->read(AvroDataIO::SYNC_SIZE);
}
/**
* @internal Would be nice to implement data() as an iterator, I think
* @returns array of data from object container.
*/
public function data()
{
$data = array();
while (true)
{
if (0 == $this->block_count)
{
if ($this->is_eof())
break;
if ($this->skip_sync())
if ($this->is_eof())
break;
$this->read_block_header();
}
$data []= $this->datum_reader->read($this->decoder);
$this->block_count -= 1;
}
return $data;
}
/**
* Closes this writer (and its AvroIO object.)
* @uses AvroIO::close()
*/
public function close() { return $this->io->close(); }
/**
* @uses AvroIO::seek()
*/
private function seek($offset, $whence)
{
return $this->io->seek($offset, $whence);
}
/**
* @uses AvroIO::read()
*/
private function read($len) { return $this->io->read($len); }
/**
* @uses AvroIO::is_eof()
*/
private function is_eof() { return $this->io->is_eof(); }
private function skip_sync()
{
$proposed_sync_marker = $this->read(AvroDataIO::SYNC_SIZE);
if ($proposed_sync_marker != $this->sync_marker)
{
$this->seek(-AvroDataIO::SYNC_SIZE, AvroIO::SEEK_CUR);
return false;
}
return true;
}
/**
* Reads the block header (which includes the count of items in the block
* and the length in bytes of the block)
* @returns int length in bytes of the block.
*/
private function read_block_header()
{
$this->block_count = $this->decoder->read_long();
return $this->decoder->read_long();
}
}
/**
* Writes Avro data to an AvroIO source using an AvroSchema
* @package Avro
*/
class AvroDataIOWriter
{
/**
* @returns string a new, unique sync marker.
*/
private static function generate_sync_marker()
{
// From http://php.net/manual/en/function.mt-rand.php comments
return pack('S8',
mt_rand(0, 0xffff), mt_rand(0, 0xffff),
mt_rand(0, 0xffff),
mt_rand(0, 0xffff) | 0x4000,
mt_rand(0, 0xffff) | 0x8000,
mt_rand(0, 0xffff), mt_rand(0, 0xffff), mt_rand(0, 0xffff));
}
/**
* @var AvroIO object container where data is written
*/
private $io;
/**
* @var AvroIOBinaryEncoder encoder for object container
*/
private $encoder;
/**
* @var AvroDatumWriter
*/
private $datum_writer;
/**
* @var AvroStringIO buffer for writing
*/
private $buffer;
/**
* @var AvroIOBinaryEncoder encoder for buffer
*/
private $buffer_encoder; // AvroIOBinaryEncoder
/**
* @var int count of items written to block
*/
private $block_count;
/**
* @var array map of object container metadata
*/
private $metadata;
/**
* @param AvroIO $io
* @param AvroIODatumWriter $datum_writer
* @param AvroSchema $writers_schema
*/
public function __construct($io, $datum_writer, $writers_schema=null)
{
if (!($io instanceof AvroIO))
throw new AvroDataIOException('io must be instance of AvroIO');
$this->io = $io;
$this->encoder = new AvroIOBinaryEncoder($this->io);
$this->datum_writer = $datum_writer;
$this->buffer = new AvroStringIO();
$this->buffer_encoder = new AvroIOBinaryEncoder($this->buffer);
$this->block_count = 0;
$this->metadata = array();
if ($writers_schema)
{
$this->sync_marker = self::generate_sync_marker();
$this->metadata[AvroDataIO::METADATA_CODEC_ATTR] = AvroDataIO::NULL_CODEC;
$this->metadata[AvroDataIO::METADATA_SCHEMA_ATTR] = strval($writers_schema);
$this->write_header();
}
else
{
$dfr = new AvroDataIOReader($this->io, new AvroIODatumReader());
$this->sync_marker = $dfr->sync_marker;
$this->metadata[AvroDataIO::METADATA_CODEC_ATTR] = $dfr->metadata[AvroDataIO::METADATA_CODEC_ATTR];
$schema_from_file = $dfr->metadata[AvroDataIO::METADATA_SCHEMA_ATTR];
$this->metadata[AvroDataIO::METADATA_SCHEMA_ATTR] = $schema_from_file;
$this->datum_writer->writers_schema = AvroSchema::parse($schema_from_file);
$this->seek(0, SEEK_END);
}
}
/**
* @param mixed $datum
*/
public function append($datum)
{
$this->datum_writer->write($datum, $this->buffer_encoder);
$this->block_count++;
if ($this->buffer->length() >= AvroDataIO::SYNC_INTERVAL)
$this->write_block();
}
/**
* Flushes buffer to AvroIO object container and closes it.
* @return mixed value of $io->close()
* @see AvroIO::close()
*/
public function close()
{
$this->flush();
return $this->io->close();
}
/**
* Flushes biffer to AvroIO object container.
* @returns mixed value of $io->flush()
* @see AvroIO::flush()
*/
private function flush()
{
$this->write_block();
return $this->io->flush();
}
/**
* Writes a block of data to the AvroIO object container.
* @throws AvroDataIOException if the codec provided by the encoder
* is not supported
* @internal Should the codec check happen in the constructor?
* Why wait until we're writing data?
*/
private function write_block()
{
if ($this->block_count > 0)
{
$this->encoder->write_long($this->block_count);
$to_write = strval($this->buffer);
$this->encoder->write_long(strlen($to_write));
if (AvroDataIO::is_valid_codec(
$this->metadata[AvroDataIO::METADATA_CODEC_ATTR]))
$this->write($to_write);
else
throw new AvroDataIOException(
sprintf('codec %s is not supported',
$this->metadata[AvroDataIO::METADATA_CODEC_ATTR]));
$this->write($this->sync_marker);
$this->buffer->truncate();
$this->block_count = 0;
}
}
/**
* Writes the header of the AvroIO object container
*/
private function write_header()
{
$this->write(AvroDataIO::magic());
$this->datum_writer->write_data(AvroDataIO::metadata_schema(),
$this->metadata, $this->encoder);
$this->write($this->sync_marker);
}
/**
* @param string $bytes
* @uses AvroIO::write()
*/
private function write($bytes) { return $this->io->write($bytes); }
/**
* @param int $offset
* @param int $whence
* @uses AvroIO::seek()
*/
private function seek($offset, $whence)
{
return $this->io->seek($offset, $whence);
}
}
|