merge improvements from Dave to the server, file locking and repository abstraction.
[jelmer/dulwich-libgit2.git] / bin / dul-upload-pack
1 #!/usr/bin/python
2 # dul-upload-pack - git-upload-pack in python
3 # Copyright (C) 2008 John Carr <john.carr@unrouted.co.uk>
4
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; version 2
8 # of the License.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18 # MA  02110-1301, USA.
19
20 import sys
21 from dulwich.repo import Repo
22 from dulwich.server import GitBackend, UploadPackHandler
23
24 def send_fn(data):
25     sys.stdout.write(data)
26     sys.stdout.flush()
27
28 if __name__ == "__main__":
29     gitdir = None
30     if len(sys.argv) > 1:
31         gitdir = sys.argv[1]
32
33     backend = GitBackend(Repo(gitdir))
34     handler = UploadPackHandler(backend, sys.stdin.read, send_fn)
35     handler.handle()