You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

194 lines
5.8 KiB

import re
from typing import List, Callable, Tuple
_Tokenizer = Callable[[bytes], Tuple[List[int], List[int]]]
ZWSP = "\u200B"
class Segmenter():
def __init__(self, tokenizer: _Tokenizer, separator: bytes):
self._tokenizer = tokenizer
self._separator = separator
escaped_separator = re.escape(separator)
self._segmentation_markers_pattern = re.compile(b''.join(
[b'(?:', escaped_separator, b'|', re.escape(ZWSP.encode()), b')+']))
self._redundant_markers_pattern = re.compile(b''.join(
[b'(?:', escaped_separator, ')?(\\n| | |,|、|。|?|!)'.encode(), b'(?:', escaped_separator, b')?']))
def __call__(self, text: bytes) -> bytes:
"""Runs the segmenter and produces a separator-joined string."""
if not text:
return []
text = self._RemoveAllMarkers(text)
starts, ends = self._tokenizer(text)
starts, ends = _RecoverGaps(text, starts, ends)
starts, ends = _MergeDisallowedPositions(text, starts, ends)
starts, ends = _RemoveEmptySegments(starts, ends)
output = self._separator.join([text[i:j] for i, j in zip(starts, ends)])
return self._RemoveRedundantMarkers(output)
def _RemoveRedundantMarkers(self, text: bytes) -> bytes:
"""Removes segmentation markers for cases that are handled at runtime anyway."""
return re.sub(self._redundant_markers_pattern, r'\1', text)
def _RemoveAllMarkers(self, text: bytes) -> bytes:
"""Remove the existing segmentation markers to allow for re-segmenting."""
return re.sub(self._segmentation_markers_pattern, b'', text)
def _RemoveEmptySegments(starts: List[int], ends: List[int]) -> Tuple[List[int], List[int]]:
"""Removes entries where start == end."""
return zip(*((start, end) for start, end in zip(starts, ends) if start != end))
def _RecoverGaps(text: bytes, starts: List[int], ends: List[int]) -> Tuple[List[int], List[int]]:
"""Recovers gaps from the segmenter-produced start and end indices.
The segmenter may produce gaps around spaces, e.g. segment("hello world") => "hello|world"
"""
out_starts = []
out_ends = []
prev_end = 0
for start, end in zip(starts, ends):
if start != prev_end:
out_starts.append(prev_end)
out_ends.append(start)
out_starts.append(start)
out_ends.append(end)
prev_end = end
if out_ends[-1] != len(text):
out_ends[-1] = len(text)
return out_starts, out_ends
_DISALLOW_SEGMENTATION = re.compile(
r'(?:\{.*?\}|\\[a-z]|[\w/-](?::[\w/-]?)?|[.,;?!=+/#]|.?’.?|.:|%[0-9a-z.]+)+'.encode())
def _MergeDisallowedPositions(text: bytes, starts: List[int], ends: List[int]) -> Tuple[List[int], List[int]]:
"""Merges segments disallowed by _DISALLOW_SEGMENTATION."""
disallowed = set()
for m in re.finditer(_DISALLOW_SEGMENTATION, text):
for i in range(m.start() + 1, m.end()):
disallowed.add(i)
out_starts = [starts[0]]
out_ends = [ends[0]]
for start, end in zip(starts[1:], ends[1:]):
if start in disallowed:
out_ends[-1] = end
else:
out_starts.append(start)
out_ends.append(end)
return out_starts, out_ends
def _QuoteLine(line):
return f'"{line}"\n'
def _SplitEveryN(input, n):
return [input[i:i + n] for i in range(0, len(input), n)]
def _FormatMsgStr(text_bytes):
"""A rough approximation of poedit formatting and wrapping."""
if not text_bytes:
return b'""\n'
text = text_bytes.decode()
output_lines = []
lines_with_newline = text.split('\\n')
for line_i, line_with_newline in enumerate(lines_with_newline):
if not line_with_newline and line_i != len(lines_with_newline) - 1:
output_lines.append('"\\n"\n')
continue
lines = _SplitEveryN(line_with_newline, 63)
if line_i == len(lines_with_newline) - 1:
lines = map(_QuoteLine, lines)
else:
lines[0:-1] = map(_QuoteLine, lines[0:-1])
lines[-1] = f'"{lines[-1]}\\n"\n'
output_lines.extend(lines)
if len(output_lines) > 1:
output_lines.insert(0, '""\n')
return ''.join(output_lines).encode()
_MSGSTR_PREFIX = b'msgstr '
def SegmentPo(input: List[bytes], tokenizer: _Tokenizer, separator: bytes = ZWSP.encode()) -> List[bytes]:
segmenter = Segmenter(tokenizer, separator)
output = []
# Skip poedit header
header_end = input.index(b'\n') + 1
output.extend(input[:header_end])
input = input[header_end:]
in_msgstr = False
msgstr_prefix = ""
msgstr = []
def _ProcessMsgStr():
text = segmenter(b''.join(msgstr))
output.append(msgstr_prefix + _FormatMsgStr(text))
for line in input:
if line.startswith(_MSGSTR_PREFIX):
msgstr_prefix, line = line.split(b'"', maxsplit=1)
msgstr.append(line[:-2])
in_msgstr = True
elif in_msgstr and line.startswith(b'"'):
msgstr.append(line[1:-2])
else:
if msgstr:
_ProcessMsgStr()
msgstr.clear()
msgstr_prefix = ""
output.append(line)
in_msgstr = False
if msgstr:
_ProcessMsgStr()
return output
def Main(tokenizer: _Tokenizer):
import argparse
import os
import sys
parser = argparse.ArgumentParser()
parser.add_argument("--input_path", help="Path to the input .po file")
parser.add_argument("--output_path", help="Output path (default: in-place)")
parser.add_argument("--separator", default=ZWSP,
help="Separator to use between segments")
parser.add_argument("--debug",
help="If this flag is given, segments the given string, joins with \"|\", and prints it.")
args = parser.parse_args()
if args.debug:
segmenter = Segmenter(tokenizer, separator=''.encode())
with os.fdopen(sys.stdout.fileno(), "wb", closefd=False) as f:
f.write(segmenter(args.debug.encode()))
f.write(b'\n')
exit()
if not args.output_path:
args.output_path = args.input_path
with open(args.input_path, 'rb') as f:
input = f.readlines()
output = SegmentPo(input, tokenizer, separator=args.separator.encode())
with open(args.output_path, 'wb') if args.output_path != "/dev/stdout" else os.fdopen(sys.stdout.fileno(), "wb", closefd=False) as f:
f.write(b''.join(output))