Mercurial > python-hglib
annotate hglib/__init__.py @ 179:c4c0efb37187
protocol: add the abilty to trace the protocol between the client and server
This is useful when debugging issues with driving hg via hglib
where output and error messages can be lost.
Call setprotocoltrace with the name of a trace function or None.
If the trace function is None no tracing is done.
The trace function is called with the direction, the channel-identified
and its data.
author | Barry A. Scott <barry@barrys-emacs.org> |
---|---|
date | Tue, 18 Oct 2016 17:45:17 +0100 |
parents | c1b966866ed7 |
children | 820d7c1e470a |
rev | line source |
---|---|
148
c1b966866ed7
hglib: make all imports absolute (issue4520)
Brett Cannon <brett@python.org>
parents:
134
diff
changeset
|
1 import subprocess |
c1b966866ed7
hglib: make all imports absolute (issue4520)
Brett Cannon <brett@python.org>
parents:
134
diff
changeset
|
2 from hglib import client, util, error |
2
5fa34c3ac9a0
turn hglib into a module and expose open (previously connect) in its __init__.py
Idan Kamara <idankk86@gmail.com>
parents:
diff
changeset
|
3 |
5fa34c3ac9a0
turn hglib into a module and expose open (previously connect) in its __init__.py
Idan Kamara <idankk86@gmail.com>
parents:
diff
changeset
|
4 HGPATH = 'hg' |
5fa34c3ac9a0
turn hglib into a module and expose open (previously connect) in its __init__.py
Idan Kamara <idankk86@gmail.com>
parents:
diff
changeset
|
5 |
5fa34c3ac9a0
turn hglib into a module and expose open (previously connect) in its __init__.py
Idan Kamara <idankk86@gmail.com>
parents:
diff
changeset
|
6 def open(path=None, encoding=None, configs=None): |
134 | 7 '''starts a cmdserver for the given path (or for a repository found |
8 in the cwd). HGENCODING is set to the given encoding. configs is a | |
9 list of key, value, similar to those passed to hg --config. | |
10 ''' | |
59 | 11 return client.hgclient(path, encoding, configs) |
60 | 12 |
13 def init(dest=None, ssh=None, remotecmd=None, insecure=False, | |
14 encoding=None, configs=None): | |
15 args = util.cmdbuilder('init', dest, e=ssh, remotecmd=remotecmd, | |
16 insecure=insecure) | |
17 | |
18 args.insert(0, HGPATH) | |
72 | 19 proc = util.popen(args) |
60 | 20 out, err = proc.communicate() |
21 if proc.returncode: | |
22 raise error.CommandError(args, proc.returncode, out, err) | |
23 | |
92
07efbd3bd09a
hglib: change init to not open a command server instance automatically
Idan Kamara <idankk86@gmail.com>
parents:
72
diff
changeset
|
24 return client.hgclient(dest, encoding, configs, connect=False) |
93
a4fcece7dd8e
hglib: add top level clone method
Idan Kamara <idankk86@gmail.com>
parents:
92
diff
changeset
|
25 |
a4fcece7dd8e
hglib: add top level clone method
Idan Kamara <idankk86@gmail.com>
parents:
92
diff
changeset
|
26 def clone(source=None, dest=None, noupdate=False, updaterev=None, rev=None, |
a4fcece7dd8e
hglib: add top level clone method
Idan Kamara <idankk86@gmail.com>
parents:
92
diff
changeset
|
27 branch=None, pull=False, uncompressed=False, ssh=None, remotecmd=None, |
a4fcece7dd8e
hglib: add top level clone method
Idan Kamara <idankk86@gmail.com>
parents:
92
diff
changeset
|
28 insecure=False, encoding=None, configs=None): |
a4fcece7dd8e
hglib: add top level clone method
Idan Kamara <idankk86@gmail.com>
parents:
92
diff
changeset
|
29 args = util.cmdbuilder('clone', source, dest, noupdate=noupdate, |
a4fcece7dd8e
hglib: add top level clone method
Idan Kamara <idankk86@gmail.com>
parents:
92
diff
changeset
|
30 updaterev=updaterev, rev=rev, branch=branch, |
a4fcece7dd8e
hglib: add top level clone method
Idan Kamara <idankk86@gmail.com>
parents:
92
diff
changeset
|
31 pull=pull, uncompresses=uncompressed, |
a4fcece7dd8e
hglib: add top level clone method
Idan Kamara <idankk86@gmail.com>
parents:
92
diff
changeset
|
32 e=ssh, remotecmd=remotecmd, insecure=insecure) |
a4fcece7dd8e
hglib: add top level clone method
Idan Kamara <idankk86@gmail.com>
parents:
92
diff
changeset
|
33 |
a4fcece7dd8e
hglib: add top level clone method
Idan Kamara <idankk86@gmail.com>
parents:
92
diff
changeset
|
34 args.insert(0, HGPATH) |
a4fcece7dd8e
hglib: add top level clone method
Idan Kamara <idankk86@gmail.com>
parents:
92
diff
changeset
|
35 proc = util.popen(args) |
a4fcece7dd8e
hglib: add top level clone method
Idan Kamara <idankk86@gmail.com>
parents:
92
diff
changeset
|
36 out, err = proc.communicate() |
a4fcece7dd8e
hglib: add top level clone method
Idan Kamara <idankk86@gmail.com>
parents:
92
diff
changeset
|
37 if proc.returncode: |
a4fcece7dd8e
hglib: add top level clone method
Idan Kamara <idankk86@gmail.com>
parents:
92
diff
changeset
|
38 raise error.CommandError(args, proc.returncode, out, err) |
a4fcece7dd8e
hglib: add top level clone method
Idan Kamara <idankk86@gmail.com>
parents:
92
diff
changeset
|
39 |
a4fcece7dd8e
hglib: add top level clone method
Idan Kamara <idankk86@gmail.com>
parents:
92
diff
changeset
|
40 return client.hgclient(dest, encoding, configs, connect=False) |