diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-04-26 23:58:57 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-05-19 03:43:32 +0200 |
commit | d3c6b7ff4cc863d94a005737294026a8f9297ee1 (patch) | |
tree | ba352b0fe1449003ee5ccdbca8ea88d9a72fb890 | |
parent | a3a74db73ef9167cc886d00bb62727fdfb6f4888 (diff) |
add missing file
Change-Id: I7cd9d541b90f4f6b38aa5e36e295e7677bb22f58
-rw-r--r-- | bin/update/path.py | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/bin/update/path.py b/bin/update/path.py new file mode 100644 index 000000000000..1bc14d70d940 --- /dev/null +++ b/bin/update/path.py @@ -0,0 +1,52 @@ +# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +import os +import errno + +def mkdir_p(path): + try: + os.makedirs(path) + except OSError as exc: # Python >2.5 + if exc.errno == errno.EEXIST and os.path.isdir(path): + pass + else: + raise + +class UpdaterPath(object): + + def __init__(self, workdir): + self._workdir = workdir + + def get_workdir(self): + return self._workdir + + def get_update_dir(self): + return os.path.join(self._workdir, "update-info") + + def get_current_build_dir(self): + return os.path.join(self._workdir, "mar", "current-build") + + def get_mar_dir(self): + return os.path.join(self._workdir, "mar") + + def get_previous_build_dir(self): + return os.path.join(self._workdir, "mar", "previous-build") + + def get_language_dir(self): + return os.path.join(self.get_mar_dir(), "language") + + def ensure_dir_exist(self): + mkdir_p(self.get_update_dir()) + mkdir_p(self.get_current_build_dir()) + mkdir_p(self.get_mar_dir()) + mkdir_p(self.get_previous_build_dir()) + mkdir_p(self.get_language_dir()) + +# vim: set shiftwidth=4 softtabstop=4 expandtab: |