Skip to content
This repository was archived by the owner on Feb 16, 2019. It is now read-only.

Commit 08623f1

Browse files
author
polygonplanet
committed
/build/ ローカルでだけ使ってたけどコミットすることにした。
1 parent 1b6afb1 commit 08623f1

File tree

4 files changed

+250
-0
lines changed

4 files changed

+250
-0
lines changed

build/build.php

+174
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,174 @@
1+
<?php
2+
//
3+
// Pot.js / PotLite.js
4+
// Simple script compiler
5+
//
6+
7+
pot_build();
8+
9+
class Pot_Builder {
10+
11+
const POT_SETTINGS = 'pot.package.json';
12+
const POTLITE_SETTINGS = 'potlite.package.json';
13+
const SOURCE_DIR = '../src/';
14+
15+
private $debug;
16+
private $version;
17+
private $date;
18+
private $year;
19+
private $type;
20+
private $settings;
21+
private $code;
22+
private $enclosureCode;
23+
private $fileName;
24+
25+
function __construct() {
26+
$this->init();
27+
if (empty($_GET)) {
28+
die('Error: Need to access with HTTP GET.');
29+
}
30+
$this->type = isset($_GET['type']) ? strtolower($_GET['type']) : 'full';
31+
if ($this->type === 'lite') {
32+
$path = self::POTLITE_SETTINGS;
33+
define('POTLITE', true, true);
34+
define('POT', false, true);
35+
} else {
36+
$this->type = 'full';
37+
$path = self::POT_SETTINGS;
38+
define('POTLITE', false, true);
39+
define('POT', true, true);
40+
}
41+
$this->settings = json_decode(file_get_contents($path));
42+
$this->fileName = $this->settings->fileName;
43+
if (isset($_GET['debug'])) {
44+
$this->debug = (bool)preg_match('{^(?:true|1|on|yes)$}i', $_GET['debug']);
45+
} else if (isset($this->settings->debug)) {
46+
$this->debug = (bool)$this->settings->debug;
47+
} else {
48+
$this->debug = false;
49+
}
50+
if (!empty($_GET['version'])) {
51+
$this->version = $_GET['version'];
52+
} else if (isset($this->settings->version)) {
53+
$this->version = (string)$this->settings->version;
54+
} else {
55+
$this->version = '$Version$';
56+
}
57+
$this->code = '';
58+
$this->date = date('Y-m-d');
59+
$this->year = date('Y');
60+
}
61+
62+
function init() {
63+
error_reporting(E_ALL);
64+
@ini_set('display_errors', 1);
65+
@ini_set('log_errors', false);
66+
@ini_set('track_errors', false);
67+
@ini_set('default_charset', 'UTF-8');
68+
if (function_exists('date_default_timezone_set') &&
69+
function_exists('date_default_timezone_get')) {
70+
@date_default_timezone_set(@date_default_timezone_get());
71+
}
72+
header('Content-Type: application/javascript');
73+
}
74+
75+
function build() {
76+
$this->load();
77+
$this->flush();
78+
}
79+
80+
function load() {
81+
$codes = array();
82+
foreach ($this->settings->files as $file) {
83+
$code = file_get_contents(self::SOURCE_DIR . $file);
84+
$codes[] = $this->assign($code);
85+
}
86+
if ($this->debug) {
87+
$this->code = implode("\x0A", $codes);
88+
$wrap = file_get_contents(self::SOURCE_DIR . $this->settings->enclosure);
89+
$enclosure = $this->evaluate($this->assign($wrap));
90+
file_put_contents(sprintf('%s-~obj.js', $this->fileName), $enclosure);
91+
unset($wrap, $enclosure);
92+
}
93+
$this->code = $this->evaluate(implode("\x0A", $codes));
94+
$code = file_get_contents(self::SOURCE_DIR . $this->settings->enclosure);
95+
$this->enclosureCode = $this->assign($code);
96+
$this->code = $this->evaluate($this->enclosureCode);
97+
file_put_contents($this->fileName, $this->code);
98+
}
99+
100+
function flush() {
101+
echo $this->code;
102+
flush();
103+
}
104+
105+
function evaluate($code) {
106+
ob_start();
107+
echo eval(sprintf('?>%s', $code));
108+
$code = ob_get_contents();
109+
ob_end_clean();
110+
return $this->normalize($code);
111+
}
112+
113+
function normalize($code) {
114+
return preg_replace('{(\x0D\x0A|\x0A|\x0D)}', "\x0A", $code);
115+
}
116+
117+
function assign($code) {
118+
if (preg_match('{<[?]|[?]>}', $code)) {
119+
die('Error: Invalid code');
120+
}
121+
$code = preg_replace_callback(
122+
'<
123+
(?:/(?:/[\x09\x20]*|[*])|)
124+
\{\#\s*(\$|)(\w+)\s*([^\}]*)\s*\}
125+
(?:[*]/|)
126+
(\x0D\x0A|\x0A|\x0D|)
127+
>sx',
128+
array($this, 'assignCallback'),
129+
$code
130+
);
131+
return $code;
132+
}
133+
134+
function assignCallback($matches) {
135+
$result = 'throw new Error("error!")';
136+
$nl = "\x0A";
137+
if ($matches[1] === '$') {
138+
$result = sprintf('<?php echo $this->%s ?>%s%s', $matches[2], $nl, $matches[4]);
139+
} else {
140+
$expr = '';
141+
switch (strtolower($matches[2])) {
142+
case 'if':
143+
$expr = sprintf('if(%s):', $matches[3]);
144+
break;
145+
case 'else':
146+
$expr = sprintf('else:');
147+
break;
148+
case 'elseif':
149+
$expr = sprintf('elseif(%s):', $matches[3]);
150+
break;
151+
case 'end':
152+
case 'endif':
153+
$expr = sprintf('endif;');
154+
break;
155+
case 'code':
156+
$expr = sprintf('echo $this->code');
157+
break;
158+
default:
159+
$expr = sprintf('%s', $matches[3]);
160+
break;
161+
}
162+
$result = sprintf('<?php %s ?>%s%s', $expr, $nl, $matches[4]);
163+
}
164+
return $result;
165+
}
166+
}
167+
168+
function pot_build() {
169+
$pb = new Pot_Builder();
170+
$pb->build();
171+
$pb = null;
172+
unset($pb);
173+
}
174+

build/pot.js-jsdoc.bat

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
@ECHO OFF
2+
REM ---------------------------------------------
3+
REM Create JSDoc Document for Pot.js / PotLite.js
4+
REM ---------------------------------------------
5+
6+
SET CUR_DIR=%~dp0
7+
SET JSDOC_DIR=%CUR_DIR%..\jsdoc_toolkit-2.4.0\jsdoc_toolkit-2.4.0\jsdoc-toolkit\
8+
SET OUTPUT_DIR=%CUR_DIR%jsdoc-out
9+
10+
@ECHO Create JSDoc Document for Pot.js / PotLite.js
11+
@ECHO.
12+
13+
CALL java -jar "%JSDOC_DIR%jsrun.jar" "%JSDOC_DIR%app\run.js" -a -s -t="%JSDOC_DIR%templates\jsdoc" -d="%OUTPUT_DIR%" "%1"
14+
15+
@ECHO Done.
16+
@ECHO Output: %OUTPUT_DIR%
17+
@ECHO.
18+
19+
PAUSE
20+
EXIT /B 0

build/pot.package.json

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"fileName": "pot.js",
3+
"debug": false,
4+
"version": "1.07",
5+
"files": [
6+
"Core.js",
7+
"Deferred.js",
8+
"Iterator.js",
9+
"Serializer.js",
10+
"URI.js",
11+
"Crypt.js",
12+
"Net.js",
13+
"XPCOM.js",
14+
"Signal.js",
15+
"Hash.js",
16+
"Collection.js",
17+
"Struct.js",
18+
"DateTime.js",
19+
"Complex.js",
20+
"Sanitizer.js",
21+
"UTF8.js",
22+
"Base64.js",
23+
"Archive.js",
24+
"Format.js",
25+
"MimeType.js",
26+
"Text.js",
27+
"DOM.js",
28+
"Style.js",
29+
"Debug.js",
30+
"Export.js",
31+
"Plugin.js",
32+
"Done.js"
33+
],
34+
"enclosure": "Enclosure.js"
35+
}

build/potlite.package.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"fileName": "potlite.js",
3+
"debug": false,
4+
"version": "1.24",
5+
"files": [
6+
"Core.js",
7+
"Deferred.js",
8+
"Iterator.js",
9+
"Serializer.js",
10+
"URI.js",
11+
"Crypt.js",
12+
"Net.js",
13+
"XPCOM.js",
14+
"Signal.js",
15+
"Debug.js",
16+
"Export.js",
17+
"Plugin.js",
18+
"Done.js"
19+
],
20+
"enclosure": "Enclosure.js"
21+
}

0 commit comments

Comments
 (0)