Ticket #928: dontwait6.darcspatch.txt

File dontwait6.darcspatch.txt, 50.2 KB (added by zooko, at 2010-01-27T23:48:43Z)
Line 
1Wed Jan 27 16:34:17 MST 2010  zooko@zooko.com
2  * immutable: download from the first servers which provide at least K buckets instead of waiting for all servers to reply
3  This should put an end to the phenomenon I've been seeing that a single hung server can cause all downloads on a grid to hang.  Also it should speed up all downloads by (a) not-waiting for responses to queries that it doesn't need, and (b) downloading shares from the servers which answered the initial query the fastest.
4  Also, do not count how many buckets you've gotten when deciding whether the download has enough shares or not -- instead count how many buckets to *unique* shares that you've gotten.  This appears to improve a slightly weird behavior in the current download code in which receiving >= K different buckets all to the same sharenumber would make it think it had enough to download the file when in fact it hadn't.
5  This patch needs tests before it is actually ready for trunk.
6
7New patches:
8
9[immutable: download from the first servers which provide at least K buckets instead of waiting for all servers to reply
10zooko@zooko.com**20100127233417
11 Ignore-this: c855355a40d96827e1d0c469a8d8ab3f
12 This should put an end to the phenomenon I've been seeing that a single hung server can cause all downloads on a grid to hang.  Also it should speed up all downloads by (a) not-waiting for responses to queries that it doesn't need, and (b) downloading shares from the servers which answered the initial query the fastest.
13 Also, do not count how many buckets you've gotten when deciding whether the download has enough shares or not -- instead count how many buckets to *unique* shares that you've gotten.  This appears to improve a slightly weird behavior in the current download code in which receiving >= K different buckets all to the same sharenumber would make it think it had enough to download the file when in fact it hadn't.
14 This patch needs tests before it is actually ready for trunk.
15] {
16hunk ./src/allmydata/immutable/download.py 791
17         self._opened = False
18 
19         self.active_buckets = {} # k: shnum, v: bucket
20-        self._share_buckets = [] # list of (sharenum, bucket) tuples
21+        self._share_buckets = {} # k: sharenum, v: list of buckets
22         self._share_vbuckets = {} # k: shnum, v: set of ValidatedBuckets
23 
24         self._fetch_failures = {"uri_extension": 0, "crypttext_hash_tree": 0, }
25hunk ./src/allmydata/immutable/download.py 872
26         return d
27 
28     def _get_all_shareholders(self):
29-        dl = []
30+        """ Once the number of buckets that I know about is >= K then I
31+        callback the Deferred that I return.
32+
33+        If all of the get_buckets deferreds have fired (whether callback or
34+        errback) and I still don't have enough buckets then I'll callback the
35+        Deferred that I return.
36+        """
37+        self._wait_for_enough_buckets_d = defer.Deferred()
38+
39+        self._queries_sent = 0
40+        self._responses_received = 0
41+        self._queries_failed = 0
42         sb = self._storage_broker
43         servers = sb.get_servers_for_index(self._storage_index)
44         if not servers:
45hunk ./src/allmydata/immutable/download.py 892
46             self.log(format="sending DYHB to [%(peerid)s]",
47                      peerid=idlib.shortnodeid_b2a(peerid),
48                      level=log.NOISY, umid="rT03hg")
49+            self._queries_sent += 1
50             d = ss.callRemote("get_buckets", self._storage_index)
51             d.addCallbacks(self._got_response, self._got_error,
52                            callbackArgs=(peerid,))
53hunk ./src/allmydata/immutable/download.py 896
54-            dl.append(d)
55-        self._responses_received = 0
56-        self._queries_sent = len(dl)
57         if self._status:
58             self._status.set_status("Locating Shares (%d/%d)" %
59                                     (self._responses_received,
60hunk ./src/allmydata/immutable/download.py 900
61                                      self._queries_sent))
62-        return defer.DeferredList(dl)
63+        return self._wait_for_enough_buckets_d
64 
65     def _got_response(self, buckets, peerid):
66         self.log(format="got results from [%(peerid)s]: shnums %(shnums)s",
67hunk ./src/allmydata/immutable/download.py 918
68         for sharenum, bucket in buckets.iteritems():
69             b = layout.ReadBucketProxy(bucket, peerid, self._storage_index)
70             self.add_share_bucket(sharenum, b)
71+            # If we just got enough buckets for the first time, then fire the
72+            # deferred. Then remove it from self so that we don't fire it
73+            # again.
74+            if self._wait_for_enough_buckets_d and len(self._share_buckets) >= self._verifycap.needed_shares:
75+                self._wait_for_enough_buckets_d.callback(True)
76+                self._wait_for_enough_buckets_d = None
77+
78+            # Else, if we ran out of outstanding requests then fire it and
79+            # remove it from self.
80+            assert (self._responses_received+self._queries_failed) <= self._queries_sent
81+            if self._wait_for_enough_buckets_d and (self._responses_received+self._queries_failed) == self._queries_sent:
82+                self._wait_for_enough_buckets_d.callback(False)
83+                self._wait_for_enough_buckets_d = None
84 
85             if self._results:
86                 if peerid not in self._results.servermap:
87hunk ./src/allmydata/immutable/download.py 939
88 
89     def add_share_bucket(self, sharenum, bucket):
90         # this is split out for the benefit of test_encode.py
91-        self._share_buckets.append( (sharenum, bucket) )
92+        self._share_buckets.setdefault(sharenum, []).append(bucket)
93 
94     def _got_error(self, f):
95         level = log.WEIRD
96hunk ./src/allmydata/immutable/download.py 947
97             level = log.UNUSUAL
98         self.log("Error during get_buckets", failure=f, level=level,
99                          umid="3uuBUQ")
100+        # If we ran out of outstanding requests then errback it and remove it
101+        # from self.
102+        self._queries_failed += 1
103+        assert (self._responses_received+self._queries_failed) <= self._queries_sent
104+        if self._wait_for_enough_buckets_d and self._responses_received == self._queries_sent:
105+            self._wait_for_enough_buckets_d.errback()
106+            self._wait_for_enough_buckets_d = None
107 
108     def bucket_failed(self, vbucket):
109         shnum = vbucket.sharenum
110hunk ./src/allmydata/immutable/download.py 996
111         uri_extension_fetch_started = time.time()
112 
113         vups = []
114-        for sharenum, bucket in self._share_buckets:
115-            vups.append(ValidatedExtendedURIProxy(bucket, self._verifycap, self._fetch_failures))
116+        for sharenum, buckets in self._share_buckets.iteritems():
117+            for bucket in buckets:
118+                vups.append(ValidatedExtendedURIProxy(bucket, self._verifycap, self._fetch_failures))
119         vto = ValidatedThingObtainer(vups, debugname="vups", log_id=self._parentmsgid)
120         d = vto.start()
121 
122hunk ./src/allmydata/immutable/download.py 1034
123 
124     def _get_crypttext_hash_tree(self, res):
125         vchtps = []
126-        for sharenum, bucket in self._share_buckets:
127-            vchtp = ValidatedCrypttextHashTreeProxy(bucket, self._crypttext_hash_tree, self._vup.num_segments, self._fetch_failures)
128-            vchtps.append(vchtp)
129+        for sharenum, buckets in self._share_buckets.iteritems():
130+            for bucket in buckets:
131+                vchtp = ValidatedCrypttextHashTreeProxy(bucket, self._crypttext_hash_tree, self._vup.num_segments, self._fetch_failures)
132+                vchtps.append(vchtp)
133 
134         _get_crypttext_hash_tree_started = time.time()
135         if self._status:
136hunk ./src/allmydata/immutable/download.py 1088
137 
138 
139     def _download_all_segments(self, res):
140-        for sharenum, bucket in self._share_buckets:
141-            vbucket = ValidatedReadBucketProxy(sharenum, bucket, self._share_hash_tree, self._vup.num_segments, self._vup.block_size, self._vup.share_size)
142-            self._share_vbuckets.setdefault(sharenum, set()).add(vbucket)
143+        for sharenum, buckets in self._share_buckets.iteritems():
144+            for bucket in buckets:
145+                vbucket = ValidatedReadBucketProxy(sharenum, bucket, self._share_hash_tree, self._vup.num_segments, self._vup.block_size, self._vup.share_size)
146+                self._share_vbuckets.setdefault(sharenum, set()).add(vbucket)
147 
148         # after the above code, self._share_vbuckets contains enough
149         # buckets to complete the download, and some extra ones to
150}
151
152Context:
153
154[test_runner: cleanup, refactor common code into a non-executable method
155Brian Warner <warner@lothar.com>**20100127224040
156 Ignore-this: 4cb4aada87777771f688edfd8129ffca
157 
158 Having both test_node() and test_client() (one of which calls the other) felt
159 confusing to me, so I changed it to have test_node(), test_client(), and a
160 common do_create() helper method.
161]
162[scripts/runner.py: simplify David-Sarah's clever grouped-commands usage trick
163Brian Warner <warner@lothar.com>**20100127223758
164 Ignore-this: 70877ebf06ae59f32960b0aa4ce1d1ae
165]
166[tahoe backup: skip all symlinks, with warning. Fixes #850, addresses #641.
167Brian Warner <warner@lothar.com>**20100127223517
168 Ignore-this: ab5cf05158d32a575ca8efc0f650033f
169]
170[NEWS: update with all recent user-visible changes
171Brian Warner <warner@lothar.com>**20100127222209
172 Ignore-this: 277d24568018bf4f3fb7736fda64eceb
173]
174["tahoe backup": fix --exclude-vcs docs to include Git
175Brian Warner <warner@lothar.com>**20100127201044
176 Ignore-this: 756a58dde21bdc65aa62b81803605b5
177]
178[docs: fix references to --no-storage, explanation of [storage] section
179Brian Warner <warner@lothar.com>**20100127200956
180 Ignore-this: f4be1763a585e1ac6299a4f1b94a59e0
181]
182[docs: further CREDITS level-ups for Nils, Kevan, David-Sarah
183zooko@zooko.com**20100126170021
184 Ignore-this: 1e513e85cf7b7abf57f056e6d7544b38
185]
186[Patch to accept t=set-children as well as t=set_children
187david-sarah@jacaranda.org**20100124030020
188 Ignore-this: 2c061f12af817cdf77feeeb64098ec3a
189]
190[Fix boodlegrid use of set_children
191david-sarah@jacaranda.org**20100126063414
192 Ignore-this: 3aa2d4836f76303b2bacecd09611f999
193]
194[ftpd: clearer error message if Twisted needs a patch (by Nils Durner)
195zooko@zooko.com**20100126143411
196 Ignore-this: 440e6831ae6da5135c1edd081c93871f
197]
198[Add 'docs/performance.txt', which (for the moment) describes mutable file performance issues
199Kevan Carstensen <kevan@isnotajoke.com>**20100115204500
200 Ignore-this: ade4e500217db2509aee35aacc8c5dbf
201]
202[docs: more CREDITS for François, Kevan, and David-Sarah
203zooko@zooko.com**20100126132133
204 Ignore-this: f37d4977c13066fcac088ba98a31b02e
205]
206[tahoe_backup.py: display warnings on errors instead of stopping the whole backup. Fix #729.
207francois@ctrlaltdel.ch**20100120094249
208 Ignore-this: 7006ea4b0910b6d29af6ab4a3997a8f9
209 
210 This patch displays a warning to the user in two cases:
211   
212   1. When special files like symlinks, fifos, devices, etc. are found in the
213      local source.
214   
215   2. If files or directories are not readables by the user running the 'tahoe
216      backup' command.
217 
218 In verbose mode, the number of skipped files and directories is printed at the
219 end of the backup.
220 
221 Exit status returned by 'tahoe backup':
222 
223   - 0 everything went fine
224   - 1 the backup failed
225   - 2 files were skipped during the backup
226 
227]
228[Warn about test failures due to setting FLOG* env vars
229david-sarah@jacaranda.org**20100124220629
230 Ignore-this: 1c25247ca0f0840390a1b7259a9f4a3c
231]
232[Message saying that we couldn't find bin/tahoe should say where we looked
233david-sarah@jacaranda.org**20100116204556
234 Ignore-this: 1068576fd59ea470f1e19196315d1bb
235]
236[Change running.html to describe 'tahoe run'
237david-sarah@jacaranda.org**20100112044409
238 Ignore-this: 23ad0114643ce31b56e19bb14e011e4f
239]
240[cli: merge the better version of David-Sarah's split-usage-and-help patch with the earlier version that I mistakenly committed
241zooko@zooko.com**20100126044559
242 Ignore-this: 284d188e13b7901013cbb650168e6447
243]
244[Split tahoe --help options into groups.
245david-sarah@jacaranda.org**20100112043935
246 Ignore-this: 610f9c41b00e6863e3cd047379733e3a
247]
248[cli: split usage strings into groups (patch by David-Sarah Hopwood)
249zooko@zooko.com**20100126043921
250 Ignore-this: 51928d266a7292b873f87f7d53c9a01e
251]
252[Add create-node CLI command, and make create-client equivalent to create-node --no-storage (fixes #760)
253david-sarah@jacaranda.org**20100116052055
254 Ignore-this: 47d08b18c69738685e13ff365738d5a
255]
256[Remove replace= parameter to mkdir-immutable and mkdir-with-children
257david-sarah@jacaranda.org**20100124224325
258 Ignore-this: 25207bcc946c0c43d9528718e76ba7b
259]
260[contrib/fuse/runtests.py: Fix #888, configure settings in tahoe.cfg and don't treat warnings as failure
261francois@ctrlaltdel.ch**20100109123010
262 Ignore-this: 2590d44044acd7dfa3690c416cae945c
263 
264 Fix a few bitrotten pieces in the FUSE test script.  It now configures tahoe
265 node settings by editing tahoe.cfg which is the new supported method.
266 
267 It alos tolerate warnings issued by the mount command, the cause of these
268 warnings is the same as in #876 (contrib/fuse/runtests.py doesn't tolerate
269 deprecations warnings).
270 
271]
272[Fix webapi t=mkdir with multpart/form-data, as on the Welcome page. Closes #919.
273Brian Warner <warner@lothar.com>**20100121065052
274 Ignore-this: 1f20ea0a0f1f6d6c1e8e14f193a92c87
275]
276[tahoe_add_alias.py: minor refactoring
277Brian Warner <warner@lothar.com>**20100115064220
278 Ignore-this: 29910e81ad11209c9e493d65fd2dab9b
279]
280[test_dirnode.py: reduce scope of a Client instance, suggested by Kevan.
281Brian Warner <warner@lothar.com>**20100115062713
282 Ignore-this: b35efd9e6027e43de6c6f509bfb4ccaa
283]
284[test_provisioning: STAN is not always a list. Fix by David-Sarah Hopwood.
285Brian Warner <warner@lothar.com>**20100115014632
286 Ignore-this: 9989de7f1e00907706d2b63153138219
287]
288[web/directory.py mkdir-immutable: hush pyflakes, add TODO for #903 behavior
289Brian Warner <warner@lothar.com>**20100114222804
290 Ignore-this: 717cd3b9a1c8aeee76938c9641db7356
291]
292[hush pyflakes-0.4.0 warnings: slightly less-trivial fixes. Closes #900.
293Brian Warner <warner@lothar.com>**20100114221719
294 Ignore-this: f774f4637e256ad55502659413a811a8
295 
296 This includes one fix (in test_web) which was testing the wrong thing.
297]
298[hush pyflakes-0.4.0 warnings: remove trivial unused variables. For #900.
299Brian Warner <warner@lothar.com>**20100114221529
300 Ignore-this: e96106c8f1a99fbf93306fbfe9a294cf
301]
302[tahoe add-alias/create-alias: don't corrupt non-newline-terminated alias
303Brian Warner <warner@lothar.com>**20100114210246
304 Ignore-this: 9c994792e53a85159d708760a9b1b000
305 file. Closes #741.
306]
307[change docs and --help to use "grid" instead of "virtual drive": closes #892.
308Brian Warner <warner@lothar.com>**20100114201119
309 Ignore-this: a20d4a4dcc4de4e3b404ff72d40fc29b
310 
311 Thanks to David-Sarah Hopwood for the patch.
312]
313[backupdb.txt: fix ST_CTIME reference
314Brian Warner <warner@lothar.com>**20100114194052
315 Ignore-this: 5a189c7a1181b07dd87f0a08ea31b6d3
316]
317[client.py: fix/update comments on KeyGenerator
318Brian Warner <warner@lothar.com>**20100113004226
319 Ignore-this: 2208adbb3fd6a911c9f44e814583cabd
320]
321[Clean up log.err calls, for one of the issues in #889.
322Brian Warner <warner@lothar.com>**20100112013343
323 Ignore-this: f58455ce15f1fda647c5fb25d234d2db
324 
325 allmydata.util.log.err() either takes a Failure as the first positional
326 argument, or takes no positional arguments and must be invoked in an
327 exception handler. Fixed its signature to match both foolscap.logging.log.err
328 and twisted.python.log.err . Included a brief unit test.
329]
330[tidy up DeadReferenceError handling, ignore them in add_lease calls
331Brian Warner <warner@lothar.com>**20100112000723
332 Ignore-this: 72f1444e826fd0b9db6d318f89603c38
333 
334 Stop checking separately for ConnectionDone/ConnectionLost, since those have
335 been folded into DeadReferenceError since foolscap-0.3.1 . Write
336 rrefutil.trap_deadref() in terms of rrefutil.trap_and_discard() to improve
337 code coverage.
338]
339[NEWS: improve "tahoe backup" notes, mention first-backup-after-upgrade duration
340Brian Warner <warner@lothar.com>**20100111190132
341 Ignore-this: 10347c590b3375964579ba6c2b0edb4f
342 
343 Thanks to Francois Deppierraz for the suggestion.
344]
345[test_repairer: add (commented-out) test_each_byte, to see exactly what the
346Brian Warner <warner@lothar.com>**20100110203552
347 Ignore-this: 8e84277d5304752edeff052b97821815
348 Verifier misses
349 
350 The results (described in #819) match our expectations: it misses corruption
351 in unused share fields and in most container fields (which are only visible
352 to the storage server, not the client). 1265 bytes of a 2753 byte
353 share (hosting a 56-byte file with an artifically small segment size) are
354 unused, mostly in the unused tail of the overallocated UEB space (765 bytes),
355 and the allocated-but-unwritten plaintext_hash_tree (480 bytes).
356]
357[repairer: fix some wrong offsets in the randomized verifier tests, debugged by Brian
358zooko@zooko.com**20100110203721
359 Ignore-this: 20604a609db8706555578612c1c12feb
360 fixes #819
361]
362[test_repairer: fix colliding basedir names, which caused test inconsistencies
363Brian Warner <warner@lothar.com>**20100110084619
364 Ignore-this: b1d56dd27e6ab99a7730f74ba10abd23
365]
366[repairer: add deterministic test for #819, mark as TODO
367zooko@zooko.com**20100110013619
368 Ignore-this: 4cb8bb30b25246de58ed2b96fa447d68
369]
370[contrib/fuse/runtests.py: Tolerate the tahoe CLI returning deprecation warnings
371francois@ctrlaltdel.ch**20100109175946
372 Ignore-this: 419c354d9f2f6eaec03deb9b83752aee
373 
374 Depending on the versions of external libraries such as Twisted of Foolscap,
375 the tahoe CLI can display deprecation warnings on stdout.  The tests should
376 not interpret those warnings as a failure if the node is in fact correctly
377 started.
378   
379 See http://allmydata.org/trac/tahoe/ticket/859 for an example of deprecation
380 warnings.
381 
382 fixes #876
383]
384[docs: CREDITS: add David-Sarah to the CREDITS file
385zooko@zooko.com**20100109060435
386 Ignore-this: 896062396ad85f9d2d4806762632f25a
387]
388[mutable/publish: don't loop() right away upon DeadReferenceError. Closes #877
389Brian Warner <warner@lothar.com>**20100102220841
390 Ignore-this: b200e707b3f13aa8251981362b8a3e61
391 
392 The bug was that a disconnected server could cause us to re-enter the initial
393 loop() call, sending multiple queries to a single server, provoking an
394 incorrect UCWE. To fix it, stall the loop() with an eventual.fireEventually()
395]
396[immutable/checker.py: oops, forgot some imports. Also hush pyflakes.
397Brian Warner <warner@lothar.com>**20091229233909
398 Ignore-this: 4d61bd3f8113015a4773fd4768176e51
399]
400[mutable repair: return successful=False when numshares<k (thus repair fails),
401Brian Warner <warner@lothar.com>**20091229233746
402 Ignore-this: d881c3275ff8c8bee42f6a80ca48441e
403 instead of weird errors. Closes #874 and #786.
404 
405 Previously, if the file had 0 shares, this would raise TypeError as it tried
406 to call download_version(None). If the file had some shares but fewer than
407 'k', it would incorrectly raise MustForceRepairError.
408 
409 Added get_successful() to the IRepairResults API, to give repair() a place to
410 report non-code-bug problems like this.
411]
412[node.py/interfaces.py: minor docs fixes
413Brian Warner <warner@lothar.com>**20091229230409
414 Ignore-this: c86ad6342ef0f95d50639b4f99cd4ddf
415]
416[NEWS: fix 1.4.1 announcement w.r.t. add-lease behavior in older releases
417Brian Warner <warner@lothar.com>**20091229230310
418 Ignore-this: bbbbb9c961f3bbcc6e5dbe0b1594822
419]
420[checker: don't let failures in add-lease affect checker results. Closes #875.
421Brian Warner <warner@lothar.com>**20091229230108
422 Ignore-this: ef1a367b93e4d01298c2b1e6ca59c492
423 
424 Mutable servermap updates and the immutable checker, when run with
425 add_lease=True, send both the do-you-have-block and add-lease commands in
426 parallel, to avoid an extra round trip time. Many older servers have problems
427 with add-lease and raise various exceptions, which don't generally matter.
428 The client-side code was catching+ignoring some of them, but unrecognized
429 exceptions were passed through to the DYHB code, concealing the DYHB results
430 from the checker, making it think the server had no shares.
431 
432 The fix is to separate the code paths. Both commands are sent at the same
433 time, but the errback path from add-lease is handled separately. Known
434 exceptions are ignored, the others (both unknown-remote and all-local) are
435 logged (log.WEIRD, which will trigger an Incident), but neither will affect
436 the DYHB results.
437 
438 The add-lease message is sent first, and we know that the server handles them
439 synchronously. So when the checker is done, we can be sure that all the
440 add-lease messages have been retired. This makes life easier for unit tests.
441]
442[test_cli: verify fix for "tahoe get" not creating empty file on error (#121)
443Brian Warner <warner@lothar.com>**20091227235444
444 Ignore-this: 6444d52413b68eb7c11bc3dfdc69c55f
445]
446[addendum to "Fix 'tahoe ls' on files (#771)"
447Brian Warner <warner@lothar.com>**20091227232149
448 Ignore-this: 6dd5e25f8072a3153ba200b7fdd49491
449 
450 tahoe_ls.py: tolerate missing metadata
451 web/filenode.py: minor cleanups
452 test_cli.py: test 'tahoe ls FILECAP'
453]
454[Fix 'tahoe ls' on files (#771). Patch adapted from Kevan Carstensen.
455Brian Warner <warner@lothar.com>**20091227225443
456 Ignore-this: 8bf8c7b1cd14ea4b0ebd453434f4fe07
457 
458 web/filenode.py: also serve edge metadata when using t=json on a
459                  DIRCAP/childname object.
460 tahoe_ls.py: list file objects as if we were listing one-entry directories.
461              Show edge metadata if we have it, which will be true when doing
462              'tahoe ls DIRCAP/filename' and false when doing 'tahoe ls
463              FILECAP'
464]
465[tahoe_get: don't create the output file on error. Closes #121.
466Brian Warner <warner@lothar.com>**20091227220404
467 Ignore-this: 58d5e793a77ec6e87d9394ade074b926
468]
469[webapi: don't accept zero-length childnames during traversal. Closes #358, #676.
470Brian Warner <warner@lothar.com>**20091227201043
471 Ignore-this: a9119dec89e1c7741f2289b0cad6497b
472 
473 This forbids operations that would implicitly create a directory with a
474 zero-length (empty string) name, like what you'd get if you did "tahoe put
475 local /oops/blah" (#358) or "POST /uri/CAP//?t=mkdir" (#676). The error
476 message is fairly friendly too.
477 
478 Also added code to "tahoe put" to catch this error beforehand and suggest the
479 correct syntax (i.e. without the leading slash).
480]
481[CLI: send 'Accept:' header to ask for text/plain tracebacks. Closes #646.
482Brian Warner <warner@lothar.com>**20091227195828
483 Ignore-this: 44c258d4d4c7dac0ed58adb22f73331
484 
485 The webapi has been looking for an Accept header since 1.4.0, but it treats a
486 missing header as equal to */* (to honor RFC2616). This change finally
487 modifies our CLI tools to ask for "text/plain, application/octet-stream",
488 which seems roughly correct (we either want a plain-text traceback or error
489 message, or an uninterpreted chunk of binary data to save to disk). Some day
490 we'll figure out how JSON fits into this scheme.
491]
492[Makefile: upload-tarballs: switch from xfer-client to flappclient, closes #350
493Brian Warner <warner@lothar.com>**20091227163703
494 Ignore-this: 3beeecdf2ad9c2438ab57f0e33dcb357
495 
496 I've also set up a new flappserver on source@allmydata.org to receive the
497 tarballs. We still need to replace the gutsy buildslave (which is where the
498 tarballs used to be generated+uploaded) and give it the new FURL.
499]
500[misc/ringsim.py: make it deterministic, more detail about grid-is-full behavior
501Brian Warner <warner@lothar.com>**20091227024832
502 Ignore-this: a691cc763fb2e98a4ce1767c36e8e73f
503]
504[misc/ringsim.py: tool to discuss #302
505Brian Warner <warner@lothar.com>**20091226060339
506 Ignore-this: fc171369b8f0d97afeeb8213e29d10ed
507]
508[contrib: fix fuse_impl_c to use new Python API
509zooko@zooko.com**20100109174956
510 Ignore-this: 51ca1ec7c2a92a0862e9b99e52542179
511 original patch by Thomas Delaet, fixed by François, reviewed by Brian, committed by me
512]
513[docs/stats.txt: add TOC, notes about controlling gatherer's listening port
514Brian Warner <warner@lothar.com>**20091224202133
515 Ignore-this: 8eef63b0e18db5aa8249c2eafde02c05
516 
517 Thanks to Jody Harris for the suggestions.
518]
519[Add docs/stats.py, explaining Tahoe stats, the gatherer, and the munin plugins.
520Brian Warner <warner@lothar.com>**20091223052400
521 Ignore-this: 7c9eeb6e5644eceda98b59a67730ccd5
522]
523[more #859: avoid deprecation warning for unit tests too, hush pyflakes
524Brian Warner <warner@lothar.com>**20091215000147
525 Ignore-this: 193622e24d31077da825a11ed2325fd3
526 
527 * factor maybe-import-sha logic into util.hashutil
528]
529[docs: fix helper.txt to describe new config style
530zooko@zooko.com**20091224223522
531 Ignore-this: 102e7692dc414a4b466307f7d78601fe
532]
533[use hashlib module if available, thus avoiding a DeprecationWarning for importing the old sha module; fixes #859
534zooko@zooko.com**20091214212703
535 Ignore-this: 8d0f230a4bf8581dbc1b07389d76029c
536]
537[docs: reflow architecture.txt to 78-char lines
538zooko@zooko.com**20091208232943
539 Ignore-this: 88f55166415f15192e39407815141f77
540]
541[mutable/retrieve.py: stop reaching into private MutableFileNode attributes
542Brian Warner <warner@lothar.com>**20091208172921
543 Ignore-this: 61e548798c1105aed66a792bf26ceef7
544]
545[mutable/servermap.py: stop reaching into private MutableFileNode attributes
546Brian Warner <warner@lothar.com>**20091208172608
547 Ignore-this: b40a6b62f623f9285ad96fda139c2ef2
548]
549[mutable/servermap.py: oops, query N+e servers in MODE_WRITE, not k+e
550Brian Warner <warner@lothar.com>**20091208171156
551 Ignore-this: 3497f4ab70dae906759007c3cfa43bc
552 
553 under normal conditions, this wouldn't cause any problems, but if the shares
554 are really sparse (perhaps because new servers were added), then
555 file-modifies might stop looking too early and leave old shares in place
556]
557[control.py: fix speedtest: use download_best_version (not read) on mutable nodes
558Brian Warner <warner@lothar.com>**20091207060512
559 Ignore-this: 7125eabfe74837e05f9291dd6414f917
560]
561[FTP-and-SFTP.txt: fix ssh-keygen pointer
562Brian Warner <warner@lothar.com>**20091207052803
563 Ignore-this: bc2a70ee8c58ec314e79c1262ccb22f7
564]
565[remove MutableFileNode.download(), prefer download_best_version() instead
566Brian Warner <warner@lothar.com>**20091201225438
567 Ignore-this: 5733eb373a902063e09fd52cc858dec0
568]
569[Simplify immutable download API: use just filenode.read(consumer, offset, size)
570Brian Warner <warner@lothar.com>**20091201225330
571 Ignore-this: bdedfb488ac23738bf52ae6d4ab3a3fb
572 
573 * remove Downloader.download_to_data/download_to_filename/download_to_filehandle
574 * remove download.Data/FileName/FileHandle targets
575 * remove filenode.download/download_to_data/download_to_filename methods
576 * leave Downloader.download (the whole Downloader will go away eventually)
577 * add util.consumer.MemoryConsumer/download_to_data, for convenience
578   (this is mostly used by unit tests, but it gets used by enough non-test
579    code to warrant putting it in allmydata.util)
580 * update tests
581 * removes about 180 lines of code. Yay negative code days!
582 
583 Overall plan is to rewrite immutable/download.py and leave filenode.read() as
584 the sole read-side API.
585]
586[server.py: undo my bogus 'correction' of David-Sarah's comment fix
587Brian Warner <warner@lothar.com>**20091201024607
588 Ignore-this: ff4bb58f6a9e045b900ac3a89d6f506a
589 
590 and move it to a better line
591]
592[Implement more coherent behavior when copying with dircaps/filecaps (closes #761). Patch by Kevan Carstensen.
593"Brian Warner <warner@lothar.com>"**20091130211009]
594[storage.py: update comment
595"Brian Warner <warner@lothar.com>"**20091130195913]
596[storage server: detect disk space usage on Windows too (fixes #637)
597david-sarah@jacaranda.org**20091121055644
598 Ignore-this: 20fb30498174ce997befac7701fab056
599]
600[make status of finished operations consistently "Finished"
601david-sarah@jacaranda.org**20091121061543
602 Ignore-this: 97d483e8536ccfc2934549ceff7055a3
603]
604[docs: update the about.html a little
605zooko@zooko.com**20091208212737
606 Ignore-this: 3fe2d9653c6de0727d3e82bd70f2a8ed
607]
608[setup: ignore _darcs in the "test-clean" test and make the "clean" step remove all .egg's in the root dir
609zooko@zooko.com**20091206184835
610 Ignore-this: 6066bd160f0db36d7bf60aba405558d2
611]
612[NEWS: update with all user-visible changes since the last release
613Brian Warner <warner@lothar.com>**20091127224217
614 Ignore-this: 741da6cd928e939fb6d21a61ea3daf0b
615]
616[update "tahoe backup" docs, and webapi.txt's mkdir-with-children
617Brian Warner <warner@lothar.com>**20091127055900
618 Ignore-this: defac1fb9a2335b0af3ef9dbbcc67b7e
619]
620[Add dirnodes to backupdb and "tahoe backup", closes #606.
621Brian Warner <warner@lothar.com>**20091126234257
622 Ignore-this: fa88796fcad1763c6a2bf81f56103223
623 
624 * backups now share dirnodes with any previous backup, in any location,
625   so renames and moves are handled very efficiently
626 * "tahoe backup" no longer bothers reading the previous snapshot
627 * if you switch grids, you should delete ~/.tahoe/private/backupdb.sqlite,
628   to force new uploads of all files and directories
629]
630[webapi: fix t=check for DIR2-LIT (i.e. empty immutable directories)
631Brian Warner <warner@lothar.com>**20091126232731
632 Ignore-this: 8513c890525c69c1eca0e80d53a231f8
633]
634[PipelineError: fix str() on python2.4 . Closes #842.
635Brian Warner <warner@lothar.com>**20091124212512
636 Ignore-this: e62c92ea9ede2ab7d11fe63f43b9c942
637]
638[test_uri.py: s/NewDirnode/Dirnode/ , now that they aren't "new" anymore
639Brian Warner <warner@lothar.com>**20091120075553
640 Ignore-this: 61c8ef5e45a9d966873a610d8349b830
641]
642[interface name cleanups: IFileNode, IImmutableFileNode, IMutableFileNode
643Brian Warner <warner@lothar.com>**20091120075255
644 Ignore-this: e3d193c229e2463e1d0b0c92306de27f
645 
646 The proper hierarchy is:
647  IFilesystemNode
648  +IFileNode
649  ++IMutableFileNode
650  ++IImmutableFileNode
651  +IDirectoryNode
652 
653 Also expand test_client.py (NodeMaker) to hit all IFilesystemNode types.
654]
655[class name cleanups: s/FileNode/ImmutableFileNode/
656Brian Warner <warner@lothar.com>**20091120072239
657 Ignore-this: 4b3218f2d0e585c62827e14ad8ed8ac1
658 
659 also fix test/bench_dirnode.py for recent dirnode changes
660]
661[Use DIR-IMM and t=mkdir-immutable for "tahoe backup", for #828
662Brian Warner <warner@lothar.com>**20091118192813
663 Ignore-this: a4720529c9bc6bc8b22a3d3265925491
664]
665[web/directory.py: use "DIR-IMM" to describe immutable directories, not DIR-RO
666Brian Warner <warner@lothar.com>**20091118191832
667 Ignore-this: aceafd6ab4bf1cc0c2a719ef7319ac03
668]
669[web/info.py: hush pyflakes
670Brian Warner <warner@lothar.com>**20091118191736
671 Ignore-this: edc5f128a2b8095fb20686a75747c8
672]
673[make get_size/get_current_size consistent for all IFilesystemNode classes
674Brian Warner <warner@lothar.com>**20091118191624
675 Ignore-this: bd3449cf96e4827abaaf962672c1665a
676 
677 * stop caching most_recent_size in dirnode, rely upon backing filenode for it
678 * start caching most_recent_size in MutableFileNode
679 * return None when you don't know, not "?"
680 * only render None as "?" in the web "more info" page
681 * add get_size/get_current_size to UnknownNode
682]
683[ImmutableDirectoryURIVerifier: fix verifycap handling
684Brian Warner <warner@lothar.com>**20091118164238
685 Ignore-this: 6bba5c717b54352262eabca6e805d590
686]
687[Add t=mkdir-immutable to the webapi. Closes #607.
688Brian Warner <warner@lothar.com>**20091118070900
689 Ignore-this: 311e5fab9a5f28b9e8a28d3d08f3c0d
690 
691 * change t=mkdir-with-children to not use multipart/form encoding. Instead,
692   the request body is all JSON. t=mkdir-immutable uses this format too.
693 * make nodemaker.create_immutable_dirnode() get convergence from SecretHolder,
694   but let callers override it
695 * raise NotDeepImmutableError instead of using assert()
696 * add mutable= argument to DirectoryNode.create_subdirectory(), default True
697]
698[move convergence secret into SecretHolder, next to lease secret
699Brian Warner <warner@lothar.com>**20091118015444
700 Ignore-this: 312f85978a339f2d04deb5bcb8f511bc
701]
702[nodemaker: implement immutable directories (internal interface), for #607
703Brian Warner <warner@lothar.com>**20091112002233
704 Ignore-this: d09fccf41813fdf7e0db177ed9e5e130
705 
706 * nodemaker.create_from_cap() now handles DIR2-CHK and DIR2-LIT
707 * client.create_immutable_dirnode() is used to create them
708 * no webapi yet
709]
710[stop using IURI()/etc as an adapter
711Brian Warner <warner@lothar.com>**20091111224542
712 Ignore-this: 9611da7ea6a4696de2a3b8c08776e6e0
713]
714[clean up uri-vs-cap terminology, emphasize cap instances instead of URI strings
715Brian Warner <warner@lothar.com>**20091111222619
716 Ignore-this: 93626385f6e7f039ada71f54feefe267
717 
718  * "cap" means a python instance which encapsulates a filecap/dircap (uri.py)
719  * "uri" means a string with a "URI:" prefix
720  * FileNode instances are created with (and retain) a cap instance, and
721    generate uri strings on demand
722  * .get_cap/get_readcap/get_verifycap/get_repaircap return cap instances
723  * .get_uri/get_readonly_uri return uri strings
724 
725 * add filenode.download_to_filename() for control.py, should find a better way
726 * use MutableFileNode.init_from_cap, not .init_from_uri
727 * directory URI instances: use get_filenode_cap, not get_filenode_uri
728 * update/cleanup bench_dirnode.py to match, add Makefile target to run it
729]
730[add parser for immutable directory caps: DIR2-CHK, DIR2-LIT, DIR2-CHK-Verifier
731Brian Warner <warner@lothar.com>**20091104181351
732 Ignore-this: 854398cc7a75bada57fa97c367b67518
733]
734[wui: s/TahoeLAFS/Tahoe-LAFS/
735zooko@zooko.com**20091029035050
736 Ignore-this: 901e64cd862e492ed3132bd298583c26
737]
738[docs: remove obsolete doc file "codemap.txt"
739zooko@zooko.com**20091113163033
740 Ignore-this: 16bc21a1835546e71d1b344c06c61ebb
741 I started to update this to reflect the current codebase, but then I thought (a) nobody seemed to notice that it hasn't been updated since December 2007, and (b) it will just bit-rot again, so I'm removing it.
742]
743[dirnode.pack_children(): add deep_immutable= argument
744Brian Warner <warner@lothar.com>**20091026162809
745 Ignore-this: d5a2371e47662c4bc6eff273e8181b00
746 
747 This will be used by DIR2:CHK to enforce the deep-immutability requirement.
748]
749[webapi: use t=mkdir-with-children instead of a children= arg to t=mkdir .
750Brian Warner <warner@lothar.com>**20091026011321
751 Ignore-this: 769cab30b6ab50db95000b6c5a524916
752 
753 This is safer: in the earlier API, an old webapi server would silently ignore
754 the initial children, and clients trying to set them would have to fetch the
755 newly-created directory to discover the incompatibility. In the new API,
756 clients using t=mkdir-with-children against an old webapi server will get a
757 clear error.
758]
759[tests: bump up the timeout on test_repairer to see if 120 seconds was too short for François's ARM box to do the test even when it was doing it right.
760zooko@zooko.com**20091027224800
761 Ignore-this: 95e93dc2e018b9948253c2045d506f56
762]
763[nodemaker.create_new_mutable_directory: pack_children() in initial_contents=
764Brian Warner <warner@lothar.com>**20091020005118
765 Ignore-this: bd43c4eefe06fd32b7492bcb0a55d07e
766 instead of creating an empty file and then adding the children later.
767 
768 This should speed up mkdir(initial_children) considerably, removing two
769 roundtrips and an entire read-modify-write cycle, probably bringing it down
770 to a single roundtrip. A quick test (against the volunteergrid) suggests a
771 30% speedup.
772 
773 test_dirnode: add new tests to enforce the restrictions that interfaces.py
774 claims for create_new_mutable_directory(): no UnknownNodes, metadata dicts
775]
776[test_dirnode.py: add tests of initial_children= args to client.create_dirnode
777Brian Warner <warner@lothar.com>**20091017194159
778 Ignore-this: 2e2da28323a4d5d815466387914abc1b
779 and nodemaker.create_new_mutable_directory
780]
781[update many dirnode interfaces to accept dict-of-nodes instead of dict-of-caps
782Brian Warner <warner@lothar.com>**20091017192829
783 Ignore-this: b35472285143862a856bf4b361d692f0
784 
785 interfaces.py: define INodeMaker, document argument values, change
786                create_new_mutable_directory() to take dict-of-nodes. Change
787                dirnode.set_nodes() and dirnode.create_subdirectory() too.
788 nodemaker.py: use INodeMaker, update create_new_mutable_directory()
789 client.py: have create_dirnode() delegate initial_children= to nodemaker
790 dirnode.py (Adder): take dict-of-nodes instead of list-of-nodes, which
791                     updates set_nodes() and create_subdirectory()
792 web/common.py (convert_initial_children_json): create dict-of-nodes
793 web/directory.py: same
794 web/unlinked.py: same
795 test_dirnode.py: update tests to match
796]
797[dirnode.py: move pack_children() out to a function, for eventual use by others
798Brian Warner <warner@lothar.com>**20091017180707
799 Ignore-this: 6a823fb61f2c180fd38d6742d3196a7a
800]
801[move dirnode.CachingDict to dictutil.AuxValueDict, generalize method names,
802Brian Warner <warner@lothar.com>**20091017180005
803 Ignore-this: b086933cf429df0fcea16a308d2640dd
804 improve tests. Let dirnode _pack_children accept either dict or AuxValueDict.
805]
806[test/common.py: update FakeMutableFileNode to new contents= callable scheme
807Brian Warner <warner@lothar.com>**20091013052154
808 Ignore-this: 62f00a76454a2190d1c8641c5993632f
809]
810[The initial_children= argument to nodemaker.create_new_mutable_directory is
811Brian Warner <warner@lothar.com>**20091013031922
812 Ignore-this: 72e45317c21f9eb9ec3bd79bd4311f48
813 now enabled.
814]
815[client.create_mutable_file(contents=) now accepts a callable, which is
816Brian Warner <warner@lothar.com>**20091013031232
817 Ignore-this: 3c89d2f50c1e652b83f20bd3f4f27c4b
818 invoked with the new MutableFileNode and is supposed to return the initial
819 contents. This can be used by e.g. a new dirnode which needs the filenode's
820 writekey to encrypt its initial children.
821 
822 create_mutable_file() still accepts a bytestring too, or None for an empty
823 file.
824]
825[webapi: t=mkdir now accepts initial children, using the same JSON that t=json
826Brian Warner <warner@lothar.com>**20091013023444
827 Ignore-this: 574a46ed46af4251abf8c9580fd31ef7
828 emits.
829 
830 client.create_dirnode(initial_children=) now works.
831]
832[replace dirnode.create_empty_directory() with create_subdirectory(), which
833Brian Warner <warner@lothar.com>**20091013021520
834 Ignore-this: 6b57cb51bcfcc6058d0df569fdc8a9cf
835 takes an initial_children= argument
836]
837[dirnode.set_children: change return value: fire with self instead of None
838Brian Warner <warner@lothar.com>**20091013015026
839 Ignore-this: f1d14e67e084e4b2a4e25fa849b0e753
840]
841[dirnode.set_nodes: change return value: fire with self instead of None
842Brian Warner <warner@lothar.com>**20091013014546
843 Ignore-this: b75b3829fb53f7399693f1c1a39aacae
844]
845[dirnode.set_children: take a dict, not a list
846Brian Warner <warner@lothar.com>**20091013002440
847 Ignore-this: 540ce72ce2727ee053afaae1ff124e21
848]
849[dirnode.set_uri/set_children: change signature to take writecap+readcap
850Brian Warner <warner@lothar.com>**20091012235126
851 Ignore-this: 5df617b2d379a51c79148a857e6026b1
852 instead of a single cap. The webapi t=set_children call benefits too.
853]
854[replace Client.create_empty_dirnode() with create_dirnode(), in anticipation
855Brian Warner <warner@lothar.com>**20091012224506
856 Ignore-this: cbdaa4266ecb3c6496ffceab4f95709d
857 of adding initial_children= argument.
858 
859 Includes stubbed-out initial_children= support.
860]
861[test_web.py: use a less-fake client, making test harness smaller
862Brian Warner <warner@lothar.com>**20091012222808
863 Ignore-this: 29e95147f8c94282885c65b411d100bb
864]
865[webapi.txt: document t=set_children, other small edits
866Brian Warner <warner@lothar.com>**20091009200446
867 Ignore-this: 4d7e76b04a7b8eaa0a981879f778ea5d
868]
869[Verifier: check the full cryptext-hash tree on each share. Removed .todos
870Brian Warner <warner@lothar.com>**20091005221849
871 Ignore-this: 6fb039c5584812017d91725e687323a5
872 from the last few test_repairer tests that were waiting on this.
873]
874[Verifier: check the full block-hash-tree on each share
875Brian Warner <warner@lothar.com>**20091005214844
876 Ignore-this: 3f7ccf6d253f32340f1bf1da27803eee
877 
878 Removed the .todo from two test_repairer tests that check this. The only
879 remaining .todos are on the three crypttext-hash-tree tests.
880]
881[Verifier: check the full share-hash chain on each share
882Brian Warner <warner@lothar.com>**20091005213443
883 Ignore-this: 3d30111904158bec06a4eac22fd39d17
884 
885 Removed the .todo from two test_repairer tests that check this.
886]
887[test_repairer: rename Verifier test cases to be more precise and less verbose
888Brian Warner <warner@lothar.com>**20091005201115
889 Ignore-this: 64be7094e33338c7c2aea9387e138771
890]
891[immutable/checker.py: rearrange code a little bit, make it easier to follow
892Brian Warner <warner@lothar.com>**20091005200252
893 Ignore-this: 91cc303fab66faf717433a709f785fb5
894]
895[test/common.py: wrap docstrings to 80cols so I can read them more easily
896Brian Warner <warner@lothar.com>**20091005200143
897 Ignore-this: b180a3a0235cbe309c87bd5e873cbbb3
898]
899[immutable/download.py: wrap to 80cols, no functional changes
900Brian Warner <warner@lothar.com>**20091005192542
901 Ignore-this: 6b05fe3dc6d78832323e708b9e6a1fe
902]
903[CHK-hashes.svg: cross out plaintext hashes, since we don't include
904Brian Warner <warner@lothar.com>**20091005010803
905 Ignore-this: bea2e953b65ec7359363aa20de8cb603
906 them (until we finish #453)
907]
908[docs: a few licensing clarifications requested by Ubuntu
909zooko@zooko.com**20090927033226
910 Ignore-this: 749fc8c9aeb6dc643669854a3e81baa7
911]
912[setup: remove binary WinFUSE modules
913zooko@zooko.com**20090924211436
914 Ignore-this: 8aefc571d2ae22b9405fc650f2c2062
915 I would prefer to have just source code, or indications of what 3rd-party packages are required, under revision control, and have the build process generate o
916 r acquire the binaries as needed.  Also, having these in our release tarballs is interfering with getting Tahoe-LAFS uploaded into Ubuntu Karmic.  (Technicall
917 y, they would accept binary modules as long as they came with the accompanying source so that they could satisfy their obligations under GPL2+ and TGPPL1+, bu
918 t it is easier for now to remove the binaries from the source tree.)
919 In this case, the binaries are from the tahoe-w32-client project: http://allmydata.org/trac/tahoe-w32-client , from which you can also get the source.
920]
921[setup: remove binary _fusemodule.so 's
922zooko@zooko.com**20090924211130
923 Ignore-this: 74487bbe27d280762ac5dd5f51e24186
924 I would prefer to have just source code, or indications of what 3rd-party packages are required, under revision control, and have the build process generate or acquire the binaries as needed.  Also, having these in our release tarballs is interfering with getting Tahoe-LAFS uploaded into Ubuntu Karmic.  (Technically, they would accept binary modules as long as they came with the accompanying source so that they could satisfy their obligations under GPL2+ and TGPPL1+, but it is easier for now to remove the binaries from the source tree.)
925 In this case, these modules come from the MacFUSE project: http://code.google.com/p/macfuse/
926]
927[doc: add a copy of LGPL2 for documentation purposes for ubuntu
928zooko@zooko.com**20090924054218
929 Ignore-this: 6a073b48678a7c84dc4fbcef9292ab5b
930]
931[setup: remove a convenience copy of figleaf, to ease inclusion into Ubuntu Karmic Koala
932zooko@zooko.com**20090924053215
933 Ignore-this: a0b0c990d6e2ee65c53a24391365ac8d
934 We need to carefully document the licence of figleaf in order to get Tahoe-LAFS into Ubuntu Karmic Koala.  However, figleaf isn't really a part of Tahoe-LAFS per se -- this is just a "convenience copy" of a development tool.  The quickest way to make Tahoe-LAFS acceptable for Karmic then, is to remove figleaf from the Tahoe-LAFS tarball itself.  People who want to run figleaf on Tahoe-LAFS (as everyone should want) can install figleaf themselves.  I haven't tested this -- there may be incompatibilities between upstream figleaf and the copy that we had here...
935]
936[setup: shebang for misc/build-deb.py to fail quickly
937zooko@zooko.com**20090819135626
938 Ignore-this: 5a1b893234d2d0bb7b7346e84b0a6b4d
939 Without this patch, when I ran "chmod +x ./misc/build-deb.py && ./misc/build-deb.py" then it hung indefinitely.  (I wonder what it was doing.)
940]
941[docs: Shawn Willden grants permission for his contributions under GPL2+|TGPPL1+
942zooko@zooko.com**20090921164651
943 Ignore-this: ef1912010d07ff2ffd9678e7abfd0d57
944]
945[docs: Csaba Henk granted permission to license fuse.py under the same terms as Tahoe-LAFS itself
946zooko@zooko.com**20090921154659
947 Ignore-this: c61ba48dcb7206a89a57ca18a0450c53
948]
949[setup: mark setup.py as having utf-8 encoding in it
950zooko@zooko.com**20090920180343
951 Ignore-this: 9d3850733700a44ba7291e9c5e36bb91
952]
953[doc: licensing cleanups
954zooko@zooko.com**20090920171631
955 Ignore-this: 7654f2854bf3c13e6f4d4597633a6630
956 Use nice utf-8 © instead of "(c)". Remove licensing statements on utility modules that have been assigned to allmydata.com by their original authors. (Nattraverso was not assigned to allmydata.com -- it was LGPL'ed -- but I checked and src/allmydata/util/iputil.py was completely rewritten and doesn't contain any line of code from nattraverso.)  Add notes to misc/debian/copyright about licensing on files that aren't just allmydata.com-licensed.
957]
958[build-deb.py: run darcsver early, otherwise we get the wrong version later on
959Brian Warner <warner@lothar.com>**20090918033620
960 Ignore-this: 6635c5b85e84f8aed0d8390490c5392a
961]
962[new approach for debian packaging, sharing pieces across distributions. Still experimental, still only works for sid.
963warner@lothar.com**20090818190527
964 Ignore-this: a75eb63db9106b3269badbfcdd7f5ce1
965]
966[new experimental deb-packaging rules. Only works for sid so far.
967Brian Warner <warner@lothar.com>**20090818014052
968 Ignore-this: 3a26ad188668098f8f3cc10a7c0c2f27
969]
970[setup.py: read _version.py and pass to setup(version=), so more commands work
971Brian Warner <warner@lothar.com>**20090818010057
972 Ignore-this: b290eb50216938e19f72db211f82147e
973 like "setup.py --version" and "setup.py --fullname"
974]
975[test/check_speed.py: fix shbang line
976Brian Warner <warner@lothar.com>**20090818005948
977 Ignore-this: 7f3a37caf349c4c4de704d0feb561f8d
978]
979[de-Service-ify Helper, pass in storage_broker and secret_holder directly.
980Brian Warner <warner@lothar.com>**20090815201737
981 Ignore-this: 86b8ac0f90f77a1036cd604dd1304d8b
982 This makes it more obvious that the Helper currently generates leases with
983 the Helper's own secrets, rather than getting values from the client, which
984 is arguably a bug that will likely be resolved with the Accounting project.
985]
986[immutable.Downloader: pass StorageBroker to constructor, stop being a Service
987Brian Warner <warner@lothar.com>**20090815192543
988 Ignore-this: af5ab12dbf75377640a670c689838479
989 child of the client, access with client.downloader instead of
990 client.getServiceNamed("downloader"). The single "Downloader" instance is
991 scheduled for demolition anyways, to be replaced by individual
992 filenode.download calls.
993]
994[tests: double the timeout on test_runner.RunNode.test_introducer since feisty hit a timeout
995zooko@zooko.com**20090815160512
996 Ignore-this: ca7358bce4bdabe8eea75dedc39c0e67
997 I'm not sure if this is an actual timing issue (feisty is running on an overloaded VM if I recall correctly), or it there is a deeper bug.
998]
999[stop making History be a Service, it wasn't necessary
1000Brian Warner <warner@lothar.com>**20090815114415
1001 Ignore-this: b60449231557f1934a751c7effa93cfe
1002]
1003[Overhaul IFilesystemNode handling, to simplify tests and use POLA internally.
1004Brian Warner <warner@lothar.com>**20090815112846
1005 Ignore-this: 1db1b9c149a60a310228aba04c5c8e5f
1006 
1007 * stop using IURI as an adapter
1008 * pass cap strings around instead of URI instances
1009 * move filenode/dirnode creation duties from Client to new NodeMaker class
1010 * move other Client duties to KeyGenerator, SecretHolder, History classes
1011 * stop passing Client reference to dirnode/filenode constructors
1012   - pass less-powerful references instead, like StorageBroker or Uploader
1013 * always create DirectoryNodes by wrapping a filenode (mutable for now)
1014 * remove some specialized mock classes from unit tests
1015 
1016 Detailed list of changes (done one at a time, then merged together)
1017 
1018 always pass a string to create_node_from_uri(), not an IURI instance
1019 always pass a string to IFilesystemNode constructors, not an IURI instance
1020 stop using IURI() as an adapter, switch on cap prefix in create_node_from_uri()
1021 client.py: move SecretHolder code out to a separate class
1022 test_web.py: hush pyflakes
1023 client.py: move NodeMaker functionality out into a separate object
1024 LiteralFileNode: stop storing a Client reference
1025 immutable Checker: remove Client reference, it only needs a SecretHolder
1026 immutable Upload: remove Client reference, leave SecretHolder and StorageBroker
1027 immutable Repairer: replace Client reference with StorageBroker and SecretHolder
1028 immutable FileNode: remove Client reference
1029 mutable.Publish: stop passing Client
1030 mutable.ServermapUpdater: get StorageBroker in constructor, not by peeking into Client reference
1031 MutableChecker: reference StorageBroker and History directly, not through Client
1032 mutable.FileNode: removed unused indirection to checker classes
1033 mutable.FileNode: remove Client reference
1034 client.py: move RSA key generation into a separate class, so it can be passed to the nodemaker
1035 move create_mutable_file() into NodeMaker
1036 test_dirnode.py: stop using FakeClient mockups, use NoNetworkGrid instead. This simplifies the code, but takes longer to run (17s instead of 6s). This should come down later when other cleanups make it possible to use simpler (non-RSA) fake mutable files for dirnode tests.
1037 test_mutable.py: clean up basedir names
1038 client.py: move create_empty_dirnode() into NodeMaker
1039 dirnode.py: get rid of DirectoryNode.create
1040 remove DirectoryNode.init_from_uri, refactor NodeMaker for customization, simplify test_web's mock Client to match
1041 stop passing Client to DirectoryNode, make DirectoryNode.create_with_mutablefile the normal DirectoryNode constructor, start removing client from NodeMaker
1042 remove Client from NodeMaker
1043 move helper status into History, pass History to web.Status instead of Client
1044 test_mutable.py: fix minor typo
1045]
1046[setup: remove bundled version of darcsver-1.2.1
1047zooko@zooko.com**20090816233432
1048 Ignore-this: 5357f26d2803db2d39159125dddb963a
1049 That version of darcsver emits a scary error message when the darcs executable or the _darcs subdirectory is not found.
1050 This error is hidden (unless the --loud option is passed) in darcsver >= 1.3.1.
1051 Fixes #788.
1052]
1053[docs: edits for docs/running.html from Sam Mason
1054zooko@zooko.com**20090809201416
1055 Ignore-this: 2207e80449943ebd4ed50cea57c43143
1056]
1057[docs: install.html: instruct Debian users to use this document and not to go find the DownloadDebianPackages page, ignore the warning at the top of it, and try it
1058zooko@zooko.com**20090804123840
1059 Ignore-this: 49da654f19d377ffc5a1eff0c820e026
1060 http://allmydata.org/pipermail/tahoe-dev/2009-August/002507.html
1061]
1062[docs: about.html: fix English usage noticed by Amber
1063zooko@zooko.com**20090802050533
1064 Ignore-this: 89965c4650f9bd100a615c401181a956
1065]
1066[docs: fix mis-spelled word in about.html
1067zooko@zooko.com**20090802050320
1068 Ignore-this: fdfd0397bc7cef9edfde425dddeb67e5
1069]
1070[docs: relnotes.txt: reflow to 63 chars wide because google groups and some web forms seem to wrap to that
1071zooko@zooko.com**20090802135016
1072 Ignore-this: 53b1493a0491bc30fb2935fad283caeb
1073]
1074[TAG allmydata-tahoe-1.5.0
1075zooko@zooko.com**20090802031303
1076 Ignore-this: 94e5558e7225c39a86aae666ea00f166
1077]
1078Patch bundle hash:
1079b1544ff825b87b13e124e9e8a632a69351fb4d9a