Add a way to specify the MimeMapper mappings to its constructor directly.
[cvs2svn.git] / cvs2svn_lib / main.py
blob626dd8aa3145a4ac03e70f9f539767a650f00fa6
1 #!/usr/bin/env python
2 # (Be in -*- python -*- mode.)
4 # ====================================================================
5 # Copyright (c) 2000-2009 CollabNet. All rights reserved.
7 # This software is licensed as described in the file COPYING, which
8 # you should have received as part of this distribution. The terms
9 # are also available at http://subversion.tigris.org/license-1.html.
10 # If newer versions of this license are posted there, you may use a
11 # newer version instead, at your option.
13 # This software consists of voluntary contributions made by many
14 # individuals. For exact contribution history, see the revision
15 # history and logs, available at http://cvs2svn.tigris.org/.
16 # ====================================================================
18 import os
19 import errno
20 import gc
22 try:
23 # Try to get access to a bunch of encodings for use with --encoding.
24 # See http://cjkpython.i18n.org/ for details.
25 import iconv_codec
26 except ImportError:
27 pass
29 from cvs2svn_lib.common import FatalError
30 from cvs2svn_lib.svn_run_options import SVNRunOptions
31 from cvs2svn_lib.git_run_options import GitRunOptions
32 from cvs2svn_lib.bzr_run_options import BzrRunOptions
33 from cvs2svn_lib.context import Ctx
34 from cvs2svn_lib.pass_manager import PassManager
35 from cvs2svn_lib.passes import passes
38 def main(progname, run_options, pass_manager):
39 # Disable garbage collection, as we try not to create any circular
40 # data structures:
41 gc.disable()
43 # Convenience var, so we don't have to keep instantiating this Borg.
44 ctx = Ctx()
46 # Make sure the tmp directory exists. Note that we don't check if
47 # it's empty -- we want to be able to use, for example, "." to hold
48 # tempfiles.
49 if not os.path.exists(ctx.tmpdir):
50 erase_tmpdir = True
51 os.mkdir(ctx.tmpdir)
52 elif not os.path.isdir(ctx.tmpdir):
53 raise FatalError(
54 "cvs2svn tried to use '%s' for temporary files, but that path\n"
55 " exists and is not a directory. Please make it be a directory,\n"
56 " or specify some other directory for temporary files."
57 % (ctx.tmpdir,))
58 else:
59 erase_tmpdir = False
61 # But do lock the tmpdir, to avoid process clash.
62 try:
63 os.mkdir(os.path.join(ctx.tmpdir, 'cvs2svn.lock'))
64 except OSError, e:
65 if e.errno == errno.EACCES:
66 raise FatalError("Permission denied:"
67 + " No write access to directory '%s'." % ctx.tmpdir)
68 if e.errno == errno.EEXIST:
69 raise FatalError(
70 "cvs2svn is using directory '%s' for temporary files, but\n"
71 " subdirectory '%s/cvs2svn.lock' exists, indicating that another\n"
72 " cvs2svn process is currently using '%s' as its temporary\n"
73 " workspace. If you are certain that is not the case,\n"
74 " then remove the '%s/cvs2svn.lock' subdirectory."
75 % (ctx.tmpdir, ctx.tmpdir, ctx.tmpdir, ctx.tmpdir,))
76 raise
78 try:
79 if run_options.profiling:
80 import hotshot
81 prof = hotshot.Profile('cvs2svn.hotshot')
82 prof.runcall(pass_manager.run, run_options)
83 prof.close()
84 else:
85 pass_manager.run(run_options)
86 finally:
87 try:
88 os.rmdir(os.path.join(ctx.tmpdir, 'cvs2svn.lock'))
89 except:
90 pass
92 if erase_tmpdir:
93 try:
94 os.rmdir(ctx.tmpdir)
95 except:
96 pass
99 def svn_main(progname, cmd_args):
100 pass_manager = PassManager(passes)
101 run_options = SVNRunOptions(progname, cmd_args, pass_manager)
102 main(progname, run_options, pass_manager)
105 def git_main(progname, cmd_args):
106 pass_manager = PassManager(passes)
107 run_options = GitRunOptions(progname, cmd_args, pass_manager)
108 main(progname, run_options, pass_manager)
111 def bzr_main(progname, cmd_args):
112 pass_manager = PassManager(passes)
113 run_options = BzrRunOptions(progname, cmd_args, pass_manager)
114 main(progname, run_options, pass_manager)
117 def hg_main(progname, cmd_args):
118 # Import late so cvs2{svn,git} do not depend on being able to import
119 # the Mercurial API.
120 from cvs2svn_lib.hg_run_options import HgRunOptions
122 pass_manager = PassManager(passes)
123 run_options = HgRunOptions(progname, cmd_args, pass_manager)
124 main(progname, run_options, pass_manager)