MediaWiki REL1_31
7zip.inc
Go to the documentation of this file.
1<?php
35 protected $stream;
36
37 private function stripPath( $path ) {
38 $prefix = 'mediawiki.compress.7z://';
39
40 return substr( $path, strlen( $prefix ) );
41 }
42
43 function stream_open( $path, $mode, $options, &$opened_path ) {
44 if ( $mode[0] == 'r' ) {
45 $options = 'e -bd -so';
46 } elseif ( $mode[0] == 'w' ) {
47 $options = 'a -bd -si';
48 } else {
49 return false;
50 }
51 $arg = wfEscapeShellArg( $this->stripPath( $path ) );
52 $command = "7za $options $arg";
53 if ( !wfIsWindows() ) {
54 // Suppress the stupid messages on stderr
55 $command .= ' 2>/dev/null';
56 }
57 $this->stream = popen( $command, $mode[0] ); // popen() doesn't like two-letter modes
58 return ( $this->stream !== false );
59 }
60
61 function url_stat( $path, $flags ) {
62 return stat( $this->stripPath( $path ) );
63 }
64
65 // This is all so lame; there should be a default class we can extend
66
67 function stream_close() {
68 return fclose( $this->stream );
69 }
70
71 function stream_flush() {
72 return fflush( $this->stream );
73 }
74
75 function stream_read( $count ) {
76 return fread( $this->stream, $count );
77 }
78
79 function stream_write( $data ) {
80 return fwrite( $this->stream, $data );
81 }
82
83 function stream_tell() {
84 return ftell( $this->stream );
85 }
86
87 function stream_eof() {
88 return feof( $this->stream );
89 }
90
91 function stream_seek( $offset, $whence ) {
92 return fseek( $this->stream, $offset, $whence );
93 }
94}
95
96stream_wrapper_register( 'mediawiki.compress.7z', SevenZipStream::class );
wfEscapeShellArg()
Version of escapeshellarg() that works better on Windows.
wfIsWindows()
Check if the operating system is Windows.
$command
Definition cdb.php:65
Stream wrapper around 7za filter program.
Definition 7zip.inc:34
stream_write( $data)
Definition 7zip.inc:79
stripPath( $path)
Definition 7zip.inc:37
stream_open( $path, $mode, $options, &$opened_path)
Definition 7zip.inc:43
stream_read( $count)
Definition 7zip.inc:75
url_stat( $path, $flags)
Definition 7zip.inc:61
stream_seek( $offset, $whence)
Definition 7zip.inc:91
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition hooks.txt:2001