Closed
Bug 887425
Opened 12 years ago
Closed 12 years ago
BackgroundFileSaver should support appending to an existing file
Categories
(Core :: Networking: File, defect)
Core
Networking: File
Tracking
()
RESOLVED
FIXED
mozilla25
People
(Reporter: Paolo, Assigned: Paolo)
References
Details
Attachments
(1 file, 2 obsolete files)
|
21.57 KB,
patch
|
Details | Diff | Splinter Review |
In the new Downloads API, we need the ability to resume partially downloaded
files without working on the main thread, and still support hash computation.
| Assignee | ||
Comment 1•12 years ago
|
||
This adds the option to enable append, similarly to how we enable hashing, and
also adds one more test for some of the hashing code that was touched.
Patrick, do you know who could review and superreview this?
Attachment #767933 -
Flags: review?(mcmanus)
Comment 2•12 years ago
|
||
jason, have you ever worked in this neighborhood? I've only passed through briefly on the way to somewhere else myself?
If you're not the right person for it let me know and I'll do my best.
Flags: needinfo?(jduell.mcbugs)
Comment 3•12 years ago
|
||
I've never looked at this code. Looks like only biesi has reviewed this stuff. I'd take it but I'm on PTO soon.
Flags: needinfo?(jduell.mcbugs)
Comment 4•12 years ago
|
||
Comment on attachment 767933 [details] [diff] [review]
The patch
Review of attachment 767933 [details] [diff] [review]:
-----------------------------------------------------------------
ask biesi for sr?
I'm afraid my review here isn't very thorough - but I learned a bit about the code..
::: netwerk/base/public/nsIBackgroundFileSaver.idl
@@ +81,5 @@
> + *
> + * @remarks This must be set on the main thread before the first call to
> + * setTarget.
> + */
> + void enableAppend();
bump the uuid in the idl
::: netwerk/base/src/BackgroundFileSaver.cpp
@@ +166,5 @@
> // Called on the control thread.
> NS_IMETHODIMP
> +BackgroundFileSaver::EnableAppend()
> +{
> + {
moz_assert(ns_ismainthread())
useless layer of scope braces
Attachment #767933 -
Flags: review?(mcmanus) → review+
| Assignee | ||
Comment 5•12 years ago
|
||
Christian, do you have some time for reviewing the IDL here? I may also ask
Gavin if you can't look into this now.
(In reply to Patrick McManus [:mcmanus] from comment #4)
> I'm afraid my review here isn't very thorough - but I learned a bit about
> the code..
Thanks for the prompt review!
Attachment #767933 -
Attachment is obsolete: true
Attachment #770119 -
Flags: superreview?(cbiesinger)
Updated•12 years ago
|
Attachment #770119 -
Flags: superreview?(cbiesinger) → superreview+
| Assignee | ||
Comment 6•12 years ago
|
||
Thanks for the quick superreview!
Before landing, I have to figure out the cause of a test failure that happens on
Linux only in test_empty_hash, where .fileSize doesn't find the file:
https://tbpl.mozilla.org/?tree=Try&rev=6962e8f5e3b9
It seems that the file isn't created, but strangely, this doesn't happen when the
individual test is run locally on my Linux Mint 13 system.
Anyone has clues on why the empty file isn't created there, and why on my system
I have different behavior than the Ubuntu system on the tryserver?
| Assignee | ||
Comment 7•12 years ago
|
||
(In reply to Paolo Amadini [:paolo] from comment #6)
> It seems that the file isn't created, but strangely, this doesn't happen
> when the individual test is run locally on my Linux Mint 13 system.
This was caused by a race condition, fixed in this patch.
I'll land this in a day or two, feel free to take a look at the solution in the
meantime if you want, and let me know if you have anything to note.
| Assignee | ||
Comment 8•12 years ago
|
||
Attachment #770119 -
Attachment is obsolete: true
| Assignee | ||
Comment 9•12 years ago
|
||
Comment 10•12 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Flags: in-testsuite+
Resolution: --- → FIXED
Target Milestone: --- → mozilla25
Comment 11•12 years ago
|
||
Mozilla/5.0 (X11; Linux i686; rv:26.0) Gecko/20100101 Firefox/26.0
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:26.0) Gecko/20100101 Firefox/26.0
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:26.0) Gecko/20100101 Firefox/26.0
Build ID: 20130911030258
Mozilla/5.0 (X11; Linux i686; rv:25.0) Gecko/20100101 Firefox/25.0
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:25.0) Gecko/20100101 Firefox/25.0
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20100101 Firefox/25.0
Build ID: 20130912004004
Verified that paused downloads (by using "Pause" option or caused by browser quit) are resumed successfully, and continue where they were left off.
Marking VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•