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
|
#
# Copyright (C) 2007, 2009, 2011 Canonical Ltd.
# Copyright (C) 2022-2023 Jelmer Vernooij <jelmer@jelmer.uk>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
# This code is from bzr-explorer and modified for bzr.
"""build_mo command for setup.py."""
import logging
import os
import re
import sys
from distutils.util import convert_path
from typing import List, Optional, Tuple
from setuptools import Command
from setuptools.dist import Distribution
__version__ = (0, 1, 10)
DEFAULT_SOURCE_DIR = "po"
DEFAULT_BUILD_DIR = "locale"
DEFAULT_LANGUAGE = "en"
def lang_from_dir(source_dir: os.PathLike) -> List[str]:
re_po = re.compile(r"^([a-zA-Z_]+)\.po$")
lang = []
for i in os.listdir(source_dir):
mo = re_po.match(i)
if mo:
lang.append(mo.group(1))
return lang
def parse_lang(lang: str) -> List[str]:
return [i.strip() for i in lang.split(",") if i.strip()]
class build_mo(Command):
"""Subcommand of build command: build_mo."""
description = "compile po files to mo files"
# List of options:
# - long name,
# - short name (None if no short name),
# - help string.
user_options = [
("build-dir=", "d", "Directory to build locale files"),
("output-base=", "o", "mo-files base name"),
("force", "f", "Force creation of mo files"),
("lang=", None, "Comma-separated list of languages " "to process"),
]
boolean_options = ["force"]
def initialize_options(self):
self.build_dir = None
self.output_base = None
self.force = None
self.lang = None
self.outfiles = []
def finalize_options(self):
self.set_undefined_options("build", ("force", "force"))
self.prj_name = self.distribution.get_name()
if not self.output_base:
self.output_base = self.prj_name or "messages"
self.source_dir = self.distribution.gettext_source_dir
if self.build_dir is None:
self.build_dir = (
getattr(self.distribution, "gettext_build_dir", None)
or DEFAULT_BUILD_DIR
)
if self.lang is None:
self.lang = lang_from_dir(self.source_dir)
else:
self.lang = parse_lang(self.lang)
def get_inputs(self):
inputs = []
for lang in self.lang:
po = os.path.join(self.source_dir, lang + ".po")
if not os.path.isfile(po):
po = os.path.join(self.source_dir, lang + ".po")
inputs.append(po)
return inputs
def run(self):
"""Run msgfmt for each language."""
if not self.lang:
return
if find_executable("msgfmt") is None:
logging.warn("GNU gettext msgfmt utility not found!")
logging.warn("Skip compiling po files.")
return
default_lang = self.distribution.gettext_default_language
if default_lang in self.lang:
if find_executable("msginit") is None:
logging.warn("GNU gettext msginit utility not found!")
logging.warn("Skip creating English PO file.")
else:
logging.info("Creating English PO file...")
pot = (self.prj_name or "messages") + ".pot"
en_po = default_lang + ".po"
self.spawn(
[
"msginit",
"--no-translator",
"-l",
default_lang,
"-i",
os.path.join(self.source_dir, pot),
"-o",
os.path.join(self.source_dir, en_po),
]
)
basename = self.output_base
if not basename.endswith(".mo"):
basename += ".mo"
for lang in self.lang:
po = os.path.join(self.source_dir, lang + ".po")
if not os.path.isfile(po):
po = os.path.join(self.source_dir, lang + ".po")
dir_ = os.path.join(self.build_dir, lang, "LC_MESSAGES")
self.mkpath(dir_)
mo = os.path.join(dir_, basename)
if self.force or newer(po, mo):
logging.info(f"Compile: {po} -> {mo}")
self.spawn(["msgfmt", "-o", mo, po])
self.outfiles.append(mo)
def get_outputs(self):
return self.outfiles
class clean_mo(Command):
description = "clean .mo files"
user_options = [("build-dir=", "d", "Directory to build locale files")]
def initialize_options(self):
self.build_dir = None
def finalize_options(self):
if self.build_dir is None:
self.build_dir = (
getattr(self.distribution, "gettext_build_dir", None)
or DEFAULT_BUILD_DIR
)
def run(self):
if not os.path.isdir(self.build_dir):
return
for root, dirs, files in os.walk(self.build_dir):
for file_ in files:
if file_.endswith(".mo"):
os.unlink(os.path.join(root, file_))
def gather_built_files(build_dir) -> List[str]:
import glob
return glob.glob(build_dir + "/*/LC_MESSAGES/*.mo")
class install_mo(Command):
description: str = "install .mo files"
user_options = [
('install-dir=', 'd',
"base directory for installing data files "
"(default: installation base dir)"),
('root=', None,
"install everything relative to this alternate root directory"),
('force', 'f', "force installation (overwrite existing files)"),
]
boolean_options = ['force']
build_dir: Optional[str]
def initialize_options(self) -> None:
self.data_files: List[str] = []
self.build_dir = None
self.install_dir = None
self.outfiles: List[str] = []
self.root = None
self.force = 0
def finalize_options(self) -> None:
if self.build_dir is None:
self.build_dir = self.distribution.gettext_build_dir # type: ignore
self.set_undefined_options('install',
('install_data', 'install_dir'),
('root', 'root'),
('force', 'force'),
)
def run(self) -> None:
assert self.install_dir is not None
self.mkpath(self.install_dir)
assert self.build_dir is not None
for filepath in gather_built_files(self.build_dir):
langfile = filepath[len(self.build_dir.rstrip("/") + "/") :]
install_dir = os.path.dirname(
os.path.join("share/locale", langfile)
)
# it's a tuple with path to install to and a list of files
dir = convert_path(install_dir)
if not os.path.isabs(dir):
dir = os.path.join(self.install_dir, dir)
elif self.root:
dir = change_root(self.root, dir)
self.mkpath(dir)
# Copy files, adding them to the list of output files.
data = convert_path(filepath)
(out, _) = self.copy_file(data, dir)
self.outfiles.append(out)
def get_inputs(self):
return gather_built_files(self.build_dir)
def get_outputs(self):
return self.outfiles
class update_pot(Command):
description: str = "update the .pot file"
user_options: List[Tuple[str, str, str]] = []
def initialize_options(self) -> None:
pass
def finalize_options(self) -> None:
pass
def run(self) -> None:
# TODO(jelmer): Support pygettext3 as well
xgettext = find_executable("xgettext")
if xgettext is None:
logging.error("GNU gettext xgettext utility not found!")
return
args = [xgettext]
args.extend(
[
"--package-name",
self.distribution.get_name(),
"--from-code",
"UTF-8",
"--sort-by-file",
"--add-comments=i18n:",
"-d",
self.distribution.get_name(),
"-p",
self.distribution.gettext_source_dir, # type: ignore
"-o",
f"{self.distribution.get_name()}.pot",
]
)
input_files = []
for root, _dirs, files in os.walk("."):
for file_ in files:
if file_.endswith(".py"):
input_files.append(os.path.join(root, file_))
args.extend(input_files)
pot_path = os.path.join(
self.distribution.gettext_source_dir, self.distribution.get_name() # type: ignore
)
if os.path.exists(pot_path):
args.append("--join")
if self.distribution.get_contact():
args += ["--msgid-bugs-address", self.distribution.get_contact()]
self.spawn(args)
def has_gettext(_c) -> bool:
return os.path.isdir(DEFAULT_SOURCE_DIR)
def pyprojecttoml_config(dist: Distribution) -> None:
build = dist.get_command_class("build")
build.sub_commands.append(("build_mo", has_gettext))
clean = dist.get_command_class("clean")
clean.sub_commands.append(("clean_mo", has_gettext))
install = dist.get_command_class("install")
install.sub_commands.append(("install_mo", has_gettext))
if sys.version_info[:2] >= (3, 11):
from tomllib import load as toml_load
else:
from tomli import load as toml_load
try:
with open("pyproject.toml", "rb") as f:
cfg = toml_load(f).get("tool", {}).get("setuptools-gettext")
except FileNotFoundError:
load_pyproject_config(dist, {})
else:
if cfg:
load_pyproject_config(dist, cfg)
else:
load_pyproject_config(dist, {})
def load_pyproject_config(dist: Distribution, cfg) -> None:
dist.gettext_source_dir = ( # type: ignore
cfg.get("source_dir") or DEFAULT_SOURCE_DIR
)
dist.gettext_build_dir = ( # type: ignore
cfg.get("build_dir") or DEFAULT_BUILD_DIR
)
dist.gettext_default_language = ( # type: ignore
cfg.get("default_language") or DEFAULT_LANGUAGE
)
def find_executable(executable):
_, ext = os.path.splitext(executable)
if sys.platform == "win32" and ext != ".exe":
executable = executable + ".exe"
if os.path.isfile(executable):
return executable
path = os.environ.get("PATH", os.defpath)
# PATH='' doesn't match, whereas PATH=':' looks in the current directory
if not path:
return None
paths = path.split(os.pathsep)
for p in paths:
f = os.path.join(p, executable)
if os.path.isfile(f):
return f
return None
def newer(source, target) -> bool:
if not os.path.exists(target):
return True
from stat import ST_MTIME
mtime1 = os.stat(source)[ST_MTIME]
mtime2 = os.stat(target)[ST_MTIME]
return mtime1 > mtime2
def change_root(new_root, pathname):
if os.name == "posix":
if not os.path.isabs(pathname):
return os.path.join(new_root, pathname)
else:
return os.path.join(new_root, pathname[1:])
elif os.name == "nt":
(drive, path) = os.path.splitdrive(pathname)
if path[0] == "\\":
path = path[1:]
return os.path.join(new_root, path)
else:
raise AssertionError("Unsupported OS: %s" % os.name)
|