Implement missing interfaces of File DOM object

This commit is contained in:
Zhen Zhang 2016-05-10 20:23:17 +08:00
parent f43009333f
commit 87fec3e026
8 changed files with 71 additions and 141 deletions

View file

@ -119,9 +119,21 @@ impl Blob {
// TODO: accept other blobParts types - ArrayBuffer or ArrayBufferView // TODO: accept other blobParts types - ArrayBuffer or ArrayBufferView
let bytes: Vec<u8> = match blobParts { let bytes: Vec<u8> = match blobParts {
None => Vec::new(), None => Vec::new(),
Some(blobs) => { Some(blobparts) => blob_parts_to_bytes(blobparts),
blobs.iter().flat_map(|bPart| { };
match bPart {
let slice = DataSlice::new(Arc::new(bytes), None, None);
Ok(Blob::new(global, slice, &blobPropertyBag.get_typestring()))
}
pub fn get_data(&self) -> &DataSlice {
&self.data
}
}
pub fn blob_parts_to_bytes(blobparts: Vec<BlobOrString>) -> Vec<u8> {
blobparts.iter().flat_map(|blobpart| {
match blobpart {
&BlobOrString::String(ref s) => { &BlobOrString::String(ref s) => {
UTF_8.encode(s, EncoderTrap::Replace).unwrap() UTF_8.encode(s, EncoderTrap::Replace).unwrap()
}, },
@ -129,18 +141,7 @@ impl Blob {
b.get_data().get_bytes().to_vec() b.get_data().get_bytes().to_vec()
}, },
} }
}) }).collect::<Vec<u8>>()
.collect()
}
};
let slice = DataSlice::new(Arc::new(bytes), None, None);
Ok(Blob::new(global, slice, blobPropertyBag.get_typestring()))
}
pub fn get_data(&self) -> &DataSlice {
&self.data
}
} }
impl BlobMethods for Blob { impl BlobMethods for Blob {
@ -199,11 +200,11 @@ impl BlobMethods for Blob {
impl BlobBinding::BlobPropertyBag { impl BlobBinding::BlobPropertyBag {
pub fn get_typestring(&self) -> &str { pub fn get_typestring(&self) -> String {
if is_ascii_printable(&self.type_) { if is_ascii_printable(&self.type_) {
&*self.type_ self.type_.to_lowercase()
} else { } else {
"" "".to_string()
} }
} }
} }

View file

@ -4,45 +4,78 @@
use dom::bindings::codegen::Bindings::FileBinding; use dom::bindings::codegen::Bindings::FileBinding;
use dom::bindings::codegen::Bindings::FileBinding::FileMethods; use dom::bindings::codegen::Bindings::FileBinding::FileMethods;
use dom::bindings::codegen::UnionTypes::BlobOrString;
use dom::bindings::error::Fallible;
use dom::bindings::global::GlobalRef; use dom::bindings::global::GlobalRef;
use dom::bindings::js::Root; use dom::bindings::js::Root;
use dom::bindings::reflector::reflect_dom_object; use dom::bindings::reflector::reflect_dom_object;
use dom::blob::Blob; use dom::blob::{Blob, DataSlice, blob_parts_to_bytes};
use std::sync::Arc; use std::sync::Arc;
use time;
use util::str::DOMString; use util::str::DOMString;
#[dom_struct] #[dom_struct]
pub struct File { pub struct File {
blob: Blob, blob: Blob,
name: DOMString, name: DOMString,
modified: i64,
} }
impl File { impl File {
fn new_inherited(file_bits: &Blob, name: DOMString) -> File { fn new_inherited(slice: DataSlice, name: DOMString,
// TODO: FilePropertyBag modified: Option<i64>, typeString: &str) -> File {
let mut bytes = Vec::new();
bytes.extend_from_slice(file_bits.get_data().get_all_bytes().as_slice());
File { File {
blob: Blob::new_inherited(Arc::new(bytes), None, None, ""), blob: Blob::new_inherited(slice, typeString),
name: name, name: name,
// https://w3c.github.io/FileAPI/#dfn-lastModified
modified: match modified {
Some(m) => m,
None => {
let time = time::get_time();
time.sec * 1000 + (time.nsec / 1000000) as i64
}
},
} }
} }
pub fn new(global: GlobalRef, file_bits: &Blob, name: DOMString) -> Root<File> { pub fn new(global: GlobalRef, slice: DataSlice,
reflect_dom_object(box File::new_inherited(file_bits, name), name: DOMString, modified: Option<i64>, typeString: &str) -> Root<File> {
reflect_dom_object(box File::new_inherited(slice, name, modified, typeString),
global, global,
FileBinding::Wrap) FileBinding::Wrap)
} }
// https://w3c.github.io/FileAPI/#file-constructor
pub fn Constructor(global: GlobalRef,
fileBits: Vec<BlobOrString>,
filename: DOMString,
filePropertyBag: &FileBinding::FilePropertyBag)
-> Fallible<Root<File>> {
let bytes: Vec<u8> = blob_parts_to_bytes(fileBits);
let ref blobPropertyBag = filePropertyBag.parent;
let typeString = blobPropertyBag.get_typestring();
let slice = DataSlice::new(Arc::new(bytes), None, None);
let modified = filePropertyBag.lastModified;
Ok(File::new(global, slice, filename, modified, &typeString))
}
pub fn name(&self) -> &DOMString { pub fn name(&self) -> &DOMString {
&self.name &self.name
} }
} }
impl FileMethods for File { impl FileMethods for File {
// https://w3c.github.io/FileAPI/#dfn-name // https://w3c.github.io/FileAPI/#dfn-name
fn Name(&self) -> DOMString { fn Name(&self) -> DOMString {
self.name.clone() self.name.clone()
} }
// https://w3c.github.io/FileAPI/#dfn-lastModified
fn LastModified(&self) -> i64 {
self.modified
}
} }

View file

@ -128,7 +128,7 @@ impl FormData {
Some(fname) => { Some(fname) => {
let global = self.global(); let global = self.global();
let name = DOMString::from(fname.0); let name = DOMString::from(fname.0);
Root::upcast(File::new(global.r(), value, name)) Root::upcast(File::new(global.r(), value.get_data().clone(), name, None, ""))
} }
None => Root::from_ref(value) None => Root::from_ref(value)
} }

View file

@ -2,13 +2,17 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// http://dev.w3.org/2006/webapi/FileAPI/#dfn-file // https://w3c.github.io/FileAPI/#file
// [Constructor(sequence<(Blob or DOMString or ArrayBufferView or ArrayBuffer)> fileBits, [Constructor(sequence<BlobPart> fileBits,
// [EnsureUTF16] DOMString fileName, optional FilePropertyBag options)] DOMString fileName,
optional FilePropertyBag options),
Exposed=Window/*,Worker*/]
interface File : Blob { interface File : Blob {
readonly attribute DOMString name; readonly attribute DOMString name;
// readonly attribute Date lastModifiedDate; readonly attribute long long lastModified;
};
dictionary FilePropertyBag : BlobPropertyBag {
long long lastModified;
}; };

View file

@ -1,17 +1,5 @@
[File-constructor.html] [File-constructor.html]
type: testharness type: testharness
[DOMString fileBits]
expected: FAIL
[Unicode DOMString fileBits]
expected: FAIL
[Empty Blob fileBits]
expected: FAIL
[Blob fileBits]
expected: FAIL
[ArrayBuffer fileBits] [ArrayBuffer fileBits]
expected: FAIL expected: FAIL
@ -21,24 +9,5 @@
[Various fileBits] [Various fileBits]
expected: FAIL expected: FAIL
[Using fileName]
expected: FAIL
[Using special character in fileName] [Using special character in fileName]
expected: FAIL expected: FAIL
[Using type on the File constructor]
expected: FAIL
[Using uppercase characters in type]
expected: FAIL
[Using illegal character for type]
expected: FAIL
[Using lastModified]
expected: FAIL
[Misusing name]
expected: FAIL

View file

@ -1,5 +0,0 @@
[Worker-read-file-constructor.worker]
type: testharness
[FileReader in Worker]
expected: FAIL

View file

@ -9,42 +9,6 @@
[URL interface: operation revokeObjectURL(DOMString)] [URL interface: operation revokeObjectURL(DOMString)]
expected: FAIL expected: FAIL
[File interface object length]
expected: FAIL
[File interface: attribute lastModified]
expected: FAIL
[File must be primary interface of new File(["myFileBits"\], "myFileName")]
expected: FAIL
[Stringification of new File(["myFileBits"\], "myFileName")]
expected: FAIL
[File interface: new File(["myFileBits"\], "myFileName") must inherit property "name" with the proper type (0)]
expected: FAIL
[File interface: new File(["myFileBits"\], "myFileName") must inherit property "lastModified" with the proper type (1)]
expected: FAIL
[Blob interface: new File(["myFileBits"\], "myFileName") must inherit property "size" with the proper type (0)]
expected: FAIL
[Blob interface: new File(["myFileBits"\], "myFileName") must inherit property "type" with the proper type (1)]
expected: FAIL
[Blob interface: new File(["myFileBits"\], "myFileName") must inherit property "isClosed" with the proper type (2)]
expected: FAIL
[Blob interface: new File(["myFileBits"\], "myFileName") must inherit property "slice" with the proper type (3)]
expected: FAIL
[Blob interface: calling slice(long long,long long,DOMString) on new File(["myFileBits"\], "myFileName") with too few arguments must throw TypeError]
expected: FAIL
[Blob interface: new File(["myFileBits"\], "myFileName") must inherit property "close" with the proper type (4)]
expected: FAIL
[FileList must be primary interface of file_input.files] [FileList must be primary interface of file_input.files]
expected: FAIL expected: FAIL

View file

@ -9,42 +9,6 @@
[URL interface: operation revokeObjectURL(DOMString)] [URL interface: operation revokeObjectURL(DOMString)]
expected: FAIL expected: FAIL
[File interface object length]
expected: FAIL
[File interface: attribute lastModified]
expected: FAIL
[File must be primary interface of new File(["myFileBits"\], "myFileName")]
expected: FAIL
[Stringification of new File(["myFileBits"\], "myFileName")]
expected: FAIL
[File interface: new File(["myFileBits"\], "myFileName") must inherit property "name" with the proper type (0)]
expected: FAIL
[File interface: new File(["myFileBits"\], "myFileName") must inherit property "lastModified" with the proper type (1)]
expected: FAIL
[Blob interface: new File(["myFileBits"\], "myFileName") must inherit property "size" with the proper type (0)]
expected: FAIL
[Blob interface: new File(["myFileBits"\], "myFileName") must inherit property "type" with the proper type (1)]
expected: FAIL
[Blob interface: new File(["myFileBits"\], "myFileName") must inherit property "isClosed" with the proper type (2)]
expected: FAIL
[Blob interface: new File(["myFileBits"\], "myFileName") must inherit property "slice" with the proper type (3)]
expected: FAIL
[Blob interface: calling slice(long long,long long,DOMString) on new File(["myFileBits"\], "myFileName") with too few arguments must throw TypeError]
expected: FAIL
[Blob interface: new File(["myFileBits"\], "myFileName") must inherit property "close" with the proper type (4)]
expected: FAIL
[FileReader interface: operation readAsArrayBuffer(Blob)] [FileReader interface: operation readAsArrayBuffer(Blob)]
expected: FAIL expected: FAIL