mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Implement a --add-simple-plugin option for calibre-debug that makes it easy to add calibre plugins distributed as .py files
This commit is contained in:
parent
ffa6c73c8d
commit
2708065870
@ -2,7 +2,7 @@ from __future__ import with_statement
|
|||||||
__license__ = 'GPL v3'
|
__license__ = 'GPL v3'
|
||||||
__copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>'
|
__copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>'
|
||||||
|
|
||||||
import os, shutil, traceback, functools, sys
|
import os, shutil, traceback, functools, sys, re
|
||||||
|
|
||||||
from calibre.customize import Plugin, FileTypePlugin, MetadataReaderPlugin, \
|
from calibre.customize import Plugin, FileTypePlugin, MetadataReaderPlugin, \
|
||||||
MetadataWriterPlugin
|
MetadataWriterPlugin
|
||||||
@ -54,7 +54,14 @@ def load_plugin(path_to_zip_file):
|
|||||||
for name in zf.namelist():
|
for name in zf.namelist():
|
||||||
if name.lower().endswith('plugin.py'):
|
if name.lower().endswith('plugin.py'):
|
||||||
locals = {}
|
locals = {}
|
||||||
exec zf.read(name) in locals
|
raw = zf.read(name)
|
||||||
|
match = re.search(r'coding[:=]\s*([-\w.]+)', raw[:300])
|
||||||
|
encoding = 'utf-8'
|
||||||
|
if match is not None:
|
||||||
|
encoding = match.group(1)
|
||||||
|
raw = raw.decode(encoding)
|
||||||
|
raw = re.sub('\r\n', '\n', raw)
|
||||||
|
exec raw in locals
|
||||||
for x in locals.values():
|
for x in locals.values():
|
||||||
if isinstance(x, type) and issubclass(x, Plugin):
|
if isinstance(x, type) and issubclass(x, Plugin):
|
||||||
if x.minimum_calibre_version > version or \
|
if x.minimum_calibre_version > version or \
|
||||||
|
@ -31,6 +31,11 @@ Run an embedded python interpreter.
|
|||||||
parser.add_option('--migrate', action='store_true', default=False,
|
parser.add_option('--migrate', action='store_true', default=False,
|
||||||
help='Migrate old database. Needs two arguments. Path '
|
help='Migrate old database. Needs two arguments. Path '
|
||||||
'to library1.db and path to new library folder.')
|
'to library1.db and path to new library folder.')
|
||||||
|
parser.add_option('--add-simple-plugin', default=None,
|
||||||
|
help='Add a simple plugin (i.e. a plugin that consists of only a '
|
||||||
|
'.py file), by specifying the path to the py file containing the '
|
||||||
|
'plugin code.')
|
||||||
|
|
||||||
return parser
|
return parser
|
||||||
|
|
||||||
def update_zipfile(zipfile, mod, path):
|
def update_zipfile(zipfile, mod, path):
|
||||||
@ -115,6 +120,22 @@ def debug_device_driver():
|
|||||||
print 'Total space:', d.total_space()
|
print 'Total space:', d.total_space()
|
||||||
break
|
break
|
||||||
|
|
||||||
|
def add_simple_plugin(path_to_plugin):
|
||||||
|
import tempfile, zipfile, shutil
|
||||||
|
tdir = tempfile.mkdtemp()
|
||||||
|
open(os.path.join(tdir, 'custom_plugin.py'),
|
||||||
|
'wb').write(open(path_to_plugin, 'rb').read())
|
||||||
|
odir = os.getcwd()
|
||||||
|
os.chdir(tdir)
|
||||||
|
zf = zipfile.ZipFile('plugin.zip', 'w')
|
||||||
|
zf.write('custom_plugin.py')
|
||||||
|
zf.close()
|
||||||
|
from calibre.customize.ui import main
|
||||||
|
main(['calibre-customize', '-a', 'plugin.zip'])
|
||||||
|
os.chdir(odir)
|
||||||
|
shutil.rmtree(tdir)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def main(args=sys.argv):
|
def main(args=sys.argv):
|
||||||
opts, args = option_parser().parse_args(args)
|
opts, args = option_parser().parse_args(args)
|
||||||
@ -137,6 +158,8 @@ def main(args=sys.argv):
|
|||||||
print 'You must specify the path to library1.db and the path to the new library folder'
|
print 'You must specify the path to library1.db and the path to the new library folder'
|
||||||
return 1
|
return 1
|
||||||
migrate(args[1], args[2])
|
migrate(args[1], args[2])
|
||||||
|
elif opts.add_simple_plugin is not None:
|
||||||
|
add_simple_plugin(opts.add_simple_plugin)
|
||||||
else:
|
else:
|
||||||
from IPython.Shell import IPShellEmbed
|
from IPython.Shell import IPShellEmbed
|
||||||
ipshell = IPShellEmbed()
|
ipshell = IPShellEmbed()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user