forked from jxmorris12/language_tool_python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.py
More file actions
131 lines (109 loc) Β· 3.73 KB
/
Copy pathutils.py
File metadata and controls
131 lines (109 loc) Β· 3.73 KB
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
import http.client
import glob
import locale
import os
import re
import subprocess
import sys
import urllib.parse
import urllib.request
from .match import Match
from .which import which
JAR_NAMES = [
'languagetool-server.jar',
'languagetool-standalone*.jar', # 2.1
'LanguageTool.jar',
'LanguageTool.uno.jar'
]
FAILSAFE_LANGUAGE = 'en'
# https://mail.python.org/pipermail/python-dev/2011-July/112551.html
if os.name == 'nt':
startupinfo = subprocess.STARTUPINFO()
startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
else:
startupinfo = None
class LanguageToolError(Exception):
pass
class ServerError(LanguageToolError):
pass
class JavaError(LanguageToolError):
pass
class PathError(LanguageToolError):
pass
cache = {}
def parse_url(url_str):
""" Parses a URL string, and adds 'http' if necessary. """
if 'http' not in url_str:
url_str = 'http://' + url_str
return urllib.parse.urlparse(url_str).geturl()
def correct(text: str, matches: [Match]) -> str:
"""Automatically apply suggestions to the text."""
ltext = list(text)
matches = [match for match in matches if match.replacements]
errors = [ltext[match.offset:match.offset + match.errorLength]
for match in matches]
correct_offset = 0
for n, match in enumerate(matches):
frompos, topos = (correct_offset + match.offset,
correct_offset + match.offset + match.errorLength)
if ltext[frompos:topos] != errors[n]:
continue
repl = match.replacements[0]
ltext[frompos:topos] = list(repl)
correct_offset += len(repl) - len(errors[n])
return ''.join(ltext)
def get_language_tool_download_path():
# Get download path from environment or use default.
download_path = os.environ.get(
'LTP_PATH',
os.path.join(os.path.expanduser("~"), ".cache", "language_tool_python")
)
# Make download path, if it doesn't exist.
os.makedirs(download_path, exist_ok=True)
return download_path
def get_language_tool_directory():
"""Get LanguageTool directory."""
download_folder = get_language_tool_download_path()
assert os.path.isdir(download_folder)
language_tool_path_list = [
path for path in
glob.glob(os.path.join(download_folder, 'LanguageTool*'))
if os.path.isdir(path)
]
if not len(language_tool_path_list):
raise FileNotFoundError('LanguageTool not found in {}.'.format(download_folder))
return max(language_tool_path_list)
def get_server_cmd(port=None):
try:
cmd = cache['server_cmd']
except KeyError:
java_path, jar_path = get_jar_info()
cmd = [java_path, '-cp', jar_path,
'org.languagetool.server.HTTPServer']
cache['server_cmd'] = cmd
return cmd if port is None else cmd + ['-p', str(port)]
def get_jar_info():
try:
java_path, jar_path = cache['jar_info']
except KeyError:
java_path = which('java')
if not java_path:
raise JavaError("can't find Java")
dir_name = get_language_tool_directory()
jar_path = None
for jar_name in JAR_NAMES:
for jar_path in glob.glob(os.path.join(dir_name, jar_name)):
if os.path.isfile(jar_path):
break
else:
jar_path = None
if jar_path:
break
else:
raise PathError("can't find languagetool-standalone in {!r}"
.format(dir_name))
cache['jar_info'] = java_path, jar_path
return java_path, jar_path
def get_locale_language():
"""Get the language code for the current locale setting."""
return locale.getlocale()[0] or locale.getdefaultlocale()[0]