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
|
#![feature(iterator_try_collect)]
use anyhow::{anyhow, Context, Result};
use clap::Parser;
use std::{
collections::BTreeMap,
fs::{read_to_string, File},
io::Write,
path::PathBuf,
};
#[derive(Parser)]
enum Args {
ImportOldPot {
input: PathBuf,
output: PathBuf,
},
ImportOldPo {
reference: PathBuf,
input: PathBuf,
output: PathBuf,
},
}
fn main() -> Result<()> {
let args = Args::parse();
match args {
Args::ImportOldPo {
reference,
input,
output,
} => {
let reference = read_to_string(reference)?;
let input = read_to_string(input)?;
let id_reverse = reference
.lines()
.skip(1)
.map(|l| {
l.split_once("=")
.map(|(k, v)| (v, k))
.ok_or(anyhow!("invalid ini"))
})
.try_collect::<BTreeMap<&str, &str>>()?;
let mut outmap = BTreeMap::new();
let mut mode = 0;
let mut msgid = String::new();
let mut msgstr = String::new();
for (i, mut line) in input.lines().enumerate() {
if line.starts_with("#") {
continue;
}
if line.is_empty() {
continue;
}
if let Some(rest) = line.strip_prefix("msgid ") {
if !msgid.is_empty() {
if let Some(id) = id_reverse.get(&msgid.as_str()) {
outmap.insert(id.to_owned(), msgstr.clone());
} else {
eprintln!("warning: message id {msgid:?} is unknown")
}
}
line = rest;
msgid = String::new();
mode = 1;
} else if let Some(rest) = line.strip_prefix("msgstr ") {
line = rest;
msgstr = String::new();
mode = 2;
} else if let Some(_) = line.strip_prefix("msgctxt ") {
mode = 0;
eprintln!("warning: msgctxt not implemented (line {})", i + 1);
continue;
}
let frag =
serde_json::from_str::<String>(line).context(anyhow!("line {}", i + 1))?;
match mode {
0 => (),
1 => msgid.push_str(&frag),
2 => msgstr.push_str(&frag),
_ => unreachable!(),
};
}
File::create(output)?.write_all(
format!(
"[hurrycurry]\n{}",
outmap
.into_iter()
.map(|(k, v)| format!("{k}={v}\n"))
.collect::<String>()
)
.as_bytes(),
)?;
Ok(())
}
Args::ImportOldPot { input, output } => {
let output_raw = read_to_string(&output).unwrap_or("".to_owned());
let input = read_to_string(input)?;
let mut output_flip = output_raw
.lines()
.skip(1)
.map(|l| {
l.split_once("=")
.map(|(k, v)| (v.to_owned(), k.to_owned()))
.ok_or(anyhow!("invalid ini"))
})
.try_collect::<BTreeMap<String, String>>()?;
let mut id = false;
let mut msgid = String::new();
for (i, mut line) in input.lines().enumerate() {
if line.starts_with("#") {
continue;
}
if line.is_empty() {
continue;
}
if let Some(rest) = line.strip_prefix("msgid ") {
if !msgid.is_empty() {
if !output_flip.contains_key(&msgid) {
output_flip.insert(msgid.replace("\n", "\\n"), format!("unknown{i}"));
}
}
line = rest;
id = true;
msgid = String::new();
} else if line.starts_with("msgctxt ") || line.starts_with("msgstr ") {
id = false;
continue;
}
if id {
let frag =
serde_json::from_str::<String>(line).context(anyhow!("line {}", i + 1))?;
msgid.push_str(frag.as_str());
}
}
let output_unflip = output_flip
.into_iter()
.map(|(v, k)| (k, v))
.collect::<BTreeMap<_, _>>();
File::create(output)?.write_all(
format!(
"[hurrycurry]\n{}",
output_unflip
.into_iter()
.map(|(k, v)| format!("{k}={v}\n"))
.collect::<String>()
)
.as_bytes(),
)?;
Ok(())
}
}
}
|