mirror of
https://github.com/php/web-rmtools.git
synced 2026-03-24 17:22:12 +01:00
`PHP_SDK_VC` has been renamed to `PHP_SDK_VS` only as of php-sdk-2.2.0beta4; therefore we add a fallback on `PHP_SDK_VC` to support older versions.
233 lines
6.5 KiB
PHP
233 lines
6.5 KiB
PHP
<?php
|
|
namespace rmtools;
|
|
include __DIR__ . '/BranchConfig.php';
|
|
include __DIR__ . '/MakeLogParserVC.php';
|
|
|
|
class PeclBuildVC {
|
|
public $branch;
|
|
public $build_name;
|
|
public $env;
|
|
private $obj_dir;
|
|
private $build_dir;
|
|
protected $old_cwd;
|
|
public $logs = array();
|
|
|
|
public $archive_path = false;
|
|
public $debug_path = false;
|
|
public $devel_path = false;
|
|
public $test_path = false;
|
|
|
|
public $compiler_log_parser;
|
|
public $stats;
|
|
public $log_buildconf;
|
|
public $log_configure;
|
|
public $log_make;
|
|
public $log_archive;
|
|
|
|
public $zip_devel_filename;
|
|
public $zip_debug_filename;
|
|
public $zip_test_filename;
|
|
|
|
function __construct(PeclBranch $branch, $build_name)
|
|
{
|
|
/* XXX eliminate code duplication with BuildVC*/
|
|
$build_dir = $branch->config->getBuildDir();
|
|
if (!file_exists($build_dir)) {
|
|
throw new \Exception("Directory '$build_dir' doesn't exist");
|
|
}
|
|
|
|
$this->branch = $branch;
|
|
$this->build_name = $build_name;
|
|
$this->obj_dir = $build_dir . '/' . $branch->config->getBranch() . '-' . $this->build_name;
|
|
$this->compiler = $branch->config->builds[$build_name]['compiler'];
|
|
$this->architecture = $branch->config->builds[$build_name]['arch'];
|
|
$this->thread_safe = (boolean)$branch->config->builds[$build_name]['thread_safe'];
|
|
|
|
$sdk_arch = getenv("PHP_SDK_ARCH");
|
|
if (strtolower($this->architecture) != strtolower($sdk_arch)) {
|
|
throw new \Exception("Arch mismatch. PHP SDK is configured for '$sdk_arch', while the current RMTOOLS config targets '{$this->architecture}'");
|
|
}
|
|
|
|
$sdk_vs = getenv("PHP_SDK_VS");
|
|
if (!$sdk_vs) { // fallback for versions before php-sdk-2.2.0beta4
|
|
$sdk_vs = getenv("PHP_SDK_VC");
|
|
}
|
|
if (strtolower($this->compiler) != strtolower($sdk_vs)) {
|
|
throw new \Exception("Compiler mismatch. PHP SDK is configured for '$sdk_vs', while the current RMTOOLS config targets '{$this->compiler}'");
|
|
}
|
|
|
|
$env = getenv();
|
|
/*$env = array();
|
|
$env['PATH'] = getenv('PATH') ;
|
|
$env['INCLUDE'] = getenv('INCLUDE');
|
|
$env['LIB'] = getenv('LIB');
|
|
|
|
$env['TMP'] = $env['TEMP'] = getenv('TEMP');
|
|
$env['SystemDrive'] = getenv('SystemDrive');
|
|
$env['SystemRoot'] = getenv('SystemRoot');*/
|
|
|
|
/* XXX Not sure, in how far the below is needed. */
|
|
/*
|
|
$env['CPU'] = "i386";
|
|
$env['APPVER'] = "5.01"; // setenv /xp
|
|
if (strcasecmp($this->architecture, 'x64') == 0) {
|
|
$env['CPU'] = "AMD64";
|
|
}
|
|
if (strcmp($branch->config->getAppver(), '2008') == 0) {
|
|
$env['APPVER'] = "6.0";
|
|
}
|
|
*/
|
|
if ($branch->config->getDebug() == 0) {
|
|
$env['NODEBUG'] = "1";
|
|
}
|
|
|
|
$this->env = $env;
|
|
}
|
|
|
|
function addPath($path)
|
|
{
|
|
if (isset($this->env["PATH"])) {
|
|
$this->env["PATH"] = $path . ";" . $this->env["PATH"];
|
|
} else if (isset($this->env["Path"])) {
|
|
$this->env["Path"] = $path . ";" . $this->env["Path"];
|
|
}
|
|
}
|
|
|
|
function setSourceDir($src_dir)
|
|
{
|
|
$this->build_dir = $src_dir;
|
|
}
|
|
|
|
function getSourceDir()
|
|
{
|
|
return $this->build_dir;
|
|
}
|
|
|
|
private function addLogsToArchive()
|
|
{
|
|
$zip = new \ZipArchive();
|
|
if ($zip->open($this->archive_path) === FALSE) {
|
|
throw new \Exception('cannot open archive');
|
|
}
|
|
$zip->addFromString('logs\buildconf.txt', $this->log_buildconf);
|
|
$zip->addFromString('logs\configure.txt', $this->log_configure);
|
|
$zip->addFromString('logs\make.txt', $this->log_make);
|
|
$zip->addFromString('logs\archive.txt', $this->log_archive);
|
|
$zip->close();
|
|
}
|
|
|
|
function buildconf()
|
|
{
|
|
$cmd = 'buildconf';
|
|
$ret = exec_single_log($cmd, $this->build_dir, $this->env);
|
|
if (!$ret) {
|
|
throw new \Exception('buildconf failed');
|
|
}
|
|
$this->log_buildconf = $ret['log'];
|
|
}
|
|
|
|
function configure($extra = false, $rm_obj = true)
|
|
{
|
|
$args = $this->branch->config->getConfigureOptions($this->build_name) . ($extra ?: $extra);
|
|
$cmd = 'configure ' . $args . ' --enable-object-out-dir=' . $this->obj_dir;
|
|
/* old build may have been stoped */
|
|
if (is_dir($this->obj_dir) && $rm_obj === true) {
|
|
rmdir_rf($this->obj_dir);
|
|
}
|
|
mkdir($this->obj_dir, 0655, true);
|
|
$ret = exec_single_log($cmd, $this->build_dir, $this->env);
|
|
if (!$ret) {
|
|
throw new \Exception('Configure failed');
|
|
}
|
|
$this->log_configure = $ret['log'];
|
|
}
|
|
|
|
function make($target = false)
|
|
{
|
|
$cmd = 'nmake /nologo' . ($target ?: $target);
|
|
$ret = exec_single_log($cmd, $this->build_dir, $this->env);
|
|
if (!$ret) {
|
|
throw new \Exception('Make failed');
|
|
}
|
|
$this->log_make = $ret['log'];
|
|
}
|
|
|
|
function makeArchive()
|
|
{
|
|
$cmd = 'nmake /nologo snap';
|
|
$ret = exec_single_log($cmd, $this->build_dir, $this->env);
|
|
if (!$ret) {
|
|
throw new \Exception('Make snap failed');
|
|
}
|
|
|
|
$this->log_archive = $ret['log'];
|
|
|
|
if (!preg_match('/Build dir: (.*)/', $this->log_configure, $matches)) {
|
|
throw new \Exception('Make archive failed, cannot find build dir');
|
|
}
|
|
$zip_dir = trim($matches[1]);
|
|
|
|
if (!preg_match('/.*(php-\d\.\d\.\d.*\.zip)/', $this->log_archive, $matches)) {
|
|
throw new \Exception('Make archive failed, cannot find php archive');
|
|
}
|
|
$zip_filename = trim($matches[1]);
|
|
|
|
if (!preg_match('/.*(php-devel-pack-\d\.\d\.\d.*\.zip)/', $this->log_archive, $matches)) {
|
|
throw new \Exception('Make archive failed, cannot find php-devel archive');
|
|
}
|
|
$zip_devel_filename = trim($matches[1]);
|
|
$this->zip_devel_filename = $zip_devel_filename;
|
|
|
|
if (!preg_match('/.*(php-debug-pack-\d\.\d\.\d.*\.zip)/', $this->log_archive, $matches)) {
|
|
throw new \Exception('Make archive failed, cannot find php-debug archive');
|
|
}
|
|
$zip_debug_filename = trim($matches[1]);
|
|
$this->zip_debug_filename = $zip_debug_filename;
|
|
|
|
if (!preg_match('/.*(php-test-pack-\d\.\d\.\d.*\.zip)/', $this->log_archive, $matches)) {
|
|
throw new \Exception('Make archive failed, cannot find php-test archive');
|
|
}
|
|
$zip_test_filename = trim($matches[1]);
|
|
$this->zip_test_filename = $zip_test_filename;
|
|
|
|
$this->archive_path = realpath($zip_dir . '/' . $zip_filename);
|
|
$this->debug_path = realpath($zip_dir . '/' . $zip_debug_filename);
|
|
$this->devel_path = realpath($zip_dir . '/' . $zip_devel_filename);
|
|
$this->test_path = realpath($zip_dir . '/' . $zip_test_filename);
|
|
|
|
$this->addLogsToArchive();
|
|
}
|
|
|
|
function getMakeLogParsed()
|
|
{
|
|
$parser = new MakeLogParserVc;
|
|
$tmpfile = $this->obj_dir . '/' . 'make.txt';
|
|
file_put_contents($tmpfile, $this->log_make);
|
|
$parser->parse($tmpfile, $this->build_dir);
|
|
unlink($tmpfile);
|
|
$this->stats = $parser->stats;
|
|
$this->compiler_log_parser = $parser;
|
|
return $parser->toHtml($this->build_name);
|
|
}
|
|
|
|
function getStats()
|
|
{
|
|
return $this->stats;
|
|
}
|
|
|
|
function clean()
|
|
{
|
|
rmdir_rf($this->obj_dir);
|
|
}
|
|
|
|
function getLogs()
|
|
{
|
|
|
|
}
|
|
|
|
function getObjDir()
|
|
{
|
|
return $this->obj_dir;
|
|
}
|
|
}
|