calamares/src/modules/dummypython/main.py

62 lines
2.6 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>
#
# 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/>.
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
2014-07-29 14:06:58 +02:00
def run():
2015-02-21 10:09:01 +01:00
""" Example Python jobmodule.
2015-02-20 20:54:25 +01:00
2015-02-21 10:09:01 +01:00
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.
2015-02-20 20:54:25 +01:00
:return:
"""
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"
accumulator += "This job's path: " + libcalamares.job.working_path + "\n"
2014-07-29 14:06:58 +02:00
accumulator += str(libcalamares.job.configuration)
accumulator += " *** globalstorage test ***\n"
2015-02-18 16:03:57 +01:00
accumulator += "lala: " + str(libcalamares.globalstorage.contains("lala")) + "\n"
accumulator += "foo: " + str(libcalamares.globalstorage.contains("foo")) + "\n"
accumulator += "count: " + str(libcalamares.globalstorage.count()) + "\n"
libcalamares.globalstorage.insert("item2", "value2")
libcalamares.globalstorage.insert("item3", 3)
accumulator += "keys: {}\n".format(str(libcalamares.globalstorage.keys()))
2015-02-18 16:03:57 +01:00
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 14:06:58 +02:00
libcalamares.job.setprogress(0.1)
2014-07-29 20:20:22 +02:00
libcalamares.utils.debug(accumulator)
2014-08-01 09:59:23 +02:00
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