-
Notifications
You must be signed in to change notification settings - Fork 0
/
RPMIO.php
164 lines (144 loc) · 3.8 KB
/
RPMIO.php
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
<?
/*
phpRPMLib 1.0
Copyright (C) 2005-2006, Chris Chabot
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
class RPMIO extends PEAR {
var $fp;
var $file;
var $_cnt;
function RPMIO($file)
{
$this->file = $file;
if (!file_exists($file)) return $this->raiseError("RPMIO: No such file ".$file);
if (!$this->fp = fopen($file,'rb')) return $this->raiseError("RPMIO: Could not open ".$file." for reading");
}
function _RPMIO()
{
$this->_PEAR();
}
// Gets the amount of bytes read and resets counter
// used to determine index, header and signature sizes
function getRead()
{
$ret = $this->_cnt;
$this->_cnt = 0;
return $ret;
}
function close()
{
fclose($this->fp);
$this->fp = false;
}
function read($bytes)
{
if (strlen($read = fread($this->fp,$bytes)) == 0) {
return $this->raiseError("RPMIO: Error reading $bytes bytes from {$this->file}");
}
$this->_cnt += $bytes;
return $read;
}
function readByte()
{
return PEAR::isError($ret = $this->read(1)) ? $ret : ord($ret);
}
function readWord()
{
return PEAR::isError($ret = $this->read(2)) ? $ret : $this->BigEndian2Int($ret);
}
function readInt($signed=false)
{
return PEAR::isError($ret = $this->read(4)) ? $ret : $this->BigEndian2Int($ret);
}
function readString($len)
{
return PEAR::isError($ret = $this->read($len)) ? $ret : trim($ret);
}
function readStr()
{
$ret = '';
while (!PEAR::isError($chr = $this->read(1))) {
if (ord($chr) == 0) {
break;
}
$ret .= $chr;
}
return PEAR::isError($chr) ? $chr : $ret;
}
function readHex($len)
{
if (PEAR::isError($buf = $this->read($len))) return $this->raiseError($buf);
$ret = '';
for ($i = 0 ; $i < $len ; $i++) {
$ret .= dechex(ord($buf{$i}));
}
return $ret;
}
function trunc($floatnumber)
{
// truncates a floating-point number at the decimal point
// returns int (if possible, otherwise float)
if ($floatnumber >= 1) {
$truncatednumber = floor($floatnumber);
} elseif ($floatnumber <= -1) {
$truncatednumber = ceil($floatnumber);
} else {
$truncatednumber = 0;
}
if ($truncatednumber <= pow(2, 30)) {
$truncatednumber = (int) $truncatednumber;
}
return $truncatednumber;
}
function castInt($floatnum)
{
// convert to float if not already
$floatnum = (float) $floatnum;
// convert a float to type int, only if possible
if ($this->trunc($floatnum) == $floatnum) {
// it's not floating point
if ($floatnum <= pow(2, 30)) {
// it's within int range
$floatnum = (int) $floatnum;
}
}
return $floatnum;
}
function BigEndian2Int($byteword, $signed=false)
{
$intvalue = 0;
$bytewordlen = strlen($byteword);
for ($i = 0; $i < $bytewordlen; $i++) {
$intvalue += ord($byteword{$i}) * pow(256, ($bytewordlen - 1 - $i));
}
if ($signed) {
switch ($bytewordlen) {
case 1:
case 2:
case 3:
case 4:
$signmaskbit = 0x80 << (8 * ($bytewordlen - 1));
if ($intvalue & $signmaskbit) {
$intvalue = 0 - ($intvalue & ($signmaskbit - 1));
}
break;
default:
return $this->raiseError('RPMIO: Cannot have signed integers larger than 32-bits in BigEndian2Int');
break;
}
}
return $this->castInt($intvalue);
}
}
?>