Skip to content

Commit 6cf3c9b

Browse files
committed
fix memory crash
1 parent 133f33e commit 6cf3c9b

File tree

2 files changed

+17
-8
lines changed

2 files changed

+17
-8
lines changed

bang/main.php

+10-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
function _log($s) {
1414
global $logFile;
1515
fwrite($logFile, date('[m/d H:i] ').$s."\n");
16-
//echo $s."\n";
16+
echo $s."\n";
1717
}
1818

1919
function parseProto($file) {
@@ -150,9 +150,9 @@ function processDict(&$arr) {
150150
}
151151
}
152152

153-
function prettifyJSON($in) {
153+
function prettifyJSON($in, Stream $out = NULL, $returnData = true) {
154154
$in = new MemoryStream($in);
155-
$out = new MemoryStream('');
155+
if ($out == NULL) $out = new MemoryStream('');
156156

157157
$offset = 0;
158158
$length = $in->size;
@@ -210,6 +210,7 @@ function prettifyJSON($in) {
210210
}
211211
$offset++;
212212
}
213+
if (!$returnData) return;
213214
$out->seek(0);
214215
$output = $out->readData($out->size);
215216
unset($out);
@@ -316,8 +317,13 @@ function prettifyJSON($in) {
316317
chdir(__DIR__);
317318
foreach (glob('data/*.json') as $file) {$file!='data/AssetBundleInfo.json'&&unlink($file);}
318319

320+
$i = 0;
319321
foreach ($master as $part=>&$data) {
320-
file_put_contents("data/${part}.json", prettifyJSON(json_encode($data, JSON_UNESCAPED_SLASHES+JSON_UNESCAPED_UNICODE)));
322+
//echo (++$i)."/$count $part\n";
323+
$json = json_encode($data, JSON_UNESCAPED_SLASHES+JSON_UNESCAPED_UNICODE);
324+
fclose(fopen("data/${part}.json", 'w'));
325+
prettifyJSON($json, new FileStream("data/${part}.json"), false);
326+
unset($json);
321327
}
322328

323329
$situationMap = &$master['masterCharacterSituationMap'];

haifuri/main.php

+7-4
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,8 @@ function main() {
165165
continue;
166166
}
167167
$dec = DecryptMaster($response, $item['Iv'], $item['Salt']);
168-
file_put_contents($fname, prettifyJSON(json_encode(json_decode($dec, true), JSON_UNESCAPED_SLASHES+JSON_UNESCAPED_UNICODE)));
168+
fclose(fopen($fname, 'w'));
169+
prettifyJSON(json_encode(json_decode($dec, true), JSON_UNESCAPED_SLASHES+JSON_UNESCAPED_UNICODE), new FileStream($fname), false);
169170
$last_version[$item['MasterName']] = $item['Sha1'];
170171
}
171172

@@ -179,7 +180,8 @@ function main() {
179180
_log("Downloading assets manifest ver $ver for $platform");
180181
curl_setopt($curl, CURLOPT_URL, "https://prd-static.haifuri.app/assets/$platform/$ver/FileSystemOverrideRecords");
181182
$manifest = gzdecode(DecryptSaveData(curl_exec($curl)));
182-
file_put_contents("data/AssetManifest_${platform}.json", prettifyJSON(json_encode(json_decode($manifest), JSON_UNESCAPED_SLASHES+JSON_UNESCAPED_UNICODE)));
183+
fclose(fopen("data/AssetManifest_${platform}.json", 'w'));
184+
prettifyJSON(json_encode(json_decode($manifest), JSON_UNESCAPED_SLASHES+JSON_UNESCAPED_UNICODE), new FileStream("data/AssetManifest_${platform}.json"), false);
183185
}
184186
}
185187

@@ -197,9 +199,9 @@ function main() {
197199
main();
198200

199201

200-
function prettifyJSON($in) {
202+
function prettifyJSON($in, Stream $out = NULL, $returnData = true) {
201203
$in = new MemoryStream($in);
202-
$out = new MemoryStream('');
204+
if ($out == NULL) $out = new MemoryStream('');
203205

204206
$offset = 0;
205207
$length = $in->size;
@@ -257,6 +259,7 @@ function prettifyJSON($in) {
257259
}
258260
$offset++;
259261
}
262+
if (!$returnData) return;
260263
$out->seek(0);
261264
$output = $out->readData($out->size);
262265
unset($out);

0 commit comments

Comments
 (0)