summaryrefslogtreecommitdiff
path: root/src/zope/i18n/compile.py
blob: 5a5564f59efea979c82055cb3b2b6507a83cdba4 (plain)
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
import logging
import os.path
from contextlib import closing
from os.path import join

from pythongettext.msgfmt import Msgfmt
from pythongettext.msgfmt import PoSyntaxError


logger = logging.getLogger('zope.i18n')


HAS_PYTHON_GETTEXT = True


def _safe_mtime(path):
    try:
        return os.path.getmtime(path)
    except OSError:
        return None


def compile_mo_file(domain, lc_messages_path):
    """Creates or updates a mo file in the locales folder."""

    base = join(lc_messages_path, domain)
    pofile = str(base + '.po')
    mofile = str(base + '.mo')

    po_mtime = _safe_mtime(pofile)
    mo_mtime = _safe_mtime(mofile) or 0

    if po_mtime is None:
        logger.debug("Unable to access %s (%s)",
                     pofile, po_mtime)
        return

    if po_mtime > mo_mtime:
        try:
            # Msgfmt doesn't properly close a
            # file it opens for reading if you pass the path,
            # but it does if you pass the file.
            with open(pofile, 'rb') as pofd:
                with closing(Msgfmt(pofd, domain).getAsFile()) as mo:
                    with open(mofile, 'wb') as fd:
                        fd.write(mo.read())
        except PoSyntaxError as err:
            logger.warning(
                'Syntax error while compiling %s (%s).', pofile, err.msg)
        except OSError as err:
            logger.warning('Error while compiling %s (%s).', pofile, err)