mirror of
				https://github.com/kovidgoyal/calibre.git
				synced 2025-10-31 02:27:01 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			94 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/env python
 | |
| # vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
 | |
| from __future__ import with_statement
 | |
| 
 | |
| __license__   = 'GPL v3'
 | |
| __copyright__ = '2009, Kovid Goyal <kovid@kovidgoyal.net>'
 | |
| __docformat__ = 'restructuredtext en'
 | |
| 
 | |
| import os, cPickle
 | |
| 
 | |
| from setup import Command, basenames
 | |
| 
 | |
| def get_opts_from_parser(parser):
 | |
|     def do_opt(opt):
 | |
|         for x in opt._long_opts:
 | |
|             yield x
 | |
|         for x in opt._short_opts:
 | |
|             yield x
 | |
|     for o in parser.option_list:
 | |
|         for x in do_opt(o): yield x
 | |
|     for g in parser.option_groups:
 | |
|         for o in g.option_list:
 | |
|             for x in do_opt(o): yield x
 | |
| 
 | |
| class Resources(Command):
 | |
| 
 | |
|     description = 'Compile various needed calibre resources'
 | |
| 
 | |
|     def run(self, opts):
 | |
|         scripts = {}
 | |
|         for x in ('console', 'gui'):
 | |
|             for name in basenames[x]:
 | |
|                 if name in ('calibre-complete', 'calibre_postinstall'):
 | |
|                     continue
 | |
|                 scripts[name] = x
 | |
| 
 | |
|         dest = self.j(self.RESOURCES, 'scripts.pickle')
 | |
|         if self.newer(dest, self.j(self.SRC, 'calibre', 'linux.py')):
 | |
|             self.info('\tCreating scripts.pickle')
 | |
|             f = open(dest, 'wb')
 | |
|             cPickle.dump(scripts, f, -1)
 | |
| 
 | |
|         from calibre.web.feeds.recipes.collection import \
 | |
|                 serialize_builtin_recipes, iterate_over_builtin_recipe_files
 | |
| 
 | |
|         files = [x[1] for x in iterate_over_builtin_recipe_files()]
 | |
| 
 | |
|         dest = self.j(self.RESOURCES, 'builtin_recipes.xml')
 | |
|         if self.newer(dest, files):
 | |
|             self.info('\tCreating builtin_recipes.xml')
 | |
|             open(dest, 'wb').write(serialize_builtin_recipes())
 | |
| 
 | |
|         dest = self.j(self.RESOURCES, 'ebook-convert-complete.pickle')
 | |
|         files = []
 | |
|         for x in os.walk(self.j(self.SRC, 'calibre')):
 | |
|             for f in x[-1]:
 | |
|                 if f.endswith('.py'):
 | |
|                     files.append(self.j(x[0], f))
 | |
|         if self.newer(dest, files):
 | |
|             self.info('\tCreating ebook-convert-complete.pickle')
 | |
|             complete = {}
 | |
|             from calibre.ebooks.conversion.plumber import supported_input_formats
 | |
|             complete['input_fmts'] = set(supported_input_formats())
 | |
|             from calibre.web.feeds.recipes.collection import get_builtin_recipe_titles
 | |
|             complete['input_recipes'] = [t+'.recipe ' for t in
 | |
|                     get_builtin_recipe_titles()]
 | |
|             from calibre.customize.ui import available_output_formats
 | |
|             complete['output'] = set(available_output_formats())
 | |
|             from calibre.ebooks.conversion.cli import create_option_parser
 | |
|             from calibre.utils.logging import Log
 | |
|             log = Log()
 | |
|             #log.outputs = []
 | |
|             for inf in supported_input_formats():
 | |
|                 if inf in ('zip', 'rar', 'oebzip'):
 | |
|                     continue
 | |
|                 for ouf in available_output_formats():
 | |
|                     of = ouf if ouf == 'oeb' else 'dummy.'+ouf
 | |
|                     p = create_option_parser(('ec', 'dummy1.'+inf, of, '-h'),
 | |
|                             log)[0]
 | |
|                     complete[(inf, ouf)] = [x+' 'for x in
 | |
|                             get_opts_from_parser(p)]
 | |
| 
 | |
|             cPickle.dump(complete, open(dest, 'wb'), -1)
 | |
| 
 | |
|     def clean(self):
 | |
|         for x in ('scripts', 'recipes', 'ebook-convert-complete'):
 | |
|             x = self.j(self.RESOURCES, x+'.pickle')
 | |
|             if os.path.exists(x):
 | |
|                 os.remove(x)
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 |