calamares/src/modules/dummypython/main.py

102 lines
3.5 KiB
Python
Raw Normal View History

2014-07-16 16:10:49 +02:00
#!/usr/bin/env python3
2015-02-18 15:06:10 +01:00
# -*- coding: utf-8 -*-
#
2014-07-16 16:10:49 +02:00
# === This file is part of Calamares - <http://github.com/calamares> ===
#
# Copyright 2014, Teo Mrnjavac <teo@kde.org>
# Copyright 2017, Alf Gaida <agaida@siduction.org>
# Copyright 2017, Adriaan de Groot <groot@kde.org>
2014-07-16 16:10:49 +02:00
#
# Calamares 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 3 of the License, or
# (at your option) any later version.
#
# Calamares 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 Calamares. If not, see <http://www.gnu.org/licenses/>.
"""
=== Example Python jobmodule.
A Python jobmodule is a Python program which imports libcalamares and
has a function run() as entry point. run() must return None if everything
went well, or a tuple (str,str) with an error message and description
if something went wrong.
"""
import libcalamares
2014-07-16 16:10:49 +02:00
import os
2015-05-07 16:06:38 +02:00
from time import gmtime, strftime, sleep
2014-07-16 16:10:49 +02:00
import gettext
_ = gettext.translation("calamares-python",
localedir=libcalamares.job.gettext_path,
languages=libcalamares.globalstorage.gettext_languages(),
fallback=True).gettext
2017-08-15 11:39:58 +02:00
def pretty_name():
return _("Dummy python job.")
2014-07-29 14:06:58 +02:00
2017-08-15 11:39:58 +02:00
def run():
"""Dummy python job."""
2014-07-29 14:06:58 +02:00
os.system("/bin/sh -c \"touch ~/calamares-dummypython\"")
accumulator = strftime("%Y-%m-%d %H:%M:%S", gmtime()) + "\n"
accumulator += "Calamares version: " + libcalamares.VERSION_SHORT + "\n"
accumulator += "This job's name: " + libcalamares.job.pretty_name + "\n"
2017-08-09 17:02:25 +02:00
accumulator += "This job's path: " + libcalamares.job.working_path
libcalamares.utils.debug(accumulator)
accumulator = "*** Job configuration "
2014-07-29 14:06:58 +02:00
accumulator += str(libcalamares.job.configuration)
2017-08-09 17:02:25 +02:00
libcalamares.utils.debug(accumulator)
accumulator = "*** globalstorage test ***"
accumulator += "lala: "
accumulator += str(libcalamares.globalstorage.contains("lala")) + "\n"
accumulator += "foo: "
accumulator += str(libcalamares.globalstorage.contains("foo")) + "\n"
2017-08-09 17:02:25 +02:00
accumulator += "count: " + str(libcalamares.globalstorage.count())
libcalamares.utils.debug(accumulator)
libcalamares.globalstorage.insert("item2", "value2")
libcalamares.globalstorage.insert("item3", 3)
2017-08-09 17:02:25 +02:00
accumulator = "keys: {}\n".format(str(libcalamares.globalstorage.keys()))
libcalamares.utils.debug(accumulator)
accumulator = "remove: {}\n".format(
str(libcalamares.globalstorage.remove("item2")))
2014-07-29 14:06:58 +02:00
accumulator += "values: {} {} {}\n".format(
str(libcalamares.globalstorage.value("foo")),
str(libcalamares.globalstorage.value("item2")),
str(libcalamares.globalstorage.value("item3")))
2014-07-29 20:20:22 +02:00
libcalamares.utils.debug(accumulator)
2014-08-01 09:59:23 +02:00
libcalamares.utils.debug("Run dummy python")
sleep(1)
try:
2017-08-15 11:39:58 +02:00
configlist = list(libcalamares.job.configuration["a_list"])
except KeyError:
2017-08-15 11:39:58 +02:00
configlist = ["no list"]
c = 1
2017-08-15 11:39:58 +02:00
for k in configlist:
libcalamares.utils.debug(_("Dummy python step {}").format(str(k)))
sleep(1)
2017-08-15 11:39:58 +02:00
libcalamares.job.setprogress(c * 1.0 / len(configlist))
c += 1
2015-11-20 18:09:36 +01:00
sleep(3)
2014-08-01 09:59:23 +02:00
# To indicate an error, return a tuple of:
# (message, detailed-error-message)
return None