Closed Bug 903772 Opened 11 years ago Closed 11 years ago

Port the main thread TextDecoder/Encoder implementation to workers.

Categories

(Core :: DOM: Workers, defect)

defect
Not set
normal

Tracking

()

RESOLVED FIXED
mozilla26

People

(Reporter: khuey, Assigned: khuey)

References

Details

Attachments

(11 files, 1 obsolete file)

1.41 KB, patch
peterv
: review+
Details | Diff | Splinter Review
81.32 KB, patch
peterv
: review-
Details | Diff | Splinter Review
26.73 KB, patch
peterv
: review+
Details | Diff | Splinter Review
8.36 KB, patch
emk
: review+
Details | Diff | Splinter Review
8.81 KB, patch
emk
: review+
Details | Diff | Splinter Review
8.27 KB, patch
emk
: review+
Details | Diff | Splinter Review
7.20 KB, patch
emk
: review+
Details | Diff | Splinter Review
1.40 KB, patch
peterv
: review-
Details | Diff | Splinter Review
16.58 KB, patch
peterv
: review+
Details | Diff | Splinter Review
64.33 KB, patch
peterv
: review+
Details | Diff | Splinter Review
1.03 KB, patch
khuey
: review+
Details | Diff | Splinter Review
      No description provided.
This patch creates API that allows one to manually pass in a scope object to the typed array creation code (rather than rely on it grabbing it from a nsWrapperCache*) and a WebIDL annotation that passes in the 'this' object.  It also converts TextEncoder to use this.  Later we will remove the wrapper caching from TextEncoder.
Attachment #788536 - Flags: review?(peterv)
Codegen doesn't know what to do with ctors for owned objects.  resultAlreadyAddrefed is true because ownership is being transferred here, but the underlying object is not refcounted.  Longer term we probably want to change resultAlreadyAddrefed to something like 'transfersOwnership'
Attachment #788537 - Flags: review?(peterv)
Comment on attachment 788536 [details] [diff] [review]
Part 1: Add an API for creating TypedArrays that does not require a nsWrapperCache*

Review of attachment 788536 [details] [diff] [review]:
-----------------------------------------------------------------

::: dom/bindings/Bindings.conf
@@ +70,5 @@
>  #   * implicitJSContext - attributes and methods specified in the .webidl file
>  #                         that require a JSContext as the first argument
> +#   * implicitScopeObject - attributes and methods specified in the .webidl
> +#                           file that require the scope object as the second
> +#                           argument. Must be specified with implicitJSContext.

This last part doesn't seem enforced?

::: dom/encoding/TextEncoderBase.h
@@ +63,4 @@
>  
>  protected:
> +  JSObject*
> +  CreateUint8Array(JSContext* aCx, JS::Handle<JSObject*> aObj, 

Trailing ws
WorkerGlobalObject is really thread-agnostic.  This patch renames the existing GlobalObject to MainThreadOnlyGlobalObject, and renames WorkerGlobalObject to GlobalObject.  MainThreadOnlyGlobalObject inherits from GlobalObject and includes the unwrap to nsISupports* code that runs lazily.  The codegen always passes in a MainThreadOnlyGlobalObject, but code that wants to work on both threads can limit itself to accepting a GlobalObject.
Attachment #788538 - Flags: review?(peterv)
This implements a per-runtime atom cache hanging off the atom compartment that contains the jsids necessary for dictionaries.  We have a struct of jsids for each dictionary, and a big struct that inherits from all the little structs.  Initializing the jsids in reverse order allows us to see if we've already inited a dict by just comparing the first jsid to nullptr.  Once the atom situation is sorted we can use the same dictionary implementation on both threads.
Attachment #788539 - Flags: review?(peterv)
This removes the now unnecessary worker thread TextDecoder implementation and also wrappercaching which I don't think was ever needed (since TextDecoder can only ever be owned by JS).
Attachment #788540 - Flags: review?(VYV03354)
Do you know anything we could replace TextDecoder with here?  I didn't see anything offhand (although we should be able to remove the nsISupports inheritance from ImageData at which point it could work here).
Attachment #788544 - Flags: review?(peterv)
Comment on attachment 788536 [details] [diff] [review]
Part 1: Add an API for creating TypedArrays that does not require a nsWrapperCache*

The CGNativeMember bits don't look right in cases when there is an implicitScopeObject but no cx...  I think we should insert the obj at 0, but just do it before maybe-inserting cx.

The other concern I have is that if this is used to create objects that are then stored in the c++ and if the first call to the C++ to get the object is via an xray, then we'll end up storing the object created in the Xray compartment, which is a bit different from what we do right now.
Comment on attachment 788539 [details] [diff] [review]
Part 4: Harmonize worker and main thread dictionary implementations

I suspect we no longer need the split between DictionaryBase and MainThreadDictionaryBase.
Comment on attachment 788540 [details] [diff] [review]
Part 5: Remove the worker thread TextDecoder impl and wrapper caching

\o/

::: dom/encoding/TextDecoder.h
> private:

nit: This line is redundant now.
Same for the TextEncoder.h.
Attachment #788540 - Flags: review?(VYV03354) → review+
Comment on attachment 788541 [details] [diff] [review]
Part 6: Remove TextDecoderBase

::: content/base/src/nsContentUtils.cpp
>+  nsAutoPtr<TextDecoder> decoder = new TextDecoder();
>+  decoder->Init(NS_ConvertUTF8toUTF16(aCharset), false, rv);

How about

  TextDecoder decoder;
  decoder.Init(...);

? Do we have to bothered with the pointer here?
Attachment #788541 - Flags: review?(VYV03354) → review+
Attachment #788542 - Flags: review?(VYV03354) → review+
Comment on attachment 788543 [details] [diff] [review]
Part 8: Remove TextEncoderBase

::: dom/encoding/TextEncoder.h
>+protected:
>+  JSObject*
>+  CreateUint8Array(JSContext* aCx, JS::Handle<JSObject*> aObj, 
>+                   char* aBuf, uint32_t aLen) const
>+  {
>+    return Uint8Array::Create(aCx, aObj, aLen,
>+                              reinterpret_cast<uint8_t*>(aBuf));
>   }

Please remove this method and call Uint8Array::Create() directly.
I had to add this method because two subclasses used to use two different implementations. It no longer holds.
Attachment #788543 - Flags: review?(VYV03354) → review+
(In reply to Vacation until Aug 19.  Do not ask for review. from comment #11)
> Comment on attachment 788536 [details] [diff] [review]
> Part 1: Add an API for creating TypedArrays that does not require a
> nsWrapperCache*
> 
> The CGNativeMember bits don't look right in cases when there is an
> implicitScopeObject but no cx...  I think we should insert the obj at 0, but
> just do it before maybe-inserting cx.

I should add the bit that throws if you don't do implicitJSContext too also.

> The other concern I have is that if this is used to create objects that are
> then stored in the c++ and if the first call to the C++ to get the object is
> via an xray, then we'll end up storing the object created in the Xray
> compartment, which is a bit different from what we do right now.

Ugh. *@$# xrays.
Comment on attachment 788536 [details] [diff] [review]
Part 1: Add an API for creating TypedArrays that does not require a nsWrapperCache*

Review of attachment 788536 [details] [diff] [review]:
-----------------------------------------------------------------

Can we avoid the implicitScopeObject for now by automatically passing in the additional argument if the return value is a typed array? I don't think we have many APIs that do that yet, so it shouldn't require too many changes.
Comment on attachment 788537 [details] [diff] [review]
Part 2: Fix handing of ctor return values

Review of attachment 788537 [details] [diff] [review]:
-----------------------------------------------------------------

I ran into this too.
Attachment #788537 - Flags: review?(peterv) → review+
(In reply to Peter Van der Beken [:peterv] from comment #17)
> Comment on attachment 788536 [details] [diff] [review]
> Part 1: Add an API for creating TypedArrays that does not require a
> nsWrapperCache*
> 
> Review of attachment 788536 [details] [diff] [review]:
> -----------------------------------------------------------------
> 
> Can we avoid the implicitScopeObject for now by automatically passing in the
> additional argument if the return value is a typed array? I don't think we
> have many APIs that do that yet, so it shouldn't require too many changes.

And it would be better if the typed array return value also implies 'implicitJSContext'.
We already do that for 'any' (or JS::Value) return values.
(In reply to Peter Van der Beken [:peterv] from comment #17)
> Comment on attachment 788536 [details] [diff] [review]
> Part 1: Add an API for creating TypedArrays that does not require a
> nsWrapperCache*
> 
> Review of attachment 788536 [details] [diff] [review]:
> -----------------------------------------------------------------
> 
> Can we avoid the implicitScopeObject for now by automatically passing in the
> additional argument if the return value is a typed array? I don't think we
> have many APIs that do that yet, so it shouldn't require too many changes.

My concern about doing that is that it's only needed if your object is not a wrapper cache.  We could implement that ... but I'd rather get this into the tree and do that in a followup (so we can unblock smaug).

(In reply to Masatoshi Kimura [:emk] from comment #19)
> (In reply to Peter Van der Beken [:peterv] from comment #17)
> > Comment on attachment 788536 [details] [diff] [review]
> > Part 1: Add an API for creating TypedArrays that does not require a
> > nsWrapperCache*
> > 
> > Review of attachment 788536 [details] [diff] [review]:
> > -----------------------------------------------------------------
> > 
> > Can we avoid the implicitScopeObject for now by automatically passing in the
> > additional argument if the return value is a typed array? I don't think we
> > have many APIs that do that yet, so it shouldn't require too many changes.
> 
> And it would be better if the typed array return value also implies
> 'implicitJSContext'.
> We already do that for 'any' (or JS::Value) return values.

Agreed, but I also want to do that in a followup.
> My concern about doing that is that it's only needed if your object is not a
> wrapper cache.  We could implement that ... but I'd rather get this into the
> tree and do that in a followup (so we can unblock smaug).

That's fine with me if the followup lands before the next merge, we've been removing annotations as much as possible and I'd rather not add more just to remove them again later.

> > And it would be better if the typed array return value also implies
> > 'implicitJSContext'.
> > We already do that for 'any' (or JS::Value) return values.
> 
> Agreed, but I also want to do that in a followup.

That already works afaik, the 'implicitJSContext' for 'encode' just hasn't been removed.
Comment on attachment 788539 [details] [diff] [review]
Part 4: Harmonize worker and main thread dictionary implementations

Review of attachment 788539 [details] [diff] [review]:
-----------------------------------------------------------------

Note sure that the auto's are very useful.

::: dom/bindings/Codegen.py
@@ +8070,3 @@
>                              (m.identifier.name + "_id", m.identifier.name))
>                    for m in self.dictionary.members]
> +        idinit.reverse();

Make a comment that you reverse so that any failure leaves the first id uninitialized.
Attachment #788539 - Flags: review?(peterv) → review+
Comment on attachment 788544 [details] [diff] [review]
Part 9: Disable a test that relied on TextDecoder being cycle collected

Review of attachment 788544 [details] [diff] [review]:
-----------------------------------------------------------------

Hmm, there are still plenty of non-nsISupports refcounted and CC'ed classes, no? (Look for NS_IMPL_CYCLE_COLLECTION_ROOT_NATIVE)

RGBColor looks like a candidate (window.getComputedStyle(document.documentElement, null).getPropertyCSSValue("color").getRGBColorValue()).
Attachment #788544 - Flags: review?(peterv) → review-
Comment on attachment 788536 [details] [diff] [review]
Part 1: Add an API for creating TypedArrays that does not require a nsWrapperCache*

Review of attachment 788536 [details] [diff] [review]:
-----------------------------------------------------------------

Minusing for the issues signaled in comment 11, we really should unwrap the object passed in. Also, as said in comment 21, I'm ok with temporarily landing but I really want that Bindings.conf annotation gone as soon as possible and before the next merge at the latest.
Attachment #788536 - Flags: review?(peterv) → review-
Comment on attachment 788538 [details] [diff] [review]
Part 3: Refactor GlobalObject

Review of attachment 788538 [details] [diff] [review]:
-----------------------------------------------------------------

As discussed, let's collapse MainThreadOnlyGlobalObject into GlobalObject.
Attachment #788538 - Flags: review?(peterv) → review-
Your silly insistence on correctness made this much more complicated.
Attachment #788536 - Attachment is obsolete: true
Attachment #793357 - Flags: review?(peterv)
This probably shows some artifacts of renaming everything twice.
Attachment #793358 - Flags: review?(peterv)
Comment on attachment 793358 [details] [diff] [review]
Part 3: Refactor GlobalObject

Review of attachment 793358 [details] [diff] [review]:
-----------------------------------------------------------------

Thanks!

::: content/base/public/nsIDocument.h
@@ +101,3 @@
>  class HTMLBodyElement;
>  class Link;
> +class GlobalObject;

Undo this.

::: content/media/webaudio/AudioContext.h
@@ +52,3 @@
>  class HTMLMediaElement;
>  class MediaElementAudioSourceNode;
> +class GlobalObject;

Undo this.

::: dom/encoding/TextDecoder.h
@@ +20,4 @@
>  
>    // The WebIDL constructor.
>    static already_AddRefed<TextDecoder>
> +  Constructor(const MainThreadOnlyGlobalObject& aGlobal,

Uhoh. Please compile.

::: dom/encoding/TextEncoder.h
@@ +20,4 @@
>  
>    // The WebIDL constructor.
>    static already_AddRefed<TextEncoder>
> +  Constructor(const MainThreadOnlyGlobalObject& aGlobal,

And here.
Attachment #793358 - Flags: review?(peterv) → review+
Comment on attachment 793357 [details] [diff] [review]
Part 1: Add an API for creating TypedArrays that does not require a nsWrapperCache*

Review of attachment 793357 [details] [diff] [review]:
-----------------------------------------------------------------

::: dom/bindings/Codegen.py
@@ +4694,5 @@
> +        needsUnwrap = isConstructor
> +        if needScopeObject(returnType, arguments, self.extendedAttributes,
> +                           descriptor, descriptor.wrapperCache,
> +                           not descriptor.interface.isJSImplemented()):
> +            cgThings.append(CGGeneric("Maybe<JS::Rooted<JSObject*> > unwrappedObj;"))

Can you add a comment that we're doing this because obj is a Handle<...> and so we can't assign the result of CheckedUnwrap to it?

@@ +4728,5 @@
> +            xraySteps = []
> +            if not isConstructor:
> +                xraySteps.append(
> +                    CGGeneric("unwrappedObj.construct(cx, obj);\n"
> +                              "JS::Rooted<JSObject*>& obj = unwrappedObj.ref();"))

The shadowing of 'obj' makes me cringe a bit (well, this whole thing but I don't see a good way around it). Could we just fill in |obj| or |unwrappedObj.ref()| in the line where we set it to |js::CheckedUnwrap(obj)| depending on the value of isConstructor?

@@ +8931,5 @@
>              args.insert(0, Argument("JSContext*", "cx"))
> +        if needScopeObject(returnType, argList, self.extendedAttrs,
> +                           self.descriptorProvider, self.descriptorProvider,
> +                           self.passJSBitsAsNeeded):
> +            args.insert(0, Argument("JS::Handle<JSObject*>", "obj"))

This should happen before we insert the cx, no?

::: dom/bindings/TypedArray.h
@@ +105,5 @@
>      if (creator && (creatorWrapper = creator->GetWrapperPreserveColor())) {
>        ac.construct(cx, creatorWrapper);
>      }
> +
> +    return CreateCommon(cx, creatorWrapper, length, data);

I don't think you actually need CreateCommon. AFAICT this one should just be:

  return Create(cx, creator ? creator->GetWrapperPreserveColor() : nullptr,
                length, data);

@@ +116,5 @@
> +    if (creator) {
> +      ac.construct(cx, creator);
> +    }
> +
> +    return CreateCommon(cx, creator, length, data);

and you can replace this with the implementation of CreateCommon.

::: dom/encoding/TextEncoderBase.h
@@ +63,3 @@
>  
>  protected:
> +  JSObject*

static?

@@ +63,4 @@
>  
>  protected:
> +  JSObject*
> +  CreateUint8Array(JSContext* aCx, JS::Handle<JSObject*> aObj, 

Trailing whitespace.
Attachment #793357 - Flags: review?(peterv) → review+
Comment on attachment 793357 [details] [diff] [review]
Part 1: Add an API for creating TypedArrays that does not require a nsWrapperCache*

::: dom/bindings/Configuration.py
>-            for attribute in ['implicitJSContext', 'resultNotAddRefed']:
>+            for attribute in ['implicitJSContext', 'implicitScopeObject', 'resultNotAddRefed']:

Is this still needed?
(In reply to Masatoshi Kimura [:emk] from comment #30)
> Comment on attachment 793357 [details] [diff] [review]
> Part 1: Add an API for creating TypedArrays that does not require a
> nsWrapperCache*
> 
> ::: dom/bindings/Configuration.py
> >-            for attribute in ['implicitJSContext', 'resultNotAddRefed']:
> >+            for attribute in ['implicitJSContext', 'implicitScopeObject', 'resultNotAddRefed']:
> 
> Is this still needed?

No, it's not.  Good catch.
(In reply to Masatoshi Kimura [:emk] from comment #33)
> > https://hg.mozilla.org/mozilla-central/rev/94d0b33d4d8a
> > https://hg.mozilla.org/mozilla-central/rev/dabbf6275092
> > https://hg.mozilla.org/mozilla-central/rev/3d866e6ca83a
> > https://hg.mozilla.org/mozilla-central/rev/27ba8b41c458
> 
> Looks like my review comments are not reflected.
> Please explain the reason if this is intentional, at least.

I missed the comment on part 8.  I pushed a followup to fix it:  https://hg.mozilla.org/integration/mozilla-inbound/rev/922e1a74789f

I decided not to do the comment on part 6 because stack allocating DOM objects scares me a bit.  If the DOM object changes in the future (like to become refcounted or cycle collected) it could cause problems.
Flags: needinfo?(khuey)
Attachment #795032 - Flags: review?(khuey) → review+
Depends on: 911258
So after these changes, do we still need the MainThreadDictionaryBase/DictionaryBase distinction?

Also, it looks like we now codegen all dictionaries, so we can remove the dictionary bits from DummyBinding, right?
Flags: needinfo?(khuey)
Yeah I suspect we can consolidate them.
Flags: needinfo?(khuey)
Alright.  I filed bug 968665 on doing that.
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: