manuskript/manuskript/exporter/basic.py

83 lines
1.7 KiB
Python
Raw Normal View History

2015-07-01 23:14:03 +12:00
#!/usr/bin/env python
2016-02-07 00:34:22 +13:00
# --!-- coding: utf8 --!--
2016-04-02 06:01:27 +13:00
import shutil
2016-02-07 00:34:22 +13:00
import subprocess
2016-04-02 06:01:27 +13:00
from PyQt5.QtWidgets import QWidget
class basicExporter:
name = ""
description = ""
exportTo = []
cmd = ""
2015-07-01 23:14:03 +12:00
def __init__(self):
pass
2016-02-07 00:34:22 +13:00
2016-04-02 06:01:27 +13:00
@classmethod
def getFormatByName(cls, name):
for f in cls.exportTo:
if f.name == name:
return f
return None
@classmethod
def isValid(cls):
return cls.path() != None
@classmethod
def version(cls):
return ""
@classmethod
def path(cls):
return shutil.which(cls.cmd)
@classmethod
def run(cls, args):
r = subprocess.check_output([cls.cmd] + args) # timeout=.2
return r.decode("utf-8")
# Example of how to run a command
#
# cmdl = ['txt2tags', '-t', target, '--enc=utf-8', '--no-headers', '-o', '-', '-']
#
# cmd = subprocess.Popen(('echo', text), stdout=subprocess.PIPE)
# try:
# output = subprocess.check_output(cmdl, stdin=cmd.stdout, stderr=subprocess.STDOUT) # , cwd="/tmp"
# except subprocess.CalledProcessError as e:
# print("Error!")
# return text
# cmd.wait()
#
# return output.decode("utf-8")
class basicFormat:
implemented = False
requires = {
"Settings": False,
"PreviewBefore": False,
"PreviewAfter": False,
}
2016-02-07 00:34:22 +13:00
2016-04-02 06:01:27 +13:00
def __init__(self, name, description=""):
self.name = name
self.description = description
2016-02-07 00:34:22 +13:00
2016-04-02 06:01:27 +13:00
@classmethod
def settingsWidget(self):
return QWidget()
2016-02-07 00:34:22 +13:00
2016-04-02 06:01:27 +13:00
@classmethod
def previewWidgetBefore(self):
return QWidget()
2016-02-07 00:34:22 +13:00
2016-04-02 06:01:27 +13:00
@classmethod
def previewWidgetAfter(self):
return QWidget()