-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.rs
540 lines (500 loc) · 19.3 KB
/
main.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
use rand::seq::SliceRandom;
use rand::thread_rng;
use regex::Regex;
use std::{
collections::HashMap,
env::{self, args},
fs::{self, read_to_string},
io::{self, Write},
path::Path,
process::exit,
};
fn main() {
let args: Vec<String> = args().collect();
// デバックするオプションが含まれるのぜ?
let debug = args.contains(&"--debug".to_string()) || args.contains(&"-d".to_string());
// 不要になったオプションを削除するのぜ
let args = if debug {
let mut args = args;
if let Some(x) = args.iter().position(|x| x == "--debug") {
args.remove(x);
}
if let Some(x) = args.iter().position(|x| x == "-d") {
args.remove(x);
}
args
} else {
args
};
// コマンドライン引数は存在するのぜ?
if let Some(path) = args.get(1).clone() {
// ファイルが開けるのぜ?
if let Ok(source) = read_to_string(path) {
noze(source, debug)
} else {
eprintln!("エラー!ファイルが開けません")
}
} else {
repl(debug);
};
}
/// 対話環境なのぜ
fn repl(debug: bool) {
println!("Noze:アセンブリ風の低レイヤ技術教育向け日本語プログラミング言語なのぜ!\n(c) 2024 梶塚太智. All rights reserved");
loop {
let mut code = String::new();
loop {
let enter = input("> ").trim().to_string();
if enter.is_empty() {
break;
}
code += &enter;
}
noze(code, debug);
}
}
/// ユーザ入力するのぜ
fn input(prompt: &str) -> String {
print!("{}", prompt);
io::stdout().flush().unwrap();
let mut result = String::new();
io::stdin().read_line(&mut result).ok();
result.trim().to_string()
}
/// 全角数字をf64型に変換するのぜ
fn fullwidth_to_usize(text: &str) -> Option<f64> {
let re = Regex::new(r"^[0123456789.]+$").unwrap();
if !re.is_match(text) {
return None;
}
let text = text
.replace("0", "0")
.replace("1", "1")
.replace("2", "2")
.replace("3", "3")
.replace("4", "4")
.replace("5", "5")
.replace("6", "6")
.replace("7", "7")
.replace("8", "8")
.replace("9", "9");
Some(text.parse().unwrap_or_default())
}
/// 複数のキーで文字列を分割するのぜ
fn split_multiple(text: String, key: Vec<char>) -> Vec<String> {
let mut result = Vec::new();
let mut buffer = String::new();
let mut flag = false;
for c in text.chars() {
if !flag {
if key.contains(&c) {
flag = true;
} else {
buffer.push(c);
}
} else {
if !key.contains(&c) {
result.push(buffer);
flag = false;
buffer = c.to_string();
}
}
}
if !buffer.is_empty() {
result.push(buffer)
}
result
}
/// データ型なのぜ
#[derive(Clone, Debug)]
enum Type {
Number(f64),
String(String),
Bool(bool),
Array(Vec<Type>),
None,
}
impl Type {
/// 文字列を値に変換するのぜ
fn parse(source: String, memory: &mut HashMap<String, Type>) -> Type {
let mut source = source.trim().to_string();
// 変数の読み込みの方が優先されるのぜ
if let Some(value) = memory.get(&source) {
value.clone()
} else if let Ok(value) = source.parse::<f64>() {
Type::Number(value)
} else if let Some(value) = fullwidth_to_usize(&source) {
Type::Number(value)
} else if source == "真" {
Type::Bool(true)
} else if source == "偽" {
Type::Bool(false)
} else if source == "無し" {
Type::None
// 文字列リテラルは鉤括弧で囲むのぜ
} else if source.starts_with("「") && source.starts_with("「") {
Type::String({
source.remove(source.find("「").unwrap_or_default());
source.remove(source.rfind("」").unwrap_or_default());
source.to_string()
})
// 配列リテラルは丸括弧で囲むのぜ
} else if source.starts_with("(") && source.starts_with(")") {
Type::Array({
source.remove(source.find("(").unwrap_or_default());
source.remove(source.rfind(")").unwrap_or_default());
// 要素はカンマ`で区切るのぜ
split_multiple(source, vec!['、', ','])
.into_iter()
.map(|item| Type::parse(item.to_string(), memory))
.collect()
})
} else {
// 処理できなかった値は最終的に文字列として処理されるのぜ
Type::String(source.to_string())
}
}
/// 数値を取得するのぜ
fn get_number(&self) -> f64 {
match self {
Type::Number(value) => *value,
Type::String(value) => value.parse().unwrap_or_default(),
Type::Bool(value) => {
if *value {
1.0
} else {
0.0
}
}
Type::Array(value) => value.get(0).unwrap_or(&Type::None).get_number(),
Type::None => 0.0,
}
}
/// 文字列を取得するのぜ
fn get_string(&self) -> String {
match self {
Type::Number(value) => value.to_string(),
Type::String(value) => value.to_string(),
Type::Bool(value) => if *value { "真" } else { "偽" }.to_string(),
Type::Array(value) => format!(
"( {} )",
value
.iter()
.map(|i| i.get_string())
.collect::<Vec<String>>()
.join("、")
),
Type::None => "無し".to_string(),
}
}
/// 論理を取得するのぜ
fn get_bool(&self) -> bool {
match self {
Type::Number(value) => *value != 0.0,
Type::String(value) => value == "真",
Type::Bool(value) => *value,
Type::Array(value) => !value.is_empty(),
Type::None => false,
}
}
/// 配列を取得するのぜ
fn get_array(&self) -> Vec<Type> {
match self {
Type::Number(value) => vec![Type::Number(*value)],
Type::String(value) => value
.chars()
.into_iter()
.map(|c| Type::String(c.to_string()))
.collect(),
Type::Bool(value) => vec![Type::Bool(*value)],
Type::Array(value) => value.clone(),
Type::None => vec![],
}
}
}
/// プログラムを実行するのぜ
fn noze(source: String, debug: bool) {
let memory: &mut HashMap<String, Type> = &mut HashMap::new();
let lines = split_multiple(source, ['。'].to_vec());
let mut pc: usize = 0;
// プリプロセッサなのぜ
while pc < lines.len() {
let code = lines[pc].trim();
pc += 1;
// 空白行は無視するのぜ
if code.is_empty() {
continue;
}
if code.ends_with("のぜ") {
let code = code.replace("のぜ", "");
if code.ends_with("な") {
if !code.contains("は") {
// ラベル変数に現在のプログラムカウンタの値を代入するのぜ
memory.insert(
code.replace("な", "").trim().to_string(),
Type::Number(pc as f64),
);
}
}
} else {
eprintln!("エラー!文の終端には「のぜ」を付ける必要があるのぜ");
return;
}
}
let mut call_stack: Vec<usize> = Vec::new();
let mut pc: usize = 0;
let mut output = String::new();
// メイン実行なのぜ
while pc < lines.len() {
let code = lines[pc].trim();
pc += 1;
// 空白行は無視するのぜ
if code.is_empty() {
continue;
}
// デバック表示なのぜ
if debug {
eprintln!(
"
プログラムカウンタ:{}
命令 :{}
呼び出しスタック :[ {} ]
記憶領域 :[ {} ]
出力: :{}",
pc,
code,
call_stack
.iter()
.map(|i| i.to_string())
.collect::<Vec<String>>()
.join(", "),
memory
.iter()
.map(|(k, v)| format!("{k}: {}", v.get_string()))
.collect::<Vec<String>>()
.join(", "),
output
);
input("Enterキーを押してデバック実行継続");
}
let code = code.replace("のぜ", "");
// 命令文なのぜ
if code.ends_with("する") {
let code = code.replace("する", "");
// この文は結果を変数に代入するのぜ?
let (name, code) = if code.contains("は") {
let code: Vec<&str> = code.split("は").collect();
(Some(code[0]), code[1..code.len()].join("は").to_string())
} else {
(None, code.to_string())
};
// 命令名と引数を区切るのぜ
let code: Vec<&str> = code.split("を").collect();
// 引数がある命令なのぜ
let result: Type = if code.len() > 1 {
let (order, args): (String, Vec<Type>) = (
code[code.len() - 1].to_string(),
code[0..code.len() - 1]
.join("を")
.split("と") // 引数の区切るのぜ
.into_iter()
.map(|s| Type::parse(s.to_string(), memory)) // 引数を評価するのぜ
.collect(),
);
match order.as_str() {
"足し算" => {
let args: Vec<f64> = args.iter().map(|i| i.get_number()).collect();
let mut result: f64 = args[0];
for i in args[1..args.len()].to_vec().iter() {
result += i;
}
Type::Number(result)
}
"引き算" => {
let args: Vec<f64> = args.iter().map(|i| i.get_number()).collect();
let mut result: f64 = args[0];
for i in args[1..args.len()].to_vec().iter() {
result -= i;
}
Type::Number(result)
}
"掛け算" => {
let args: Vec<f64> = args.iter().map(|i| i.get_number()).collect();
let mut result: f64 = args[0];
for i in args[1..args.len()].to_vec().iter() {
result *= i;
}
Type::Number(result)
}
"割り算" => {
let args: Vec<f64> = args.iter().map(|i| i.get_number()).collect();
let mut result: f64 = args[0];
for i in args[1..args.len()].to_vec().iter() {
result /= i;
}
Type::Number(result)
}
"余剰" => {
let args: Vec<f64> = args.iter().map(|i| i.get_number()).collect();
let mut result: f64 = args[0];
for i in args[1..args.len()].to_vec().iter() {
result %= i;
}
Type::Number(result)
}
"結合" => {
let args: Vec<String> = args.iter().map(|i| i.get_string()).collect();
Type::String(args.join(""))
}
"検索" => {
let args: Vec<String> = args.iter().map(|i| i.get_string()).collect();
Type::Bool(args[0].contains(&args[1]))
}
"ファイル読み込み" => Type::String(
read_to_string(Path::new(&args[0].get_string())).unwrap_or_default(),
),
"置換" => {
let args: Vec<String> = args.iter().map(|i| i.get_string()).collect();
Type::String(args[0].replace(&args[1], &args[2]))
}
"等しいか比較" => {
let args: Vec<String> = args.iter().map(|i| i.get_string()).collect();
Type::Bool(args.windows(2).all(|window| window[0] == window[1]))
}
"大きいか比較" => {
let args: Vec<f64> = args.iter().map(|i| i.get_number()).collect();
Type::Bool(args.windows(2).all(|window| window[0] > window[1]))
}
"小さいか比較" => {
let args: Vec<f64> = args.iter().map(|i| i.get_number()).collect();
Type::Bool(args.windows(2).all(|window| window[0] < window[1]))
}
"論理否定" => Type::Bool(!args[0].get_bool()),
"論理積" => {
let args: Vec<bool> = args.iter().map(|i| i.get_bool()).collect();
Type::Bool(args.iter().all(|&x| x))
}
"論理和" => {
let args: Vec<bool> = args.iter().map(|i| i.get_bool()).collect();
Type::Bool(args.iter().any(|&x| x))
}
"配列に" => Type::Array(args),
"配列の要素の取得" => {
args[0].get_array()[args[1].get_number() as usize].clone()
}
"配列の要素の削除" => {
let mut array = args[0].get_array();
array.remove(args[1].get_number() as usize);
Type::Array(array)
}
"表示" => {
let text = args
.iter()
.map(|i| i.get_string())
.collect::<Vec<String>>()
.join(" ");
if debug {
output += &format!("{text} ");
} else {
println!("{text}")
};
Type::None
}
"移動" => {
pc = args[0].get_number() as usize - 1;
Type::None
}
"条件付きで移動" => {
if args[1].get_bool() {
pc = args[0].get_number() as usize - 1
}
Type::None
}
"呼び出し" => {
call_stack.push(pc);
pc = args[0].get_number() as usize - 1;
Type::None
}
"評価" => Type::parse(args[0].get_string(), memory),
"削除" => {
memory.remove(&args[0].get_string());
Type::None
}
"現在ディレクトリに" => {
env::set_current_dir(Path::new(&args[0].get_string())).unwrap();
Type::None
}
"入力待ち" => Type::String(input(&format!("{}", args[0].get_string()))),
"ランダムに取得" => args[0]
.get_array()
.choose(&mut thread_rng())
.unwrap_or(&Type::None)
.to_owned(),
"範囲に" => {
let mut result: Vec<Type> = vec![];
let start = args[0].get_number();
let end = args[1].get_number();
let step = args[2].get_number();
let mut current = start;
while current < end {
result.push(Type::Number(current));
current += step;
}
Type::Array(result)
}
other => {
eprintln!("エラー!定義されてない命令なのぜ:{}", other);
return;
}
}
// 引数無しの命令なのぜ
} else {
match code[0] {
"終了" => exit(0),
"帰還" => {
pc = if let Some(i) = call_stack.pop() {
i
} else {
eprintln!("エラー!呼び出しスタックが空なのぜ");
return;
};
Type::None
}
"アイテム一覧の取得" => Type::Array(
fs::read_dir(".")
.unwrap()
.filter_map(|entry| {
entry
.ok()
.and_then(|e| e.file_name().into_string().ok())
.map(Type::String)
})
.collect(),
),
"現在ディレクトリの取得" => {
Type::String(env::current_dir().unwrap().to_str().unwrap().to_string())
}
"環境変数を取得" => {
Type::Array(args().into_iter().map(|i| Type::parse(i, memory)).collect())
}
other => {
eprintln!("エラー!定義されてない命令なのぜ:{}", other);
return;
}
}
};
// 結果を変数に代入するのぜ
if let Some(name) = name {
memory.insert(name.to_string(), result);
}
// 代入分なのぜ
} else if code.ends_with("な") {
// 変数をリテラルで定義するのぜ
if code.contains("は") {
let code: Vec<&str> = code.split("は").collect();
let value = Type::parse(code[1].replace("な", "").trim().to_string(), memory);
memory.insert(code[0].to_string(), value);
}
}
}
}