author | Pierre-Yves David <pierre-yves.david@logilab.fr> |
Sat, 22 Dec 2012 01:59:05 +0100 | |
changeset 18125 | ad194a8ab5c1 |
parent 17425 | e95ec38f86b0 |
child 18481 | ed647c59753b |
permissions | -rw-r--r-- |
15168 | 1 |
# Copyright 2010-2011 Fog Creek Software |
2 |
# Copyright 2010-2011 Unity Technologies |
|
3 |
# |
|
4 |
# This software may be used and distributed according to the terms of the |
|
5 |
# GNU General Public License version 2 or any later version. |
|
6 |
||
17425
e95ec38f86b0
fix wording and not-completely-trivial spelling errors and bad docstrings
Mads Kiilerich <mads@kiilerich.com>
parents:
17127
diff
changeset
|
7 |
'''remote largefile store; the base class for wirestore''' |
15168 | 8 |
|
9 |
import urllib2 |
|
10 |
||
11 |
from mercurial import util |
|
12 |
from mercurial.i18n import _ |
|
17127
9e1616307c4c
largefiles: batch statlfile requests when pushing a largefiles repo (issue3386)
Na'Tosha Bard <natosha@unity3d.com>
parents:
15253
diff
changeset
|
13 |
from mercurial.wireproto import remotebatch |
15168 | 14 |
|
15 |
import lfutil |
|
16 |
import basestore |
|
17 |
||
18 |
class remotestore(basestore.basestore): |
|
15252
6e809bb4f969
largefiles: improve comments, internal docstrings
Greg Ward <greg@gerg.ca>
parents:
15188
diff
changeset
|
19 |
'''a largefile store accessed over a network''' |
15168 | 20 |
def __init__(self, ui, repo, url): |
21 |
super(remotestore, self).__init__(ui, repo, url) |
|
22 |
||
23 |
def put(self, source, hash): |
|
24 |
if self.sendfile(source, hash): |
|
25 |
raise util.Abort( |
|
26 |
_('remotestore: could not put %s to remote store %s') |
|
27 |
% (source, self.url)) |
|
28 |
self.ui.debug( |
|
29 |
_('remotestore: put %s to remote store %s') % (source, self.url)) |
|
30 |
||
17127
9e1616307c4c
largefiles: batch statlfile requests when pushing a largefiles repo (issue3386)
Na'Tosha Bard <natosha@unity3d.com>
parents:
15253
diff
changeset
|
31 |
def exists(self, hashes): |
9e1616307c4c
largefiles: batch statlfile requests when pushing a largefiles repo (issue3386)
Na'Tosha Bard <natosha@unity3d.com>
parents:
15253
diff
changeset
|
32 |
return self._verify(hashes) |
15168 | 33 |
|
34 |
def sendfile(self, filename, hash): |
|
35 |
self.ui.debug('remotestore: sendfile(%s, %s)\n' % (filename, hash)) |
|
36 |
fd = None |
|
37 |
try: |
|
38 |
try: |
|
39 |
fd = lfutil.httpsendfile(self.ui, filename) |
|
40 |
except IOError, e: |
|
41 |
raise util.Abort( |
|
42 |
_('remotestore: could not open file %s: %s') |
|
43 |
% (filename, str(e))) |
|
44 |
return self._put(hash, fd) |
|
45 |
finally: |
|
46 |
if fd: |
|
47 |
fd.close() |
|
48 |
||
49 |
def _getfile(self, tmpfile, filename, hash): |
|
50 |
# quit if the largefile isn't there |
|
51 |
stat = self._stat(hash) |
|
15253
67d010779907
largefiles: improve error reporting
Greg Ward <greg@gerg.ca>
parents:
15252
diff
changeset
|
52 |
if stat == 1: |
67d010779907
largefiles: improve error reporting
Greg Ward <greg@gerg.ca>
parents:
15252
diff
changeset
|
53 |
raise util.Abort(_('remotestore: largefile %s is invalid') % hash) |
67d010779907
largefiles: improve error reporting
Greg Ward <greg@gerg.ca>
parents:
15252
diff
changeset
|
54 |
elif stat == 2: |
67d010779907
largefiles: improve error reporting
Greg Ward <greg@gerg.ca>
parents:
15252
diff
changeset
|
55 |
raise util.Abort(_('remotestore: largefile %s is missing') % hash) |
15168 | 56 |
|
57 |
try: |
|
58 |
length, infile = self._get(hash) |
|
15188
8e115063950d
largefiles: don't break existing tests (syntax error, bad imports)
Greg Ward <greg@gerg.ca>
parents:
15168
diff
changeset
|
59 |
except urllib2.HTTPError, e: |
15168 | 60 |
# 401s get converted to util.Aborts; everything else is fine being |
61 |
# turned into a StoreError |
|
62 |
raise basestore.StoreError(filename, hash, self.url, str(e)) |
|
63 |
except urllib2.URLError, e: |
|
64 |
# This usually indicates a connection problem, so don't |
|
65 |
# keep trying with the other files... they will probably |
|
66 |
# all fail too. |
|
15253
67d010779907
largefiles: improve error reporting
Greg Ward <greg@gerg.ca>
parents:
15252
diff
changeset
|
67 |
raise util.Abort('%s: %s' % (self.url, e.reason)) |
15168 | 68 |
except IOError, e: |
69 |
raise basestore.StoreError(filename, hash, self.url, str(e)) |
|
70 |
||
71 |
# Mercurial does not close its SSH connections after writing a stream |
|
72 |
if length is not None: |
|
73 |
infile = lfutil.limitreader(infile, length) |
|
74 |
return lfutil.copyandhash(lfutil.blockstream(infile), tmpfile) |
|
75 |
||
17127
9e1616307c4c
largefiles: batch statlfile requests when pushing a largefiles repo (issue3386)
Na'Tosha Bard <natosha@unity3d.com>
parents:
15253
diff
changeset
|
76 |
def _verify(self, hashes): |
9e1616307c4c
largefiles: batch statlfile requests when pushing a largefiles repo (issue3386)
Na'Tosha Bard <natosha@unity3d.com>
parents:
15253
diff
changeset
|
77 |
return self._stat(hashes) |
15168 | 78 |
|
79 |
def _verifyfile(self, cctx, cset, contents, standin, verified): |
|
80 |
filename = lfutil.splitstandin(standin) |
|
81 |
if not filename: |
|
82 |
return False |
|
83 |
fctx = cctx[standin] |
|
84 |
key = (filename, fctx.filenode()) |
|
85 |
if key in verified: |
|
86 |
return False |
|
87 |
||
88 |
verified.add(key) |
|
89 |
||
90 |
stat = self._stat(hash) |
|
91 |
if not stat: |
|
92 |
return False |
|
93 |
elif stat == 1: |
|
94 |
self.ui.warn( |
|
95 |
_('changeset %s: %s: contents differ\n') |
|
96 |
% (cset, filename)) |
|
97 |
return True # failed |
|
98 |
elif stat == 2: |
|
99 |
self.ui.warn( |
|
100 |
_('changeset %s: %s missing\n') |
|
101 |
% (cset, filename)) |
|
102 |
return True # failed |
|
103 |
else: |
|
15253
67d010779907
largefiles: improve error reporting
Greg Ward <greg@gerg.ca>
parents:
15252
diff
changeset
|
104 |
raise RuntimeError('verify failed: unexpected response from ' |
67d010779907
largefiles: improve error reporting
Greg Ward <greg@gerg.ca>
parents:
15252
diff
changeset
|
105 |
'statlfile (%r)' % stat) |
17127
9e1616307c4c
largefiles: batch statlfile requests when pushing a largefiles repo (issue3386)
Na'Tosha Bard <natosha@unity3d.com>
parents:
15253
diff
changeset
|
106 |
|
9e1616307c4c
largefiles: batch statlfile requests when pushing a largefiles repo (issue3386)
Na'Tosha Bard <natosha@unity3d.com>
parents:
15253
diff
changeset
|
107 |
def batch(self): |
9e1616307c4c
largefiles: batch statlfile requests when pushing a largefiles repo (issue3386)
Na'Tosha Bard <natosha@unity3d.com>
parents:
15253
diff
changeset
|
108 |
'''Support for remote batching.''' |
9e1616307c4c
largefiles: batch statlfile requests when pushing a largefiles repo (issue3386)
Na'Tosha Bard <natosha@unity3d.com>
parents:
15253
diff
changeset
|
109 |
return remotebatch(self) |
9e1616307c4c
largefiles: batch statlfile requests when pushing a largefiles repo (issue3386)
Na'Tosha Bard <natosha@unity3d.com>
parents:
15253
diff
changeset
|
110 |