Copyright © 2010 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C liability, trademark and document use rules apply.
This specification defines an API for writing to files from web applications. This API is designed to be used in conjunction with, and depends on definitions in, other APIs and elements on the web platform. Most relevant among these are [FILE-API] and [WEBWORKERS].
This API includes:
BlobBuilder
interface, which enables one to build a
Blob
from a String.
FileWriter
interface, which provides methods to write a
Blob
to a file, and an event model to obtain the results
of those writes.FileWriterSync
interface, which provides methods to
write a Blob
to a file synchronously from the Worker
context.This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this technical report can be found in the W3C technical reports index at http://www.w3.org/TR/.
This document represents the early consensus of the group on the scope and features of the proposed File API: Writer. Issues and editors notes in the document highlight some of the points on which the group is still working and would particularly like to get feedback.
This document was published by the Device APIs and Policy Working Group as a First Public Working Draft. This document is intended to become a W3C Recommendation. If you wish to make comments regarding this document, please send them to public-device-apis@w3.org (subscribe, archives). All feedback is welcome.
Publication as a Working Draft does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.
This document was produced by a group operating under the 5 February 2004 W3C Patent Policy. W3C maintains a public list of any patent disclosures made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains Essential Claim(s) must disclose the information in accordance with section 6 of the W3C Patent Policy.
As well as sections marked as non-normative, all authoring guidelines, diagrams, examples, and notes in this specification are non-normative. Everything else in this specification is normative.
The key words must, must not, required, should, should not, recommended, may, and optional in this specification are to be interpreted as described in [RFC2119].
This specification defines conformance criteria that apply to a single product: user agents that implement the interfaces that it contains.
This section is non-normative.
Web applications are currently fairly limited in how they can write to files. One can present a link for download, but creating and writing files of arbitrary type, or modifying downloaded files on their way to the disk, is difficult or impossible. This specification defines an API through which user agents can permit applications to write generated or downloaded files.
The [FILE-API] defined interfaces for reading files, manipulation of Blobs of data, and errors raised by file accesses. This specification extends that work with a way to construct Blobs and with synchronous and asynchronous file-writing interfaces. As with reading, writing files on the main thread should happen asynchronously to avoid blocking UI actions. Long-running writes provide status information through delivery of progress events.
Here is a simple function that writes a text file, given a FileWriter:
function writeFile(writer) { function done(evt) { alert("Write completed."); } function error(evt) { alert("Write failed:" + evt); } var bb = new BlobBuilder(); bb.appendText("Lorem ipsum"); writer.onwrite = done; writer.onerror = error; writer.write(bb.getBlob()); }
Here's an example of obtaining a FileWriter
from a HTML input
element:
var fileWriter = document.forms['downloadData']['fileChooser'].fileWriter;
BlobBuilder
interfaceBlobBuilder description
[Constructor]
interface BlobBuilder {
attribute DOMString endings;
Blob getBlob ();
void append (in DOMString text) raises (FileException
);
void append (in Blob data);
};
endings
of type DOMString
How strings containing \n
are to be written out.
Changing endings
affects only subsequent calls to
appendText
, and has no effect on the current contents
of the Blob
. The possible values are:
Value | Description |
---|---|
"transparent" | Code points from the string remain untouched. This is the default value. |
"native" | Line-endings are handled according to the platform's preference. |
"lf" |
A LF is used. This is used in Unix, Linux, and OSX
systems.
|
"cr" |
A CR is used. This is the same as was used in
antique Macintosh systems.
|
"crlf" |
A CRLF pair is used. This is the same as on
Microsoft Windows systems.
|
append
Appends the supplied text to the current contents of the
BlobBuilder
, writing it as UTF-8, taking into account the
current state of endings
.
Parameter | Type | Nullable | Optional | Description |
---|---|---|---|---|
text | in DOMString | ✘ | ✘ | The data to write. |
Exception | Description | ||
---|---|---|---|
FileException |
|
void
append
Appends the supplied Blob to the current contents of the
BlobBuilder
.
Parameter | Type | Nullable | Optional | Description |
---|---|---|---|---|
data | in Blob | ✘ | ✘ | The Blob to append. |
void
getBlob
Returns the current contents of the BlobBuilder
as a
Blob
.
Blob
When the BlobBuilder
constructor is invoked, the user agent must
return a new BlobBuilder
object.
FileWriter
interfaceThis interface provides methods to write blobs to disk using progress events and event handler attributes [DOM3Events]. It is desirable to write data to file systems asynchronously in the main thread of user agents. This interface provides such an asynchronous API, and is specified to be used within the context of the global object (Window [HTML5]) as well as Web Workers (WorkerUtils [WEBWORKERS]).
[NoInterfaceObject]
interface FileWriter {
void abort ();
const unsigned short INIT = 0;
const unsigned short WRITING = 1;
const unsigned short DONE = 2;
readonly attribute unsigned short readyState;
readonly attribute FileError
error;
attribute Function onwritestart;
attribute Function onprogress;
attribute Function onwrite;
attribute Function onabort;
attribute Function onerror;
attribute Function onwriteend;
readonly attribute long long position;
readonly attribute long long length;
void write (Blob data) raises (FileException
);
void seek (long long position) raises (FileException
);
void truncate (long long size) raises (FileException
);
};
error
of type FileError
, readonlyDescription of error
length
of type long long, readonlyThe length of the file. If the user does not have read access to the file, this must be the highest byte offset at which the user has written.
onabort
of type FunctionHandler for abort events.
onerror
of type FunctionHandler for error events.
onprogress
of type FunctionHandler for progress events.
onwrite
of type FunctionHandler for write events.
onwriteend
of type FunctionHandler for writeend events.
onwritestart
of type FunctionHandler for writestart events.
position
of type long long, readonly
The byte offset at which the next write to the file will occur.
This must be no greater than length
.
readyState
of type unsigned short, readonlyThe FileWriter object can be in one of 3 states. The readyState attribute, on getting, must return the current state, which must be one of the following values:
abort
When the abort
method is called, the user agent must
run the steps below:TODO: refs<-->
void
seek
Seek sets the file position at which the next write will occur.
Seek may not be called while the FileWriter
is in the
WRITING
state.
Parameter | Type | Nullable | Optional | Description |
---|---|---|---|---|
position | long long | ✘ | ✘ |
An absolute byte offset into the file. If |
Exception | Description | ||
---|---|---|---|
FileException |
|
void
truncate
Shortens the file to the length specified.
When the truncate
method is called, the user agent must
run the steps below (unless otherwise indicated).
readyState
is WRITING
, throw a
FileException
with error code
INVALID_STATE_ERR
and terminate this overall series of
steps.readyState
to WRITING
.readyState
to DONE
.
Proceed to the error steps below.
error
. Set
the error
attribute; on getting the
error
attribute must be a
FileError
object with a valid error code that
indicates the kind of file error that has occurred.writeend
length
and
position
attributes should indicate any
modification to the file.writestart
.readyState
to DONE
. Upon successful
completion, position
and length
must
be 0.
write
writeend
Parameter | Type | Nullable | Optional | Description |
---|---|---|---|---|
size | long long | ✘ | ✘ |
The size to which the file is to be truncated, measured in bytes.
If size is greater than or equal to
length , this has no effect.
|
Exception | Description | ||
---|---|---|---|
FileException |
|
void
write
Write the supplied data to the file at position
.
When the write
method is called, the user agent must run
the steps below (unless otherwise indicated).
readyState
is WRITING
, throw a
FileException
with error code
INVALID_STATE_ERR
and terminate this overall series of
steps.readyState
to WRITING
.readyState
to DONE
.
Proceed to the error steps below.
error
. Set
the error
attribute; on getting the
error
attribute must be a
FileError
object with a valid error code that
indicates the kind of file
error that has occurred.writeend
length
and
position
attributes should indicate any
fractional data successfully written to the file.writestart
.write
method, the length
and
position
attributes should indicate the progress made
in writing the file as of the last progress notification.
readyState
to DONE
. Upon successful
completion, position
and length
must
indicate an increase of data.size
over their
pre-write states, indicating the change to the underlying file.
write
writeend
Parameter | Type | Nullable | Optional | Description |
---|---|---|---|---|
data | Blob | ✘ | ✘ | The blob to write. |
Exception | Description | ||
---|---|---|---|
FileException |
|
void
DONE
of type unsigned shortINIT
of type unsigned shortWRITING
of type unsigned short
The FileWriter
interface enables asynchronous writes on
individual files by dispatching events to event handler methods. Unless
stated otherwise, the task source [HTML5] that is used in this
specification is the FileWriter
. This task source [HTML5] is
used for events tasks that are asynchronously dispatched, or for event
tasks that are queued for dispatching.
FileWriterSync
interfaceFileWriterSync description
[NoInterfaceObject]
interface FileWriterSync {
readonly attribute long long position;
readonly attribute long long length;
void write (Blob data) raises (FileException
);
void seek (long long position) raises (FileException
);
void truncate (long long size) raises (FileException
);
};
length
of type long long, readonlyThe length of the file. If the user does not have read access to the file, this must be the highest byte offset at which the user has written.
position
of type long long, readonly
The byte offset at which the next write to the file will occur.
This must be no greater than length
.
seek
Seek sets the file position at which the next write will occur.
Parameter | Type | Nullable | Optional | Description |
---|---|---|---|---|
position | long long | ✘ | ✘ |
An absolute byte offset into the file. If position
is greater than length , length is used
instead. If position is less than zero,
length is added to it, so that it is treated as an
offset back from the end of the file. If it is still less than
zero, zero is used.
|
Exception | Description | ||
---|---|---|---|
FileException |
|
void
truncate
Shortens the file to the length specified.
Parameter | Type | Nullable | Optional | Description |
---|---|---|---|---|
size | long long | ✘ | ✘ |
The size to which the file is truncated, measured in bytes. If
size is greater than or equal to length ,
this has no effect.
|
Exception | Description | ||
---|---|---|---|
FileException |
|
void
write
Write the supplied data to the file at position
.
Upon completion, position
will increase by
data.size
.
Parameter | Type | Nullable | Optional | Description |
---|---|---|---|---|
data | Blob | ✘ | ✘ | The blob to write. |
Exception | Description | ||
---|---|---|---|
FileException |
|
void
Error conditions can occur when attempting to write files. The list below of potential error conditions is informative, with links to normative descriptions of error codes:
The directory containing the file being written may not exist at the
time one of the asynchronous write methods or synchronous write methods
is called. This may be due to it having been moved or deleted after a
reference to it was acquired (e.g. concurrent modification with another
application).
See NOT_FOUND_ERR
The file being written may have been removed. If the file is not there,
writing to an offset other than zero is not permitted.
See NOT_FOUND_ERR
A file may be unwritable. This may be due to permission problems that
occur after a reference to a file has been acquired (e.g. concurrent
lock with another application).
See NO_MODIFICATION_ALLOWED_ERR
User agents may determine that some files are unsafe for use within web
applications. Additionally, some file and directory structures may be
considered restricted by the underlying filesystem; attempts to write to
them may be considered a security violation. See the security
considerations.
See SECURITY_ERR
A web application may attempt to initiate a write, seek, or truncate via
a FileWriter in the FileWriter-WRITING state.
See INVALID_STATE_ERR
During the writing of a file, the web application may itself wish to
abort (see abort()) the call to an asynchronous write method.
See ABORT_ERR
A web application may request unsupported line endings. See ENCODING_ERR
This interface extends the FileError
interface described in
[FILE-API] to add several new error codes. It is used to report
errors asynchronously. The FileWriter object's error attribute is a
FileError object, and is accessed asynchronously through the onerror
event handler when error events are generated.
interface FileError {
const unsigned short NO_MODIFICATION_ALLOWED_ERR = 7;
const unsigned short NOT_FOUND_ERR = 8;
const unsigned short INVALID_STATE_ERR = 11;
const unsigned short SECURITY_ERR = 18;
const unsigned short ABORT_ERR = 20;
const unsigned short NOT_READABLE_ERR = 24;
const unsigned short ENCODING_ERR = 26;
readonly attribute unsigned short code;
};
code
of type unsigned short, readonlyABORT_ERR
of type unsigned shortENCODING_ERR
of type unsigned shortINVALID_STATE_ERR
of type unsigned shortNOT_FOUND_ERR
of type unsigned shortNOT_READABLE_ERR
of type unsigned shortNO_MODIFICATION_ALLOWED_ERR
of type unsigned shortSECURITY_ERR
of type unsigned shortFileError
error, which must be the most appropriate code from the
table below.
FileException
interface described in
[FILE-API] to add several new error codes.
Any errors that need to be reported synchronously, including all that
occur during use of the synchronous write methods for Web Workers
[WEBWORKERS] are reported using the FileException exception.
exception FileException {
const unsigned short NO_MODIFICATION_ALLOWED_ERR = 7;
const unsigned short NOT_FOUND_ERR = 8;
const unsigned short INVALID_STATE_ERR = 11;
const unsigned short SECURITY_ERR = 18;
const unsigned short ABORT_ERR = 20;
const unsigned short NOT_READABLE_ERR = 24;
const unsigned short ENCODING_ERR = 26;
readonly attribute unsigned short code;
};
code
of type unsigned short, readonlyABORT_ERR
of type unsigned shortENCODING_ERR
of type unsigned shortINVALID_STATE_ERR
of type unsigned shortNOT_FOUND_ERR
of type unsigned shortNOT_READABLE_ERR
of type unsigned shortNO_MODIFICATION_ALLOWED_ERR
of type unsigned shortSECURITY_ERR
of type unsigned shortFileException
error, which must be the most appropriate code from
the table below.
Name | Value | Description |
---|---|---|
NO_MODIFICATION_ALLOWED_ERR | 7 | User agents must use this code when attempting to write to a file which cannot be modified due to the state of the underlying filesystem. |
NOT_FOUND_ERR | 8 | User agents must use this code if:
|
INVALID_STATE_ERR | 11 | User agents must use this code if an application attempts to
initiate a write, truncate, or seek using a FileWriter
which is already in the WRITING state.
|
SECURITY_ERR | 18 |
User agents may use this code if:
|
ABORT_ERR | 20 | User agents must use this code if the read operation was aborted, typically with a call to abort(). |
ENCODING_ERR | 26 | User agents must use this code when an application requests conversion of text using an unsupported line ending specifier. |
This spec describes one way to obtain a FileWriter. Not all user agents may implement this, and other methods may be provided by other specs.
The group has not at this time reached consensus on the best manner in which to obtain
access to a file writer. Issues have been noted concerning the type=saveas
approach, and it has been suggested that an API call to prompt for download directly
would introduce no security risk not already present in the browser stack. Feedback from
the community is particularly welcome on this point.
A new HTML input element state is added with type=saveas
,
corresponding to the File SaveAs
state.
This functions similarly to the File Upload
state,
except that instead of presenting a File-Open picker and returning a
list of File
objects, it presents a File-Save-As picker and
returns a single FileWriter
. Here is a description of an input
element in the File SaveAs state.
The input element represents write access to a selected file, embodied
as a FileWriter
.
If the element is mutable, the user agent should allow the user to change the selected file. The file can be an existing file in a filesystem [which is to be overwritten], or can be a new file.
If the element is required and the list of selected files is empty, then the element is suffering from being missing.
There must be no more than one file selected.
A FileWriter obtained from such an element must begin with position and length each set to 0, as no read access of any kind is granted by the user's selection of the file.
Bookkeeping details
required
.
value
.fileWriter
applies, which holds
a reference to a FileWriter
object.
value
IDL attribute is in mode
filename
, with the exception that there is only a
single selected file, fileWriter
, not a list,
files
. This means that setting value
on
an input element in the File SaveAs state will clear
fileWriter
rather than files
.accept
, alt
,
autocomplete
, checked
,
formaction
, formenctype
,
formmethod
, formnovalidate
,
formtarget
,
height
, list
, max
,
maxlength
, min
, multiple
,
pattern
, placeholder
,
readonly
, size
, src
,
step
, and width
.value
attribute must be omitted.checked
, list
,
selectedOption
, selectionStart
,
selectionEnd
, valueAsDate
, and
valueAsNumber
IDL attributes;
select()
, setSelectionRange()
,
stepDown()
, and stepUp()
methods.This section is non-normative.
Most of the security issues pertaining to writing to a file on the user's drive are the same as those involved in downloading arbitrary files from the Internet. The primary difference stems from the fact that the file may be continuously written and re-written, at least until such a time as it is deemed closed by the user agent. This has an impact on disk quota, IO bandwidth, and on processes that may require analysing the content of the file.
When a user grants an application write access to a file, it doesn't
necessarily imply that the app should also receive read access to that
file or any of that file's metadata [including length]. This
specification describes a way in which that information can be kept
secret for write-only files. If the application has obtained a
FileWriter
through a mechanism that also implies read access,
those restrictions may be relaxed.
Where quotas are concerned, user agents may wish to monitor the size of the file(s) being written and possibly interrupt the script and warn the user if certain limits of file size, remaining space, or disk bandwidth are reached.
Other parts of the download protection tool-chain such as flagging files as unsafe to open or refusing to create dangerous file names should naturally be applied.
Thanks to Arun Ranganathan for his File API, Opera for theirs, and Robin Berjon both for his work on various file APIs and for ReSpec.
No informative references.