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
|
# Copyright © 2016-2022 Jakub Wilk <jwilk@jwilk.net>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the “Software”), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
'''
anorack CLI
'''
import argparse
import io
import signal
import sys
from lib.articles import choose_art
from lib.io import (
get_encoding,
open_file,
)
from lib.misc import coerce_case, warn
from lib.parser import parse_file
from lib.phonetics import init as init_phonetics, text_to_phonemes
from lib.version import __version__
class VersionAction(argparse.Action):
'''
argparse --version action
'''
def __init__(self, option_strings, dest=argparse.SUPPRESS):
super().__init__(
option_strings=option_strings,
dest=dest,
nargs=0,
help='show version information and exit'
)
def __call__(self, parser, namespace, values, option_string=None):
from lib import espeak # pylint: disable=import-outside-toplevel
print(f'{parser.prog} {__version__}')
print('+ Python {0}.{1}.{2}'.format(*sys.version_info))
ng = ' NG' if espeak.ng else ''
print(f'+ eSpeak{ng} {espeak.version}')
parser.exit()
def check_word(loc, art, word, *, ipa=False):
'''
check if the word has correct article
'''
phon = text_to_phonemes(word, ipa=ipa)
correct_art = choose_art(phon)
if correct_art is NotImplemented:
warn(f"can't determine correct article for {word!r} /{phon}/")
elif art.lower() != correct_art:
correct_art = coerce_case(art, correct_art)
print(f'{loc}: {art} {word} -> {correct_art} {word} /{phon}/')
def main():
'''
run the program
'''
signal.signal(signal.SIGPIPE, signal.SIG_DFL)
ap = argparse.ArgumentParser(description='"a" vs "an" checker')
ap.add_argument('--version', action=VersionAction)
ap.add_argument('--ipa', action='store_true', help='use IPA instead of phoneme mnemonics')
ap.add_argument('--traceback', action='store_true', help=argparse.SUPPRESS)
ap.add_argument('files', metavar='FILE', nargs='*', default=['-'],
help='file to check (default: stdin)')
options = ap.parse_args()
encoding = get_encoding()
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding, line_buffering=sys.stdout.line_buffering)
sys.stderr = io.TextIOWrapper(sys.stderr.buffer, encoding, line_buffering=sys.stdout.line_buffering)
init_phonetics()
rc = 0
for path in options.files:
try:
file = open_file(path, encoding=encoding, errors='replace')
except OSError as exc:
if options.traceback:
raise
msg = f'{ap.prog}: {path}: {exc.strerror}'
print(msg, file=sys.stderr)
rc = 1
continue
with file:
for loc, art, word in parse_file(file):
check_word(loc, art, word, ipa=options.ipa)
sys.exit(rc)
__all__ = ['main']
# vim:ts=4 sts=4 sw=4 et
|