Re-root site.

This commit is contained in:
Brad Nelson
2022-02-27 20:59:19 -08:00
parent a26786d7ef
commit fb47179999
131 changed files with 27 additions and 39 deletions

91
tools/memuse.py Executable file
View File

@ -0,0 +1,91 @@
#! /usr/bin/env python
import sys
vocab = None
data = []
for line in sys.stdin.read().splitlines():
parts = line.strip().split(' ')
if (len(parts) != 4 or parts[0] == '-->' or
parts[1] == 'bytes'):
continue
params = int(parts[0])
size = int(parts[1])
addr = int(parts[2])
name = parts[3]
if params == 0 and size == 0 and addr == 0:
vocab = name
else:
data.append((addr, params, size, vocab, name))
data.sort()
base = None
layout = []
last_end = None
for addr, params, size, vocab, name in data:
end = addr + (params - 1) * 4
start = end - size
if base is None:
base = start
if last_end is not None and last_end != start:
layout.append((last_end - base, start - last_end, 0, 'none', '--GAP--'))
layout.append((start - base, end - start, params, vocab, name))
last_end = end
string_size = 0
params_size = 0
struct_size = 0
builtin_count = 0
builtin_size = 0
vocab_param_size = {}
vocab_size = {}
vocab_count = {}
for start, size, params, vocab, name in layout:
string_size += size - params * 4 - 3 * 4
params_size += (params * 4)
struct_size += 3 * 4
if vocab not in vocab_size:
vocab_size[vocab] = 0
vocab_param_size[vocab] = 0
vocab_count[vocab] = 0
vocab_size[vocab] += size
vocab_param_size[vocab] += params * 4
vocab_count[vocab] += 1
if params == 0:
builtin_count += 1
builtin_size += size
vocab_table = []
for vocab in vocab_size:
vocab_table.append(
(vocab_size[vocab], vocab_param_size[vocab], vocab_count[vocab], vocab))
vocab_table.sort()
def Columns(data, widths, underline=False):
result = []
for i in range(len(data)):
result.append((str(data[i]) + ' ' * widths[i])[:widths[i]])
if underline:
return (''.join(result) + '\n' +
Columns(['-' * len(i) for i in data], widths))
return ''.join(result)
items = len(layout)
columns = [7, 7, 7, 15, 30]
print(Columns(['START', 'SIZE', 'PARAMS', 'VOCABULARY', 'WORD'], columns, underline=True))
for item in layout:
print(Columns(item, columns))
print('')
columns = [7, 12, 7, 15]
print(Columns(['SIZE', 'PARAM SIZE', 'COUNT', 'VOCABULARY'], columns, underline=True))
for item in vocab_table:
print(Columns(item, columns))
print('')
columns = [7, 7, 15]
print(Columns(['SIZE', 'COUNT', 'CATEGORY'], columns, underline=True))
print(Columns([string_size, items, 'names'], columns))
print(Columns([params_size, items, 'params'], columns))
print(Columns([struct_size, items, 'structure'], columns))
print(Columns([builtin_size, builtin_count, 'builtins'], columns))

69
tools/replace.js Executable file
View File

@ -0,0 +1,69 @@
#! /usr/bin/env nodejs
// Copyright 2021 Bradley D. Nelson
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
var fs = require('fs');
function DropCopyright(source) {
var lines = source.split('\n');
var cleaned = [];
for (var i = 0; i < lines.length; ++i) {
if (lines[i] == '<!--') {
while (lines[i] != '-->') {
++i;
}
i += 2;
}
if (lines[i].search('Copyright') >= 0) {
while (lines[i] != '') {
++i;
}
} else {
cleaned.push(lines[i]);
}
}
return cleaned.join('\n');
}
var source = fs.readFileSync(process.stdin.fd).toString();
var replacements = [];
for (var i = 2; i < process.argv.length; ++i) {
var item = process.argv[i];
var m = item.match(/^([^=]+)=@(.+)$/);
if (m) {
var content = DropCopyright(fs.readFileSync(m[2]).toString());
replacements.push(['{{' + m[1] + '}}', content]);
continue;
}
var m = item.match(/^([^=]+)=(.+)$/);
if (m) {
replacements.push(['{{' + m[1] + '}}', m[2]]);
continue;
}
throw 'Bad replacement ' + item;
}
for (;;) {
var old_source = source;
for (var i = 0; i < replacements.length; ++i) {
source = source.replace(
replacements[i][0],
function() { return replacements[i][1]});
}
if (old_source == source) {
break;
}
}
process.stdout.write(source);

41
tools/webindex.py Normal file
View File

@ -0,0 +1,41 @@
#! /usr/bin/env python
# Copyright 2021 Bradley D. Nelson
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import sys
sys.stdout.write("""<!DOCTYPE html>
<head>
<title>Release Archive</title>
</head>
<body>
<h1>Release Archive</h1>
""")
output = []
for line in sys.stdin.read().splitlines():
parts = line.split()
if len(parts) != 3:
continue
modes, date, path = parts
url = path.replace('gs://eforth/', 'https://eforth.storage.googleapis.com/')
name = path.replace('gs://eforth/releases/', '')
if name == 'archive.html':
continue
output.append('%s <a href="%s">%s</a><br/>\n' % (date, name, url))
output.sort()
output.reverse()
for line in output:
sys.stdout.write(line)