Subversion Repositories Applications.gtt

Rev

Rev 94 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
94 jpm 1
<?php
2
/**
3
 * PEAR_Command_Pickle (pickle command)
4
 *
5
 * PHP versions 4 and 5
6
 *
7
 * @category   pear
8
 * @package    PEAR
9
 * @author     Greg Beaver <cellog@php.net>
187 mathias 10
 * @copyright  2005-2009 The Authors
11
 * @license    http://opensource.org/licenses/bsd-license.php New BSD License
94 jpm 12
 * @link       http://pear.php.net/package/PEAR
13
 * @since      File available since Release 1.4.1
14
 */
15
 
16
/**
17
 * base class
18
 */
19
require_once 'PEAR/Command/Common.php';
20
 
21
/**
22
 * PEAR commands for login/logout
23
 *
24
 * @category   pear
25
 * @package    PEAR
26
 * @author     Greg Beaver <cellog@php.net>
187 mathias 27
 * @copyright  2005-2009 The Authors
28
 * @license    http://opensource.org/licenses/bsd-license.php New BSD License
29
 * @version    Release: 1.10.1
94 jpm 30
 * @link       http://pear.php.net/package/PEAR
31
 * @since      Class available since Release 1.4.1
32
 */
33
 
34
class PEAR_Command_Pickle extends PEAR_Command_Common
35
{
36
    var $commands = array(
37
        'pickle' => array(
38
            'summary' => 'Build PECL Package',
39
            'function' => 'doPackage',
40
            'shortcut' => 'pi',
41
            'options' => array(
42
                'nocompress' => array(
43
                    'shortopt' => 'Z',
44
                    'doc' => 'Do not gzip the package file'
45
                    ),
46
                'showname' => array(
47
                    'shortopt' => 'n',
48
                    'doc' => 'Print the name of the packaged file.',
49
                    ),
50
                ),
51
            'doc' => '[descfile]
52
Creates a PECL package from its package2.xml file.
53
 
54
An automatic conversion will be made to a package.xml 1.0 and written out to
55
disk in the current directory as "package.xml".  Note that
56
only simple package.xml 2.0 will be converted.  package.xml 2.0 with:
57
 
58
 - dependency types other than required/optional PECL package/ext/php/pearinstaller
59
 - more than one extsrcrelease or zendextsrcrelease
60
 - zendextbinrelease, extbinrelease, phprelease, or bundle release type
61
 - dependency groups
62
 - ignore tags in release filelist
63
 - tasks other than replace
64
 - custom roles
65
 
66
will cause pickle to fail, and output an error message.  If your package2.xml
67
uses any of these features, you are best off using PEAR_PackageFileManager to
68
generate both package.xml.
69
'
70
            ),
71
        );
72
 
73
    /**
74
     * PEAR_Command_Package constructor.
75
     *
76
     * @access public
77
     */
187 mathias 78
    function __construct(&$ui, &$config)
94 jpm 79
    {
187 mathias 80
        parent::__construct($ui, $config);
94 jpm 81
    }
82
 
83
    /**
84
     * For unit-testing ease
85
     *
86
     * @return PEAR_Packager
87
     */
88
    function &getPackager()
89
    {
90
        if (!class_exists('PEAR_Packager')) {
91
            require_once 'PEAR/Packager.php';
92
        }
187 mathias 93
 
94
        $a = new PEAR_Packager;
94 jpm 95
        return $a;
96
    }
97
 
98
    /**
99
     * For unit-testing ease
100
     *
101
     * @param PEAR_Config $config
102
     * @param bool $debug
103
     * @param string|null $tmpdir
104
     * @return PEAR_PackageFile
105
     */
187 mathias 106
    function &getPackageFile($config, $debug = false)
94 jpm 107
    {
108
        if (!class_exists('PEAR_Common')) {
109
            require_once 'PEAR/Common.php';
110
        }
187 mathias 111
 
112
        if (!class_exists('PEAR_PackageFile')) {
94 jpm 113
            require_once 'PEAR/PackageFile.php';
114
        }
187 mathias 115
 
116
        $a = new PEAR_PackageFile($config, $debug);
94 jpm 117
        $common = new PEAR_Common;
118
        $common->ui = $this->ui;
119
        $a->setLogger($common);
120
        return $a;
121
    }
122
 
123
    function doPackage($command, $options, $params)
124
    {
125
        $this->output = '';
126
        $pkginfofile = isset($params[0]) ? $params[0] : 'package2.xml';
127
        $packager = &$this->getPackager();
128
        if (PEAR::isError($err = $this->_convertPackage($pkginfofile))) {
129
            return $err;
130
        }
187 mathias 131
 
94 jpm 132
        $compress = empty($options['nocompress']) ? true : false;
133
        $result = $packager->package($pkginfofile, $compress, 'package.xml');
134
        if (PEAR::isError($result)) {
135
            return $this->raiseError($result);
136
        }
187 mathias 137
 
94 jpm 138
        // Don't want output, only the package file name just created
139
        if (isset($options['showname'])) {
140
            $this->ui->outputData($result, $command);
141
        }
187 mathias 142
 
94 jpm 143
        return true;
144
    }
145
 
146
    function _convertPackage($packagexml)
147
    {
148
        $pkg = &$this->getPackageFile($this->config);
149
        $pf2 = &$pkg->fromPackageFile($packagexml, PEAR_VALIDATE_NORMAL);
150
        if (!is_a($pf2, 'PEAR_PackageFile_v2')) {
151
            return $this->raiseError('Cannot process "' .
152
                $packagexml . '", is not a package.xml 2.0');
153
        }
187 mathias 154
 
94 jpm 155
        require_once 'PEAR/PackageFile/v1.php';
156
        $pf = new PEAR_PackageFile_v1;
157
        $pf->setConfig($this->config);
158
        if ($pf2->getPackageType() != 'extsrc' && $pf2->getPackageType() != 'zendextsrc') {
159
            return $this->raiseError('Cannot safely convert "' . $packagexml .
160
            '", is not an extension source package.  Using a PEAR_PackageFileManager-based ' .
161
            'script is an option');
162
        }
187 mathias 163
 
94 jpm 164
        if (is_array($pf2->getUsesRole())) {
165
            return $this->raiseError('Cannot safely convert "' . $packagexml .
166
            '", contains custom roles.  Using a PEAR_PackageFileManager-based script or ' .
167
            'the convert command is an option');
168
        }
187 mathias 169
 
94 jpm 170
        if (is_array($pf2->getUsesTask())) {
171
            return $this->raiseError('Cannot safely convert "' . $packagexml .
172
            '", contains custom tasks.  Using a PEAR_PackageFileManager-based script or ' .
173
            'the convert command is an option');
174
        }
187 mathias 175
 
94 jpm 176
        $deps = $pf2->getDependencies();
177
        if (isset($deps['group'])) {
178
            return $this->raiseError('Cannot safely convert "' . $packagexml .
179
            '", contains dependency groups.  Using a PEAR_PackageFileManager-based script ' .
180
            'or the convert command is an option');
181
        }
187 mathias 182
 
94 jpm 183
        if (isset($deps['required']['subpackage']) ||
184
              isset($deps['optional']['subpackage'])) {
185
            return $this->raiseError('Cannot safely convert "' . $packagexml .
186
            '", contains subpackage dependencies.  Using a PEAR_PackageFileManager-based  '.
187
            'script is an option');
188
        }
187 mathias 189
 
94 jpm 190
        if (isset($deps['required']['os'])) {
191
            return $this->raiseError('Cannot safely convert "' . $packagexml .
192
            '", contains os dependencies.  Using a PEAR_PackageFileManager-based  '.
193
            'script is an option');
194
        }
187 mathias 195
 
94 jpm 196
        if (isset($deps['required']['arch'])) {
197
            return $this->raiseError('Cannot safely convert "' . $packagexml .
198
            '", contains arch dependencies.  Using a PEAR_PackageFileManager-based  '.
199
            'script is an option');
200
        }
187 mathias 201
 
94 jpm 202
        $pf->setPackage($pf2->getPackage());
203
        $pf->setSummary($pf2->getSummary());
204
        $pf->setDescription($pf2->getDescription());
205
        foreach ($pf2->getMaintainers() as $maintainer) {
206
            $pf->addMaintainer($maintainer['role'], $maintainer['handle'],
207
                $maintainer['name'], $maintainer['email']);
208
        }
187 mathias 209
 
94 jpm 210
        $pf->setVersion($pf2->getVersion());
211
        $pf->setDate($pf2->getDate());
212
        $pf->setLicense($pf2->getLicense());
213
        $pf->setState($pf2->getState());
214
        $pf->setNotes($pf2->getNotes());
215
        $pf->addPhpDep($deps['required']['php']['min'], 'ge');
216
        if (isset($deps['required']['php']['max'])) {
217
            $pf->addPhpDep($deps['required']['php']['max'], 'le');
218
        }
187 mathias 219
 
94 jpm 220
        if (isset($deps['required']['package'])) {
221
            if (!isset($deps['required']['package'][0])) {
222
                $deps['required']['package'] = array($deps['required']['package']);
223
            }
187 mathias 224
 
94 jpm 225
            foreach ($deps['required']['package'] as $dep) {
226
                if (!isset($dep['channel'])) {
227
                    return $this->raiseError('Cannot safely convert "' . $packagexml . '"' .
228
                    ' contains uri-based dependency on a package.  Using a ' .
229
                    'PEAR_PackageFileManager-based script is an option');
230
                }
187 mathias 231
 
232
                if ($dep['channel'] != 'pear.php.net'
233
                    && $dep['channel'] != 'pecl.php.net'
234
                    && $dep['channel'] != 'doc.php.net') {
94 jpm 235
                    return $this->raiseError('Cannot safely convert "' . $packagexml . '"' .
236
                    ' contains dependency on a non-standard channel package.  Using a ' .
237
                    'PEAR_PackageFileManager-based script is an option');
238
                }
187 mathias 239
 
94 jpm 240
                if (isset($dep['conflicts'])) {
241
                    return $this->raiseError('Cannot safely convert "' . $packagexml . '"' .
242
                    ' contains conflicts dependency.  Using a ' .
243
                    'PEAR_PackageFileManager-based script is an option');
244
                }
187 mathias 245
 
94 jpm 246
                if (isset($dep['exclude'])) {
247
                    $this->ui->outputData('WARNING: exclude tags are ignored in conversion');
248
                }
187 mathias 249
 
94 jpm 250
                if (isset($dep['min'])) {
251
                    $pf->addPackageDep($dep['name'], $dep['min'], 'ge');
252
                }
187 mathias 253
 
94 jpm 254
                if (isset($dep['max'])) {
255
                    $pf->addPackageDep($dep['name'], $dep['max'], 'le');
256
                }
257
            }
258
        }
187 mathias 259
 
94 jpm 260
        if (isset($deps['required']['extension'])) {
261
            if (!isset($deps['required']['extension'][0])) {
262
                $deps['required']['extension'] = array($deps['required']['extension']);
263
            }
187 mathias 264
 
94 jpm 265
            foreach ($deps['required']['extension'] as $dep) {
266
                if (isset($dep['conflicts'])) {
267
                    return $this->raiseError('Cannot safely convert "' . $packagexml . '"' .
268
                    ' contains conflicts dependency.  Using a ' .
269
                    'PEAR_PackageFileManager-based script is an option');
270
                }
187 mathias 271
 
94 jpm 272
                if (isset($dep['exclude'])) {
273
                    $this->ui->outputData('WARNING: exclude tags are ignored in conversion');
274
                }
187 mathias 275
 
94 jpm 276
                if (isset($dep['min'])) {
277
                    $pf->addExtensionDep($dep['name'], $dep['min'], 'ge');
278
                }
187 mathias 279
 
94 jpm 280
                if (isset($dep['max'])) {
281
                    $pf->addExtensionDep($dep['name'], $dep['max'], 'le');
282
                }
283
            }
284
        }
187 mathias 285
 
94 jpm 286
        if (isset($deps['optional']['package'])) {
287
            if (!isset($deps['optional']['package'][0])) {
288
                $deps['optional']['package'] = array($deps['optional']['package']);
289
            }
187 mathias 290
 
94 jpm 291
            foreach ($deps['optional']['package'] as $dep) {
292
                if (!isset($dep['channel'])) {
293
                    return $this->raiseError('Cannot safely convert "' . $packagexml . '"' .
294
                    ' contains uri-based dependency on a package.  Using a ' .
295
                    'PEAR_PackageFileManager-based script is an option');
296
                }
187 mathias 297
 
298
                if ($dep['channel'] != 'pear.php.net'
299
                    && $dep['channel'] != 'pecl.php.net'
300
                    && $dep['channel'] != 'doc.php.net') {
94 jpm 301
                    return $this->raiseError('Cannot safely convert "' . $packagexml . '"' .
302
                    ' contains dependency on a non-standard channel package.  Using a ' .
303
                    'PEAR_PackageFileManager-based script is an option');
304
                }
187 mathias 305
 
94 jpm 306
                if (isset($dep['exclude'])) {
307
                    $this->ui->outputData('WARNING: exclude tags are ignored in conversion');
308
                }
187 mathias 309
 
94 jpm 310
                if (isset($dep['min'])) {
311
                    $pf->addPackageDep($dep['name'], $dep['min'], 'ge', 'yes');
312
                }
187 mathias 313
 
94 jpm 314
                if (isset($dep['max'])) {
315
                    $pf->addPackageDep($dep['name'], $dep['max'], 'le', 'yes');
316
                }
317
            }
318
        }
187 mathias 319
 
94 jpm 320
        if (isset($deps['optional']['extension'])) {
321
            if (!isset($deps['optional']['extension'][0])) {
322
                $deps['optional']['extension'] = array($deps['optional']['extension']);
323
            }
187 mathias 324
 
94 jpm 325
            foreach ($deps['optional']['extension'] as $dep) {
326
                if (isset($dep['exclude'])) {
327
                    $this->ui->outputData('WARNING: exclude tags are ignored in conversion');
328
                }
187 mathias 329
 
94 jpm 330
                if (isset($dep['min'])) {
331
                    $pf->addExtensionDep($dep['name'], $dep['min'], 'ge', 'yes');
332
                }
187 mathias 333
 
94 jpm 334
                if (isset($dep['max'])) {
335
                    $pf->addExtensionDep($dep['name'], $dep['max'], 'le', 'yes');
336
                }
337
            }
338
        }
187 mathias 339
 
94 jpm 340
        $contents = $pf2->getContents();
187 mathias 341
        $release  = $pf2->getReleases();
94 jpm 342
        if (isset($releases[0])) {
187 mathias 343
            return $this->raiseError('Cannot safely process "' . $packagexml . '" contains '
94 jpm 344
            . 'multiple extsrcrelease/zendextsrcrelease tags.  Using a PEAR_PackageFileManager-based script ' .
345
            'or the convert command is an option');
346
        }
187 mathias 347
 
94 jpm 348
        if ($configoptions = $pf2->getConfigureOptions()) {
349
            foreach ($configoptions as $option) {
187 mathias 350
                $default = isset($option['default']) ? $option['default'] : false;
351
                $pf->addConfigureOption($option['name'], $option['prompt'], $default);
94 jpm 352
            }
353
        }
187 mathias 354
 
94 jpm 355
        if (isset($release['filelist']['ignore'])) {
187 mathias 356
            return $this->raiseError('Cannot safely process "' . $packagexml . '" contains '
94 jpm 357
            . 'ignore tags.  Using a PEAR_PackageFileManager-based script or the convert' .
358
            ' command is an option');
359
        }
187 mathias 360
 
94 jpm 361
        if (isset($release['filelist']['install']) &&
362
              !isset($release['filelist']['install'][0])) {
363
            $release['filelist']['install'] = array($release['filelist']['install']);
364
        }
187 mathias 365
 
94 jpm 366
        if (isset($contents['dir']['attribs']['baseinstalldir'])) {
367
            $baseinstalldir = $contents['dir']['attribs']['baseinstalldir'];
368
        } else {
369
            $baseinstalldir = false;
370
        }
187 mathias 371
 
94 jpm 372
        if (!isset($contents['dir']['file'][0])) {
373
            $contents['dir']['file'] = array($contents['dir']['file']);
374
        }
187 mathias 375
 
94 jpm 376
        foreach ($contents['dir']['file'] as $file) {
377
            if ($baseinstalldir && !isset($file['attribs']['baseinstalldir'])) {
378
                $file['attribs']['baseinstalldir'] = $baseinstalldir;
379
            }
187 mathias 380
 
94 jpm 381
            $processFile = $file;
382
            unset($processFile['attribs']);
383
            if (count($processFile)) {
384
                foreach ($processFile as $name => $task) {
385
                    if ($name != $pf2->getTasksNs() . ':replace') {
386
                        return $this->raiseError('Cannot safely process "' . $packagexml .
387
                        '" contains tasks other than replace.  Using a ' .
388
                        'PEAR_PackageFileManager-based script is an option.');
389
                    }
390
                    $file['attribs']['replace'][] = $task;
391
                }
392
            }
187 mathias 393
 
94 jpm 394
            if (!in_array($file['attribs']['role'], PEAR_Common::getFileRoles())) {
395
                return $this->raiseError('Cannot safely convert "' . $packagexml .
396
                '", contains custom roles.  Using a PEAR_PackageFileManager-based script ' .
397
                'or the convert command is an option');
398
            }
187 mathias 399
 
94 jpm 400
            if (isset($release['filelist']['install'])) {
401
                foreach ($release['filelist']['install'] as $installas) {
402
                    if ($installas['attribs']['name'] == $file['attribs']['name']) {
403
                        $file['attribs']['install-as'] = $installas['attribs']['as'];
404
                    }
405
                }
406
            }
187 mathias 407
 
94 jpm 408
            $pf->addFile('/', $file['attribs']['name'], $file['attribs']);
409
        }
187 mathias 410
 
94 jpm 411
        if ($pf2->getChangeLog()) {
412
            $this->ui->outputData('WARNING: changelog is not translated to package.xml ' .
413
                '1.0, use PEAR_PackageFileManager-based script if you need changelog-' .
414
                'translation for package.xml 1.0');
415
        }
187 mathias 416
 
94 jpm 417
        $gen = &$pf->getDefaultGenerator();
418
        $gen->toPackageFile('.');
419
    }
420
}