Mercurial > hg
annotate hgext/largefiles/remotestore.py @ 19742:ac68009c31a4
hgweb: add removeByClassName javascript function
It removes all elements with specified class name from the document.
author | Alexander Plavin <alexander@plav.in> |
---|---|
date | Fri, 06 Sep 2013 13:30:58 +0400 |
parents | 9d33d6e0d442 |
children | 72214af683a2 |
rev | line source |
---|---|
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): |
18573
003730ca254d
largefiles: fold oddly named _verify into remotestore.exists
Mads Kiilerich <mads@kiilerich.com>
parents:
18484
diff
changeset
|
32 return dict((h, s == 0) for (h, s) in self._stat(hashes).iteritems()) |
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 try: | |
19004
6614e5e24e66
largefiles: move protocol conversion into getlfile and make it an iterable
Mads Kiilerich <madski@unity3d.com>
parents:
19003
diff
changeset
|
51 chunks = self._get(hash) |
15188
8e115063950d
largefiles: don't break existing tests (syntax error, bad imports)
Greg Ward <greg@gerg.ca>
parents:
15168
diff
changeset
|
52 except urllib2.HTTPError, e: |
15168 | 53 # 401s get converted to util.Aborts; everything else is fine being |
54 # turned into a StoreError | |
55 raise basestore.StoreError(filename, hash, self.url, str(e)) | |
56 except urllib2.URLError, e: | |
57 # This usually indicates a connection problem, so don't | |
58 # keep trying with the other files... they will probably | |
59 # all fail too. | |
15253
67d010779907
largefiles: improve error reporting
Greg Ward <greg@gerg.ca>
parents:
15252
diff
changeset
|
60 raise util.Abort('%s: %s' % (self.url, e.reason)) |
15168 | 61 except IOError, e: |
62 raise basestore.StoreError(filename, hash, self.url, str(e)) | |
63 | |
19004
6614e5e24e66
largefiles: move protocol conversion into getlfile and make it an iterable
Mads Kiilerich <madski@unity3d.com>
parents:
19003
diff
changeset
|
64 return lfutil.copyandhash(chunks, tmpfile) |
15168 | 65 |
66 def _verifyfile(self, cctx, cset, contents, standin, verified): | |
67 filename = lfutil.splitstandin(standin) | |
68 if not filename: | |
69 return False | |
70 fctx = cctx[standin] | |
71 key = (filename, fctx.filenode()) | |
72 if key in verified: | |
73 return False | |
74 | |
75 verified.add(key) | |
76 | |
18482
6f219eb83435
largefiles: adapt verify to batched remote statlfile (issue3780)
Mads Kiilerich <madski@unity3d.com>
parents:
18481
diff
changeset
|
77 expecthash = fctx.data()[0:40] |
6f219eb83435
largefiles: adapt verify to batched remote statlfile (issue3780)
Mads Kiilerich <madski@unity3d.com>
parents:
18481
diff
changeset
|
78 stat = self._stat([expecthash])[expecthash] |
15168 | 79 if not stat: |
80 return False | |
81 elif stat == 1: | |
82 self.ui.warn( | |
83 _('changeset %s: %s: contents differ\n') | |
84 % (cset, filename)) | |
85 return True # failed | |
86 elif stat == 2: | |
87 self.ui.warn( | |
88 _('changeset %s: %s missing\n') | |
89 % (cset, filename)) | |
90 return True # failed | |
91 else: | |
15253
67d010779907
largefiles: improve error reporting
Greg Ward <greg@gerg.ca>
parents:
15252
diff
changeset
|
92 raise RuntimeError('verify failed: unexpected response from ' |
67d010779907
largefiles: improve error reporting
Greg Ward <greg@gerg.ca>
parents:
15252
diff
changeset
|
93 '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
|
94 |
9e1616307c4c
largefiles: batch statlfile requests when pushing a largefiles repo (issue3386)
Na'Tosha Bard <natosha@unity3d.com>
parents:
15253
diff
changeset
|
95 def batch(self): |
9e1616307c4c
largefiles: batch statlfile requests when pushing a largefiles repo (issue3386)
Na'Tosha Bard <natosha@unity3d.com>
parents:
15253
diff
changeset
|
96 '''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
|
97 return remotebatch(self) |
9e1616307c4c
largefiles: batch statlfile requests when pushing a largefiles repo (issue3386)
Na'Tosha Bard <natosha@unity3d.com>
parents:
15253
diff
changeset
|
98 |