0
0

MoFileDumper.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Translation\Dumper;
  11. use Symfony\Component\Translation\Loader\MoFileLoader;
  12. use Symfony\Component\Translation\MessageCatalogue;
  13. /**
  14. * MoFileDumper generates a gettext formatted string representation of a message catalogue.
  15. *
  16. * @author Stealth35
  17. */
  18. class MoFileDumper extends FileDumper
  19. {
  20. /**
  21. * {@inheritdoc}
  22. */
  23. public function formatCatalogue(MessageCatalogue $messages, $domain, array $options = [])
  24. {
  25. $sources = $targets = $sourceOffsets = $targetOffsets = '';
  26. $offsets = [];
  27. $size = 0;
  28. foreach ($messages->all($domain) as $source => $target) {
  29. $offsets[] = array_map('strlen', [$sources, $source, $targets, $target]);
  30. $sources .= "\0".$source;
  31. $targets .= "\0".$target;
  32. ++$size;
  33. }
  34. $header = [
  35. 'magicNumber' => MoFileLoader::MO_LITTLE_ENDIAN_MAGIC,
  36. 'formatRevision' => 0,
  37. 'count' => $size,
  38. 'offsetId' => MoFileLoader::MO_HEADER_SIZE,
  39. 'offsetTranslated' => MoFileLoader::MO_HEADER_SIZE + (8 * $size),
  40. 'sizeHashes' => 0,
  41. 'offsetHashes' => MoFileLoader::MO_HEADER_SIZE + (16 * $size),
  42. ];
  43. $sourcesSize = \strlen($sources);
  44. $sourcesStart = $header['offsetHashes'] + 1;
  45. foreach ($offsets as $offset) {
  46. $sourceOffsets .= $this->writeLong($offset[1])
  47. .$this->writeLong($offset[0] + $sourcesStart);
  48. $targetOffsets .= $this->writeLong($offset[3])
  49. .$this->writeLong($offset[2] + $sourcesStart + $sourcesSize);
  50. }
  51. $output = implode('', array_map([$this, 'writeLong'], $header))
  52. .$sourceOffsets
  53. .$targetOffsets
  54. .$sources
  55. .$targets
  56. ;
  57. return $output;
  58. }
  59. /**
  60. * {@inheritdoc}
  61. */
  62. protected function getExtension()
  63. {
  64. return 'mo';
  65. }
  66. private function writeLong($str): string
  67. {
  68. return pack('V*', $str);
  69. }
  70. }