ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
StreamAccess.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 
33 {
34  public const PHP_MEMORY = 'php://memory';
35 
36  public function __construct(string $storage_base_path, private StorageHandlerFactory $storage_handler_factory)
37  {
38  }
39 
40  public function populateRevision(Revision $revision): Revision
41  {
42  $stream = $this->storage_handler_factory->getHandlerForRevision($revision)->getStream($revision);
43 
44  return $revision->withStreamResolver(new StreamResolver($stream));
45  }
46 
47  public function populateFlavour(
48  Flavour $flavour,
49  FileStream $file_stream,
50  int $index
51  ): Flavour {
52  return $flavour->withStreamResolver(
53  $index,
54  new StreamResolver($file_stream)
55  );
56  }
57 }
__construct(string $storage_base_path, private StorageHandlerFactory $storage_handler_factory)
populateFlavour(Flavour $flavour, FileStream $file_stream, int $index)