Re: Heads up on XML

2019-11-28 Thread Harbs
I had removed that line to avoid writing “element”. I just changed it to delete 
the property to get rid of the “TEXT” on instantiation.

> On Nov 28, 2019, at 8:29 PM, Greg Dove  wrote:
> 
> ' I don’t see that in the Ecma spec.'
> 
> yeah, it was fun working on this. (irony) . When things were not clear, I
> always used swf behavior as the 'spec'.
> 
> 
> 
> On Fri, Nov 29, 2019 at 7:25 AM Harbs  wrote:
> 
>> Yeah. I see it’s supposed to wrap the elements. Weird. I don’t see that in
>> the Ecma spec.
>> 
>> I see what I messed up. I’ll revert that bit.
>> 
>>> On Nov 28, 2019, at 8:20 PM, Greg Dove  wrote:
>>> 
>>> You mean this (hopefully the xml angle brackets won't be mangled in your
>>> view of this)?
>>> 
>>> var xml:XML = ;
>>> xml.appendChild("test1");
>>> xml.appendChild("test2");
>>> xml.appendChild();
>>> xml.appendChild("test3");
>>> xml.appendChild("test4");
>>> 
>>> 
>>> trace(xml.toXMLString())
>>> output in swf:
>>> 
>>> test1
>>> test2
>>> 
>>> test3
>>> test4
>>> 
>>> 
>>> 
>>> 
>>> On Fri, Nov 29, 2019 at 7:12 AM Harbs  wrote:
>>> 
 I can’t imagine where test3 comes from when you
>> append
 “test3”...
 
 It should be a text node. No?
 
> On Nov 28, 2019, at 8:09 PM, Greg Dove  wrote:
> 
> OK, I will check it now.
> 
> On Fri, Nov 29, 2019 at 7:08 AM Harbs  wrote:
> 
>> I’m getting two test failures on the XML tests.
>> 
>> testXMLNormalize is failing, but the test looks wrong to me. Could you
>> take a look?
>> 
>>> On Nov 28, 2019, at 7:32 PM, Greg Dove  wrote:
>>> 
>>> Oh - just saw this. Thanks.
>>> Please ignore my comments in the other thread :).
>>> 
>>> 
>>> On Fri, Nov 29, 2019 at 6:12 AM Harbs  wrote:
>>> 
 I finally got the nerve together to update my local environment.
 
 The changes look pretty good.
 
 I made a couple of small changes.
 
 One fixes hasAttribute which somehow broke with your changes.
 
 The second is a small tweak to the memory optimizations. The memory
 footprint seems to be a bit smaller than what it used to be.
 
 Good work. :-)
 
 Harbs
 
> On Oct 2, 2019, at 11:29 AM, Greg Dove 
>> wrote:
> 
> @harbs
> 
> FYI in addition to some other stuff, I am close to pushing my
>> updates
>> to
> XML. This should be in the next hour or so.
> 
> I kept the QName caching pretty close to how you had it, with only
 some
> minor changes.
> I tried to do some extra memory optimization, and in theory it
>> should
> provide better results, but to be honest I don't have a good way to
 measure
> this in the browser. I tried the Chrome performance.memory
>> extensions
 but I
> don't have much confidence in that given how much it varies between
 reloads
> without changing anything else. The extra code changes I made were
>> to
 make
> the '_nodeKind' strings into String object references, so they only
>> refer
> to a single reference to a string instead of multiple copies of
 primitives.
> That change is isolated to a single commit so can easily be
>> reversed
 if
> there is something not good about it... but all my local tests
 continue
 to
> pass. I will get the new tests into RoyaleUnit in the coming days.
> 
> 
> 
> 
> On Thu, Sep 5, 2019 at 7:39 AM Greg Dove 
 wrote:
> 
>> Yeah, I saw that ;) Don't worry, I am aware of it.
>> 
>> My first goal is to make sure it works like it should, because
>> that
 comes
>> first, and then to optimize. I'll check the memory side of things
 and
 make
>> sure it's at least the same as before. If you can point me to some
>> publicly accessible large test cases that would be really
>> helpful. I
 will
>> work through that before I push anything.
>> 
>> On Thu, Sep 5, 2019 at 7:26 AM Harbs 
>> wrote:
>> 
>>> Heads up:
>>> 
>>> I did some (on first blush) odd things in XML related to QNames.
>> QNames
>>> are pooled and many XML properties are not initialized by
>> default.
>> The
>>> reason I did this was it avoided many MB of memory waste for
 complex
 XML.
>>> Please don’t mess that up.
>>> 
>>> Thanks,
>>> Harbs
>>> 
 On Sep 4, 2019, at 1:02 PM, Greg Dove 
 wrote:
 
 This is particularly for Harbs and Yishay, as I think you are
>> both
>> (or
>>> both
 have been) using XML quite a bit. I have quite a few  fixes
 coming.
 All
 with tests that match on swf and js.

Re: Heads up on XML

2019-11-28 Thread Greg Dove
' I don’t see that in the Ecma spec.'

yeah, it was fun working on this. (irony) . When things were not clear, I
always used swf behavior as the 'spec'.



On Fri, Nov 29, 2019 at 7:25 AM Harbs  wrote:

> Yeah. I see it’s supposed to wrap the elements. Weird. I don’t see that in
> the Ecma spec.
>
> I see what I messed up. I’ll revert that bit.
>
> > On Nov 28, 2019, at 8:20 PM, Greg Dove  wrote:
> >
> > You mean this (hopefully the xml angle brackets won't be mangled in your
> > view of this)?
> >
> > var xml:XML = ;
> > xml.appendChild("test1");
> > xml.appendChild("test2");
> > xml.appendChild();
> > xml.appendChild("test3");
> > xml.appendChild("test4");
> >
> >
> > trace(xml.toXMLString())
> > output in swf:
> > 
> >  test1
> >  test2
> >  
> >  test3
> >  test4
> > 
> >
> >
> >
> > On Fri, Nov 29, 2019 at 7:12 AM Harbs  wrote:
> >
> >> I can’t imagine where test3 comes from when you
> append
> >> “test3”...
> >>
> >> It should be a text node. No?
> >>
> >>> On Nov 28, 2019, at 8:09 PM, Greg Dove  wrote:
> >>>
> >>> OK, I will check it now.
> >>>
> >>> On Fri, Nov 29, 2019 at 7:08 AM Harbs  wrote:
> >>>
>  I’m getting two test failures on the XML tests.
> 
>  testXMLNormalize is failing, but the test looks wrong to me. Could you
>  take a look?
> 
> > On Nov 28, 2019, at 7:32 PM, Greg Dove  wrote:
> >
> > Oh - just saw this. Thanks.
> > Please ignore my comments in the other thread :).
> >
> >
> > On Fri, Nov 29, 2019 at 6:12 AM Harbs  wrote:
> >
> >> I finally got the nerve together to update my local environment.
> >>
> >> The changes look pretty good.
> >>
> >> I made a couple of small changes.
> >>
> >> One fixes hasAttribute which somehow broke with your changes.
> >>
> >> The second is a small tweak to the memory optimizations. The memory
> >> footprint seems to be a bit smaller than what it used to be.
> >>
> >> Good work. :-)
> >>
> >> Harbs
> >>
> >>> On Oct 2, 2019, at 11:29 AM, Greg Dove 
> wrote:
> >>>
> >>> @harbs
> >>>
> >>> FYI in addition to some other stuff, I am close to pushing my
> updates
>  to
> >>> XML. This should be in the next hour or so.
> >>>
> >>> I kept the QName caching pretty close to how you had it, with only
> >> some
> >>> minor changes.
> >>> I tried to do some extra memory optimization, and in theory it
> should
> >>> provide better results, but to be honest I don't have a good way to
> >> measure
> >>> this in the browser. I tried the Chrome performance.memory
> extensions
> >> but I
> >>> don't have much confidence in that given how much it varies between
> >> reloads
> >>> without changing anything else. The extra code changes I made were
> to
> >> make
> >>> the '_nodeKind' strings into String object references, so they only
>  refer
> >>> to a single reference to a string instead of multiple copies of
> >> primitives.
> >>> That change is isolated to a single commit so can easily be
> reversed
> >> if
> >>> there is something not good about it... but all my local tests
> >> continue
> >> to
> >>> pass. I will get the new tests into RoyaleUnit in the coming days.
> >>>
> >>>
> >>>
> >>>
> >>> On Thu, Sep 5, 2019 at 7:39 AM Greg Dove 
> >> wrote:
> >>>
>  Yeah, I saw that ;) Don't worry, I am aware of it.
> 
>  My first goal is to make sure it works like it should, because
> that
> >> comes
>  first, and then to optimize. I'll check the memory side of things
> >> and
> >> make
>  sure it's at least the same as before. If you can point me to some
>  publicly accessible large test cases that would be really
> helpful. I
> >> will
>  work through that before I push anything.
> 
>  On Thu, Sep 5, 2019 at 7:26 AM Harbs 
> wrote:
> 
> > Heads up:
> >
> > I did some (on first blush) odd things in XML related to QNames.
>  QNames
> > are pooled and many XML properties are not initialized by
> default.
>  The
> > reason I did this was it avoided many MB of memory waste for
> >> complex
> >> XML.
> > Please don’t mess that up.
> >
> > Thanks,
> > Harbs
> >
> >> On Sep 4, 2019, at 1:02 PM, Greg Dove 
> >> wrote:
> >>
> >> This is particularly for Harbs and Yishay, as I think you are
> both
>  (or
> > both
> >> have been) using XML quite a bit. I have quite a few  fixes
> >> coming.
> >> All
> >> with tests that match on swf and js.
> >>
> >> I am currently working to demonstrate proof of concept to a
> >> prospective
> >> client for migration of a Flex app. The app makes extensive use
> of
>  e4x
> > and
> >> uses a bunch of features that I expect 

Re: Heads up on XML

2019-11-28 Thread Harbs
Yeah. I see it’s supposed to wrap the elements. Weird. I don’t see that in the 
Ecma spec.

I see what I messed up. I’ll revert that bit.

> On Nov 28, 2019, at 8:20 PM, Greg Dove  wrote:
> 
> You mean this (hopefully the xml angle brackets won't be mangled in your
> view of this)?
> 
> var xml:XML = ;
> xml.appendChild("test1");
> xml.appendChild("test2");
> xml.appendChild();
> xml.appendChild("test3");
> xml.appendChild("test4");
> 
> 
> trace(xml.toXMLString())
> output in swf:
> 
>  test1
>  test2
>  
>  test3
>  test4
> 
> 
> 
> 
> On Fri, Nov 29, 2019 at 7:12 AM Harbs  wrote:
> 
>> I can’t imagine where test3 comes from when you append
>> “test3”...
>> 
>> It should be a text node. No?
>> 
>>> On Nov 28, 2019, at 8:09 PM, Greg Dove  wrote:
>>> 
>>> OK, I will check it now.
>>> 
>>> On Fri, Nov 29, 2019 at 7:08 AM Harbs  wrote:
>>> 
 I’m getting two test failures on the XML tests.
 
 testXMLNormalize is failing, but the test looks wrong to me. Could you
 take a look?
 
> On Nov 28, 2019, at 7:32 PM, Greg Dove  wrote:
> 
> Oh - just saw this. Thanks.
> Please ignore my comments in the other thread :).
> 
> 
> On Fri, Nov 29, 2019 at 6:12 AM Harbs  wrote:
> 
>> I finally got the nerve together to update my local environment.
>> 
>> The changes look pretty good.
>> 
>> I made a couple of small changes.
>> 
>> One fixes hasAttribute which somehow broke with your changes.
>> 
>> The second is a small tweak to the memory optimizations. The memory
>> footprint seems to be a bit smaller than what it used to be.
>> 
>> Good work. :-)
>> 
>> Harbs
>> 
>>> On Oct 2, 2019, at 11:29 AM, Greg Dove  wrote:
>>> 
>>> @harbs
>>> 
>>> FYI in addition to some other stuff, I am close to pushing my updates
 to
>>> XML. This should be in the next hour or so.
>>> 
>>> I kept the QName caching pretty close to how you had it, with only
>> some
>>> minor changes.
>>> I tried to do some extra memory optimization, and in theory it should
>>> provide better results, but to be honest I don't have a good way to
>> measure
>>> this in the browser. I tried the Chrome performance.memory extensions
>> but I
>>> don't have much confidence in that given how much it varies between
>> reloads
>>> without changing anything else. The extra code changes I made were to
>> make
>>> the '_nodeKind' strings into String object references, so they only
 refer
>>> to a single reference to a string instead of multiple copies of
>> primitives.
>>> That change is isolated to a single commit so can easily be reversed
>> if
>>> there is something not good about it... but all my local tests
>> continue
>> to
>>> pass. I will get the new tests into RoyaleUnit in the coming days.
>>> 
>>> 
>>> 
>>> 
>>> On Thu, Sep 5, 2019 at 7:39 AM Greg Dove 
>> wrote:
>>> 
 Yeah, I saw that ;) Don't worry, I am aware of it.
 
 My first goal is to make sure it works like it should, because that
>> comes
 first, and then to optimize. I'll check the memory side of things
>> and
>> make
 sure it's at least the same as before. If you can point me to some
 publicly accessible large test cases that would be really helpful. I
>> will
 work through that before I push anything.
 
 On Thu, Sep 5, 2019 at 7:26 AM Harbs  wrote:
 
> Heads up:
> 
> I did some (on first blush) odd things in XML related to QNames.
 QNames
> are pooled and many XML properties are not initialized by default.
 The
> reason I did this was it avoided many MB of memory waste for
>> complex
>> XML.
> Please don’t mess that up.
> 
> Thanks,
> Harbs
> 
>> On Sep 4, 2019, at 1:02 PM, Greg Dove 
>> wrote:
>> 
>> This is particularly for Harbs and Yishay, as I think you are both
 (or
> both
>> have been) using XML quite a bit. I have quite a few  fixes
>> coming.
>> All
>> with tests that match on swf and js.
>> 
>> I am currently working to demonstrate proof of concept to a
>> prospective
>> client for migration of a Flex app. The app makes extensive use of
 e4x
> and
>> uses a bunch of features that I expect had not received attention
>> previously, because they were originally either not working with
>> the
>> codebase I am porting, or i think some even caused errors in the
> javascript
>> output.
>> 
>> So I have spent the last several days almost full time figuring
 things
> out
>> and working on fixes, between the compiler and emulation classes.
>> All the previous XML tests continue to pass, but I have many more

Re: Heads up on XML

2019-11-28 Thread Greg Dove
You mean this (hopefully the xml angle brackets won't be mangled in your
view of this)?

var xml:XML = ;
xml.appendChild("test1");
xml.appendChild("test2");
xml.appendChild();
xml.appendChild("test3");
xml.appendChild("test4");


trace(xml.toXMLString())
output in swf:

  test1
  test2
  
  test3
  test4




On Fri, Nov 29, 2019 at 7:12 AM Harbs  wrote:

> I can’t imagine where test3 comes from when you append
> “test3”...
>
> It should be a text node. No?
>
> > On Nov 28, 2019, at 8:09 PM, Greg Dove  wrote:
> >
> > OK, I will check it now.
> >
> > On Fri, Nov 29, 2019 at 7:08 AM Harbs  wrote:
> >
> >> I’m getting two test failures on the XML tests.
> >>
> >> testXMLNormalize is failing, but the test looks wrong to me. Could you
> >> take a look?
> >>
> >>> On Nov 28, 2019, at 7:32 PM, Greg Dove  wrote:
> >>>
> >>> Oh - just saw this. Thanks.
> >>> Please ignore my comments in the other thread :).
> >>>
> >>>
> >>> On Fri, Nov 29, 2019 at 6:12 AM Harbs  wrote:
> >>>
>  I finally got the nerve together to update my local environment.
> 
>  The changes look pretty good.
> 
>  I made a couple of small changes.
> 
>  One fixes hasAttribute which somehow broke with your changes.
> 
>  The second is a small tweak to the memory optimizations. The memory
>  footprint seems to be a bit smaller than what it used to be.
> 
>  Good work. :-)
> 
>  Harbs
> 
> > On Oct 2, 2019, at 11:29 AM, Greg Dove  wrote:
> >
> > @harbs
> >
> > FYI in addition to some other stuff, I am close to pushing my updates
> >> to
> > XML. This should be in the next hour or so.
> >
> > I kept the QName caching pretty close to how you had it, with only
> some
> > minor changes.
> > I tried to do some extra memory optimization, and in theory it should
> > provide better results, but to be honest I don't have a good way to
>  measure
> > this in the browser. I tried the Chrome performance.memory extensions
>  but I
> > don't have much confidence in that given how much it varies between
>  reloads
> > without changing anything else. The extra code changes I made were to
>  make
> > the '_nodeKind' strings into String object references, so they only
> >> refer
> > to a single reference to a string instead of multiple copies of
>  primitives.
> > That change is isolated to a single commit so can easily be reversed
> if
> > there is something not good about it... but all my local tests
> continue
>  to
> > pass. I will get the new tests into RoyaleUnit in the coming days.
> >
> >
> >
> >
> > On Thu, Sep 5, 2019 at 7:39 AM Greg Dove 
> wrote:
> >
> >> Yeah, I saw that ;) Don't worry, I am aware of it.
> >>
> >> My first goal is to make sure it works like it should, because that
>  comes
> >> first, and then to optimize. I'll check the memory side of things
> and
>  make
> >> sure it's at least the same as before. If you can point me to some
> >> publicly accessible large test cases that would be really helpful. I
>  will
> >> work through that before I push anything.
> >>
> >> On Thu, Sep 5, 2019 at 7:26 AM Harbs  wrote:
> >>
> >>> Heads up:
> >>>
> >>> I did some (on first blush) odd things in XML related to QNames.
> >> QNames
> >>> are pooled and many XML properties are not initialized by default.
> >> The
> >>> reason I did this was it avoided many MB of memory waste for
> complex
>  XML.
> >>> Please don’t mess that up.
> >>>
> >>> Thanks,
> >>> Harbs
> >>>
>  On Sep 4, 2019, at 1:02 PM, Greg Dove 
> wrote:
> 
>  This is particularly for Harbs and Yishay, as I think you are both
> >> (or
> >>> both
>  have been) using XML quite a bit. I have quite a few  fixes
> coming.
>  All
>  with tests that match on swf and js.
> 
>  I am currently working to demonstrate proof of concept to a
>  prospective
>  client for migration of a Flex app. The app makes extensive use of
> >> e4x
> >>> and
>  uses a bunch of features that I expect had not received attention
>  previously, because they were originally either not working with
> the
>  codebase I am porting, or i think some even caused errors in the
> >>> javascript
>  output.
> 
>  So I have spent the last several days almost full time figuring
> >> things
> >>> out
>  and working on fixes, between the compiler and emulation classes.
>  All the previous XML tests continue to pass, but I have many more
> >> unit
>  tests and fixes lined up for the following:
> 
>  namespace directives
>  default xml namespace
>  use namespace (multiple)
> 
>  a number of fixes for xml filtering, including:
>  -'this' resolves correctly 

Re: Heads up on XML

2019-11-28 Thread Harbs
I can’t imagine where test3 comes from when you append 
“test3”...

It should be a text node. No?

> On Nov 28, 2019, at 8:09 PM, Greg Dove  wrote:
> 
> OK, I will check it now.
> 
> On Fri, Nov 29, 2019 at 7:08 AM Harbs  wrote:
> 
>> I’m getting two test failures on the XML tests.
>> 
>> testXMLNormalize is failing, but the test looks wrong to me. Could you
>> take a look?
>> 
>>> On Nov 28, 2019, at 7:32 PM, Greg Dove  wrote:
>>> 
>>> Oh - just saw this. Thanks.
>>> Please ignore my comments in the other thread :).
>>> 
>>> 
>>> On Fri, Nov 29, 2019 at 6:12 AM Harbs  wrote:
>>> 
 I finally got the nerve together to update my local environment.
 
 The changes look pretty good.
 
 I made a couple of small changes.
 
 One fixes hasAttribute which somehow broke with your changes.
 
 The second is a small tweak to the memory optimizations. The memory
 footprint seems to be a bit smaller than what it used to be.
 
 Good work. :-)
 
 Harbs
 
> On Oct 2, 2019, at 11:29 AM, Greg Dove  wrote:
> 
> @harbs
> 
> FYI in addition to some other stuff, I am close to pushing my updates
>> to
> XML. This should be in the next hour or so.
> 
> I kept the QName caching pretty close to how you had it, with only some
> minor changes.
> I tried to do some extra memory optimization, and in theory it should
> provide better results, but to be honest I don't have a good way to
 measure
> this in the browser. I tried the Chrome performance.memory extensions
 but I
> don't have much confidence in that given how much it varies between
 reloads
> without changing anything else. The extra code changes I made were to
 make
> the '_nodeKind' strings into String object references, so they only
>> refer
> to a single reference to a string instead of multiple copies of
 primitives.
> That change is isolated to a single commit so can easily be reversed if
> there is something not good about it... but all my local tests continue
 to
> pass. I will get the new tests into RoyaleUnit in the coming days.
> 
> 
> 
> 
> On Thu, Sep 5, 2019 at 7:39 AM Greg Dove  wrote:
> 
>> Yeah, I saw that ;) Don't worry, I am aware of it.
>> 
>> My first goal is to make sure it works like it should, because that
 comes
>> first, and then to optimize. I'll check the memory side of things and
 make
>> sure it's at least the same as before. If you can point me to some
>> publicly accessible large test cases that would be really helpful. I
 will
>> work through that before I push anything.
>> 
>> On Thu, Sep 5, 2019 at 7:26 AM Harbs  wrote:
>> 
>>> Heads up:
>>> 
>>> I did some (on first blush) odd things in XML related to QNames.
>> QNames
>>> are pooled and many XML properties are not initialized by default.
>> The
>>> reason I did this was it avoided many MB of memory waste for complex
 XML.
>>> Please don’t mess that up.
>>> 
>>> Thanks,
>>> Harbs
>>> 
 On Sep 4, 2019, at 1:02 PM, Greg Dove  wrote:
 
 This is particularly for Harbs and Yishay, as I think you are both
>> (or
>>> both
 have been) using XML quite a bit. I have quite a few  fixes coming.
 All
 with tests that match on swf and js.
 
 I am currently working to demonstrate proof of concept to a
 prospective
 client for migration of a Flex app. The app makes extensive use of
>> e4x
>>> and
 uses a bunch of features that I expect had not received attention
 previously, because they were originally either not working with the
 codebase I am porting, or i think some even caused errors in the
>>> javascript
 output.
 
 So I have spent the last several days almost full time figuring
>> things
>>> out
 and working on fixes, between the compiler and emulation classes.
 All the previous XML tests continue to pass, but I have many more
>> unit
 tests and fixes lined up for the following:
 
 namespace directives
 default xml namespace
 use namespace (multiple)
 
 a number of fixes for xml filtering, including:
 -'this' resolves correctly in filters that include external
>> references
>>> from
 the fitler expression to the 'this' scope
 -handles alternate ordering of comparisons between XML 'getters' and
 literals
 e.g. something.(name() = "cat")  or something.("cat" = name())
>> (these
>>> are
 the same)
 -it (will) now handle XML e4x references in nested function calls
 inside
 the filter, e.g. things like:
 e.g.
 var people:XML = 
 
 Bob
 32
 
 

Re: Heads up on XML

2019-11-28 Thread Greg Dove
OK, I will check it now.

On Fri, Nov 29, 2019 at 7:08 AM Harbs  wrote:

> I’m getting two test failures on the XML tests.
>
> testXMLNormalize is failing, but the test looks wrong to me. Could you
> take a look?
>
> > On Nov 28, 2019, at 7:32 PM, Greg Dove  wrote:
> >
> > Oh - just saw this. Thanks.
> > Please ignore my comments in the other thread :).
> >
> >
> > On Fri, Nov 29, 2019 at 6:12 AM Harbs  wrote:
> >
> >> I finally got the nerve together to update my local environment.
> >>
> >> The changes look pretty good.
> >>
> >> I made a couple of small changes.
> >>
> >> One fixes hasAttribute which somehow broke with your changes.
> >>
> >> The second is a small tweak to the memory optimizations. The memory
> >> footprint seems to be a bit smaller than what it used to be.
> >>
> >> Good work. :-)
> >>
> >> Harbs
> >>
> >>> On Oct 2, 2019, at 11:29 AM, Greg Dove  wrote:
> >>>
> >>> @harbs
> >>>
> >>> FYI in addition to some other stuff, I am close to pushing my updates
> to
> >>> XML. This should be in the next hour or so.
> >>>
> >>> I kept the QName caching pretty close to how you had it, with only some
> >>> minor changes.
> >>> I tried to do some extra memory optimization, and in theory it should
> >>> provide better results, but to be honest I don't have a good way to
> >> measure
> >>> this in the browser. I tried the Chrome performance.memory extensions
> >> but I
> >>> don't have much confidence in that given how much it varies between
> >> reloads
> >>> without changing anything else. The extra code changes I made were to
> >> make
> >>> the '_nodeKind' strings into String object references, so they only
> refer
> >>> to a single reference to a string instead of multiple copies of
> >> primitives.
> >>> That change is isolated to a single commit so can easily be reversed if
> >>> there is something not good about it... but all my local tests continue
> >> to
> >>> pass. I will get the new tests into RoyaleUnit in the coming days.
> >>>
> >>>
> >>>
> >>>
> >>> On Thu, Sep 5, 2019 at 7:39 AM Greg Dove  wrote:
> >>>
>  Yeah, I saw that ;) Don't worry, I am aware of it.
> 
>  My first goal is to make sure it works like it should, because that
> >> comes
>  first, and then to optimize. I'll check the memory side of things and
> >> make
>  sure it's at least the same as before. If you can point me to some
>  publicly accessible large test cases that would be really helpful. I
> >> will
>  work through that before I push anything.
> 
>  On Thu, Sep 5, 2019 at 7:26 AM Harbs  wrote:
> 
> > Heads up:
> >
> > I did some (on first blush) odd things in XML related to QNames.
> QNames
> > are pooled and many XML properties are not initialized by default.
> The
> > reason I did this was it avoided many MB of memory waste for complex
> >> XML.
> > Please don’t mess that up.
> >
> > Thanks,
> > Harbs
> >
> >> On Sep 4, 2019, at 1:02 PM, Greg Dove  wrote:
> >>
> >> This is particularly for Harbs and Yishay, as I think you are both
> (or
> > both
> >> have been) using XML quite a bit. I have quite a few  fixes coming.
> >> All
> >> with tests that match on swf and js.
> >>
> >> I am currently working to demonstrate proof of concept to a
> >> prospective
> >> client for migration of a Flex app. The app makes extensive use of
> e4x
> > and
> >> uses a bunch of features that I expect had not received attention
> >> previously, because they were originally either not working with the
> >> codebase I am porting, or i think some even caused errors in the
> > javascript
> >> output.
> >>
> >> So I have spent the last several days almost full time figuring
> things
> > out
> >> and working on fixes, between the compiler and emulation classes.
> >> All the previous XML tests continue to pass, but I have many more
> unit
> >> tests and fixes lined up for the following:
> >>
> >> namespace directives
> >> default xml namespace
> >> use namespace (multiple)
> >>
> >> a number of fixes for xml filtering, including:
> >> -'this' resolves correctly in filters that include external
> references
> > from
> >> the fitler expression to the 'this' scope
> >> -handles alternate ordering of comparisons between XML 'getters' and
> >> literals
> >> e.g. something.(name() = "cat")  or something.("cat" = name())
> (these
> > are
> >> the same)
> >> -it (will) now handle XML e4x references in nested function calls
> >> inside
> >> the filter, e.g. things like:
> >> e.g.
> >> var people:XML = 
> >>  
> >>  Bob
> >>  32
> >>  
> >>  
> >>  Joe
> >>  46
> >>  
> >>  ;
> >> var findJoeByAge:Function = function (i:int):Boolean {
> >>  

Re: Heads up on XML

2019-11-28 Thread Harbs
I’m getting two test failures on the XML tests.

testXMLNormalize is failing, but the test looks wrong to me. Could you take a 
look?

> On Nov 28, 2019, at 7:32 PM, Greg Dove  wrote:
> 
> Oh - just saw this. Thanks.
> Please ignore my comments in the other thread :).
> 
> 
> On Fri, Nov 29, 2019 at 6:12 AM Harbs  wrote:
> 
>> I finally got the nerve together to update my local environment.
>> 
>> The changes look pretty good.
>> 
>> I made a couple of small changes.
>> 
>> One fixes hasAttribute which somehow broke with your changes.
>> 
>> The second is a small tweak to the memory optimizations. The memory
>> footprint seems to be a bit smaller than what it used to be.
>> 
>> Good work. :-)
>> 
>> Harbs
>> 
>>> On Oct 2, 2019, at 11:29 AM, Greg Dove  wrote:
>>> 
>>> @harbs
>>> 
>>> FYI in addition to some other stuff, I am close to pushing my updates to
>>> XML. This should be in the next hour or so.
>>> 
>>> I kept the QName caching pretty close to how you had it, with only some
>>> minor changes.
>>> I tried to do some extra memory optimization, and in theory it should
>>> provide better results, but to be honest I don't have a good way to
>> measure
>>> this in the browser. I tried the Chrome performance.memory extensions
>> but I
>>> don't have much confidence in that given how much it varies between
>> reloads
>>> without changing anything else. The extra code changes I made were to
>> make
>>> the '_nodeKind' strings into String object references, so they only refer
>>> to a single reference to a string instead of multiple copies of
>> primitives.
>>> That change is isolated to a single commit so can easily be reversed if
>>> there is something not good about it... but all my local tests continue
>> to
>>> pass. I will get the new tests into RoyaleUnit in the coming days.
>>> 
>>> 
>>> 
>>> 
>>> On Thu, Sep 5, 2019 at 7:39 AM Greg Dove  wrote:
>>> 
 Yeah, I saw that ;) Don't worry, I am aware of it.
 
 My first goal is to make sure it works like it should, because that
>> comes
 first, and then to optimize. I'll check the memory side of things and
>> make
 sure it's at least the same as before. If you can point me to some
 publicly accessible large test cases that would be really helpful. I
>> will
 work through that before I push anything.
 
 On Thu, Sep 5, 2019 at 7:26 AM Harbs  wrote:
 
> Heads up:
> 
> I did some (on first blush) odd things in XML related to QNames. QNames
> are pooled and many XML properties are not initialized by default. The
> reason I did this was it avoided many MB of memory waste for complex
>> XML.
> Please don’t mess that up.
> 
> Thanks,
> Harbs
> 
>> On Sep 4, 2019, at 1:02 PM, Greg Dove  wrote:
>> 
>> This is particularly for Harbs and Yishay, as I think you are both (or
> both
>> have been) using XML quite a bit. I have quite a few  fixes coming.
>> All
>> with tests that match on swf and js.
>> 
>> I am currently working to demonstrate proof of concept to a
>> prospective
>> client for migration of a Flex app. The app makes extensive use of e4x
> and
>> uses a bunch of features that I expect had not received attention
>> previously, because they were originally either not working with the
>> codebase I am porting, or i think some even caused errors in the
> javascript
>> output.
>> 
>> So I have spent the last several days almost full time figuring things
> out
>> and working on fixes, between the compiler and emulation classes.
>> All the previous XML tests continue to pass, but I have many more unit
>> tests and fixes lined up for the following:
>> 
>> namespace directives
>> default xml namespace
>> use namespace (multiple)
>> 
>> a number of fixes for xml filtering, including:
>> -'this' resolves correctly in filters that include external references
> from
>> the fitler expression to the 'this' scope
>> -handles alternate ordering of comparisons between XML 'getters' and
>> literals
>> e.g. something.(name() = "cat")  or something.("cat" = name()) (these
> are
>> the same)
>> -it (will) now handle XML e4x references in nested function calls
>> inside
>> the filter, e.g. things like:
>> e.g.
>> var people:XML = 
>>  
>>  Bob
>>  32
>>  
>>  
>>  Joe
>>  46
>>  
>>  ;
>> var findJoeByAge:Function = function (i:int):Boolean {
>>  return i > 40;
>>  };
>> people.person.(findJoeByAge(parseInt(age))).name
>> 
>> 
>> I have lots more granular tests in QName, Namespace, and XML with
> tuning to
>> improve reliability.
>> toXMLString XML node output also matches flash more correctly in what
>> I
>> have coming.
>> 

Re: Heads up on XML

2019-11-28 Thread Greg Dove
Harbs,

I don't have time to look into it right now, but those last changes break a
couple of royaleunit tests.
The tests could be wrong (but for the most part they do run the same tests
between swf and js).

If you ever want to test these in isolation after you make changes, you can
go into the XML project in console (with all normal env vars set) and just
use:
ant test



On Fri, Nov 29, 2019 at 6:32 AM Greg Dove  wrote:

>
> Oh - just saw this. Thanks.
> Please ignore my comments in the other thread :).
>
>
> On Fri, Nov 29, 2019 at 6:12 AM Harbs  wrote:
>
>> I finally got the nerve together to update my local environment.
>>
>> The changes look pretty good.
>>
>> I made a couple of small changes.
>>
>> One fixes hasAttribute which somehow broke with your changes.
>>
>> The second is a small tweak to the memory optimizations. The memory
>> footprint seems to be a bit smaller than what it used to be.
>>
>> Good work. :-)
>>
>> Harbs
>>
>> > On Oct 2, 2019, at 11:29 AM, Greg Dove  wrote:
>> >
>> > @harbs
>> >
>> > FYI in addition to some other stuff, I am close to pushing my updates to
>> > XML. This should be in the next hour or so.
>> >
>> > I kept the QName caching pretty close to how you had it, with only some
>> > minor changes.
>> > I tried to do some extra memory optimization, and in theory it should
>> > provide better results, but to be honest I don't have a good way to
>> measure
>> > this in the browser. I tried the Chrome performance.memory extensions
>> but I
>> > don't have much confidence in that given how much it varies between
>> reloads
>> > without changing anything else. The extra code changes I made were to
>> make
>> > the '_nodeKind' strings into String object references, so they only
>> refer
>> > to a single reference to a string instead of multiple copies of
>> primitives.
>> > That change is isolated to a single commit so can easily be reversed if
>> > there is something not good about it... but all my local tests continue
>> to
>> > pass. I will get the new tests into RoyaleUnit in the coming days.
>> >
>> >
>> >
>> >
>> > On Thu, Sep 5, 2019 at 7:39 AM Greg Dove  wrote:
>> >
>> >> Yeah, I saw that ;) Don't worry, I am aware of it.
>> >>
>> >> My first goal is to make sure it works like it should, because that
>> comes
>> >> first, and then to optimize. I'll check the memory side of things and
>> make
>> >> sure it's at least the same as before. If you can point me to some
>> >> publicly accessible large test cases that would be really helpful. I
>> will
>> >> work through that before I push anything.
>> >>
>> >> On Thu, Sep 5, 2019 at 7:26 AM Harbs  wrote:
>> >>
>> >>> Heads up:
>> >>>
>> >>> I did some (on first blush) odd things in XML related to QNames.
>> QNames
>> >>> are pooled and many XML properties are not initialized by default. The
>> >>> reason I did this was it avoided many MB of memory waste for complex
>> XML.
>> >>> Please don’t mess that up.
>> >>>
>> >>> Thanks,
>> >>> Harbs
>> >>>
>>  On Sep 4, 2019, at 1:02 PM, Greg Dove  wrote:
>> 
>>  This is particularly for Harbs and Yishay, as I think you are both
>> (or
>> >>> both
>>  have been) using XML quite a bit. I have quite a few  fixes coming.
>> All
>>  with tests that match on swf and js.
>> 
>>  I am currently working to demonstrate proof of concept to a
>> prospective
>>  client for migration of a Flex app. The app makes extensive use of
>> e4x
>> >>> and
>>  uses a bunch of features that I expect had not received attention
>>  previously, because they were originally either not working with the
>>  codebase I am porting, or i think some even caused errors in the
>> >>> javascript
>>  output.
>> 
>>  So I have spent the last several days almost full time figuring
>> things
>> >>> out
>>  and working on fixes, between the compiler and emulation classes.
>>  All the previous XML tests continue to pass, but I have many more
>> unit
>>  tests and fixes lined up for the following:
>> 
>>  namespace directives
>>  default xml namespace
>>  use namespace (multiple)
>> 
>>  a number of fixes for xml filtering, including:
>>  -'this' resolves correctly in filters that include external
>> references
>> >>> from
>>  the fitler expression to the 'this' scope
>>  -handles alternate ordering of comparisons between XML 'getters' and
>>  literals
>>  e.g. something.(name() = "cat")  or something.("cat" = name()) (these
>> >>> are
>>  the same)
>>  -it (will) now handle XML e4x references in nested function calls
>> inside
>>  the filter, e.g. things like:
>>  e.g.
>>  var people:XML = 
>>    
>>    Bob
>>    32
>>    
>>    
>>    Joe
>>    46
>>    
>>    ;
>>  var findJoeByAge:Function = function (i:int):Boolean {
>>    

Re: Heads up on XML

2019-11-28 Thread Greg Dove
Oh - just saw this. Thanks.
Please ignore my comments in the other thread :).


On Fri, Nov 29, 2019 at 6:12 AM Harbs  wrote:

> I finally got the nerve together to update my local environment.
>
> The changes look pretty good.
>
> I made a couple of small changes.
>
> One fixes hasAttribute which somehow broke with your changes.
>
> The second is a small tweak to the memory optimizations. The memory
> footprint seems to be a bit smaller than what it used to be.
>
> Good work. :-)
>
> Harbs
>
> > On Oct 2, 2019, at 11:29 AM, Greg Dove  wrote:
> >
> > @harbs
> >
> > FYI in addition to some other stuff, I am close to pushing my updates to
> > XML. This should be in the next hour or so.
> >
> > I kept the QName caching pretty close to how you had it, with only some
> > minor changes.
> > I tried to do some extra memory optimization, and in theory it should
> > provide better results, but to be honest I don't have a good way to
> measure
> > this in the browser. I tried the Chrome performance.memory extensions
> but I
> > don't have much confidence in that given how much it varies between
> reloads
> > without changing anything else. The extra code changes I made were to
> make
> > the '_nodeKind' strings into String object references, so they only refer
> > to a single reference to a string instead of multiple copies of
> primitives.
> > That change is isolated to a single commit so can easily be reversed if
> > there is something not good about it... but all my local tests continue
> to
> > pass. I will get the new tests into RoyaleUnit in the coming days.
> >
> >
> >
> >
> > On Thu, Sep 5, 2019 at 7:39 AM Greg Dove  wrote:
> >
> >> Yeah, I saw that ;) Don't worry, I am aware of it.
> >>
> >> My first goal is to make sure it works like it should, because that
> comes
> >> first, and then to optimize. I'll check the memory side of things and
> make
> >> sure it's at least the same as before. If you can point me to some
> >> publicly accessible large test cases that would be really helpful. I
> will
> >> work through that before I push anything.
> >>
> >> On Thu, Sep 5, 2019 at 7:26 AM Harbs  wrote:
> >>
> >>> Heads up:
> >>>
> >>> I did some (on first blush) odd things in XML related to QNames. QNames
> >>> are pooled and many XML properties are not initialized by default. The
> >>> reason I did this was it avoided many MB of memory waste for complex
> XML.
> >>> Please don’t mess that up.
> >>>
> >>> Thanks,
> >>> Harbs
> >>>
>  On Sep 4, 2019, at 1:02 PM, Greg Dove  wrote:
> 
>  This is particularly for Harbs and Yishay, as I think you are both (or
> >>> both
>  have been) using XML quite a bit. I have quite a few  fixes coming.
> All
>  with tests that match on swf and js.
> 
>  I am currently working to demonstrate proof of concept to a
> prospective
>  client for migration of a Flex app. The app makes extensive use of e4x
> >>> and
>  uses a bunch of features that I expect had not received attention
>  previously, because they were originally either not working with the
>  codebase I am porting, or i think some even caused errors in the
> >>> javascript
>  output.
> 
>  So I have spent the last several days almost full time figuring things
> >>> out
>  and working on fixes, between the compiler and emulation classes.
>  All the previous XML tests continue to pass, but I have many more unit
>  tests and fixes lined up for the following:
> 
>  namespace directives
>  default xml namespace
>  use namespace (multiple)
> 
>  a number of fixes for xml filtering, including:
>  -'this' resolves correctly in filters that include external references
> >>> from
>  the fitler expression to the 'this' scope
>  -handles alternate ordering of comparisons between XML 'getters' and
>  literals
>  e.g. something.(name() = "cat")  or something.("cat" = name()) (these
> >>> are
>  the same)
>  -it (will) now handle XML e4x references in nested function calls
> inside
>  the filter, e.g. things like:
>  e.g.
>  var people:XML = 
>    
>    Bob
>    32
>    
>    
>    Joe
>    46
>    
>    ;
>  var findJoeByAge:Function = function (i:int):Boolean {
>    return i > 40;
>    };
>  people.person.(findJoeByAge(parseInt(age))).name
> 
> 
>  I have lots more granular tests in QName, Namespace, and XML with
> >>> tuning to
>  improve reliability.
>  toXMLString XML node output also matches flash more correctly in what
> I
>  have coming.
> 
>  One thing that I am trying to figure out, which I would appreciate
> >>> input on
>  if someone has an answer:
>  For the example:
> 
>  var feed:XML = new XML(
>    'http://www.w3.org/2005/Atom;
>  

Re: Heads up on XML

2019-11-28 Thread Harbs
I finally got the nerve together to update my local environment.

The changes look pretty good.

I made a couple of small changes.

One fixes hasAttribute which somehow broke with your changes.

The second is a small tweak to the memory optimizations. The memory footprint 
seems to be a bit smaller than what it used to be.

Good work. :-)

Harbs

> On Oct 2, 2019, at 11:29 AM, Greg Dove  wrote:
> 
> @harbs
> 
> FYI in addition to some other stuff, I am close to pushing my updates to
> XML. This should be in the next hour or so.
> 
> I kept the QName caching pretty close to how you had it, with only some
> minor changes.
> I tried to do some extra memory optimization, and in theory it should
> provide better results, but to be honest I don't have a good way to measure
> this in the browser. I tried the Chrome performance.memory extensions but I
> don't have much confidence in that given how much it varies between reloads
> without changing anything else. The extra code changes I made were to make
> the '_nodeKind' strings into String object references, so they only refer
> to a single reference to a string instead of multiple copies of primitives.
> That change is isolated to a single commit so can easily be reversed if
> there is something not good about it... but all my local tests continue to
> pass. I will get the new tests into RoyaleUnit in the coming days.
> 
> 
> 
> 
> On Thu, Sep 5, 2019 at 7:39 AM Greg Dove  wrote:
> 
>> Yeah, I saw that ;) Don't worry, I am aware of it.
>> 
>> My first goal is to make sure it works like it should, because that comes
>> first, and then to optimize. I'll check the memory side of things and make
>> sure it's at least the same as before. If you can point me to some
>> publicly accessible large test cases that would be really helpful. I will
>> work through that before I push anything.
>> 
>> On Thu, Sep 5, 2019 at 7:26 AM Harbs  wrote:
>> 
>>> Heads up:
>>> 
>>> I did some (on first blush) odd things in XML related to QNames. QNames
>>> are pooled and many XML properties are not initialized by default. The
>>> reason I did this was it avoided many MB of memory waste for complex XML.
>>> Please don’t mess that up.
>>> 
>>> Thanks,
>>> Harbs
>>> 
 On Sep 4, 2019, at 1:02 PM, Greg Dove  wrote:
 
 This is particularly for Harbs and Yishay, as I think you are both (or
>>> both
 have been) using XML quite a bit. I have quite a few  fixes coming. All
 with tests that match on swf and js.
 
 I am currently working to demonstrate proof of concept to a prospective
 client for migration of a Flex app. The app makes extensive use of e4x
>>> and
 uses a bunch of features that I expect had not received attention
 previously, because they were originally either not working with the
 codebase I am porting, or i think some even caused errors in the
>>> javascript
 output.
 
 So I have spent the last several days almost full time figuring things
>>> out
 and working on fixes, between the compiler and emulation classes.
 All the previous XML tests continue to pass, but I have many more unit
 tests and fixes lined up for the following:
 
 namespace directives
 default xml namespace
 use namespace (multiple)
 
 a number of fixes for xml filtering, including:
 -'this' resolves correctly in filters that include external references
>>> from
 the fitler expression to the 'this' scope
 -handles alternate ordering of comparisons between XML 'getters' and
 literals
 e.g. something.(name() = "cat")  or something.("cat" = name()) (these
>>> are
 the same)
 -it (will) now handle XML e4x references in nested function calls inside
 the filter, e.g. things like:
 e.g.
 var people:XML = 
   
   Bob
   32
   
   
   Joe
   46
   
   ;
 var findJoeByAge:Function = function (i:int):Boolean {
   return i > 40;
   };
 people.person.(findJoeByAge(parseInt(age))).name
 
 
 I have lots more granular tests in QName, Namespace, and XML with
>>> tuning to
 improve reliability.
 toXMLString XML node output also matches flash more correctly in what I
 have coming.
 
 One thing that I am trying to figure out, which I would appreciate
>>> input on
 if someone has an answer:
 For the example:
 
 var feed:XML = new XML(
   'http://www.w3.org/2005/Atom;
 xmlns:m="nothing">\n' +
   '  >>> href="blah/12321/domain/"/>\n' +
   '\n');
 var atomSpace:Namespace = new Namespace('http://www.w3.org/2005/Atom');
 
 Can anyone explain why this (in SWF, as a reference implementation):
 trace(feed.atomSpace::link.length())
 trace(feed.atomSpace::link.toXMLString())
 //output:
 

Re: Heads up on XML

2019-10-08 Thread Piotr Zarzycki
Hi Greg,

Questions inline.

pon., 7 paź 2019 o 01:49 Greg Dove  napisał(a):

> Hi Piotr, just a quick follow-up to let you know that was all good, I had
> already tested the merge and conflict resolution myself and was ready to
> step in and help with that if that was necessary, but you already did it
> before I got a chance to send my email about that. :)
>
> I have to say: well done for getting through the release process. I could
> sense your frustration at times, and I know it must have seemed like it
> took far too long, but I am sure you have made a huge difference for the
> future in terms of that process.
>
>
> also fyi, I had to use -Dgenerate.swf.swcs=true in my local maven build
> today, and I was vaguely aware of discussions about this during release
> prep.
> But I wonder if this is necessary. Can't we just use the top level profiles
> at the lower levels instead of creating new profiles? There's probably a
> gap in my understanding of why this was necessary, but I would have
> expected that we could simply use something like:
>
> 
> generate-swcs-for-swf
> 
> 
> org.apache.royale.framework
> Core
> 0.9.7-SNAPSHOT
> swc
> swf
> 
> 
> 
>
>
How this activates  generate.swf.swcs ? What should I do if I wanted to
build only one module ? Doing that in above way how will change main
command which launches maven build ?


> in the framework modules, instead of:
>
>   
>   swf-dependencies
>   
>   
>   generate.swf.swcs
>   
>   
>   
>   
>   org.apache.royale.framework
>   Core
>   0.9.7-SNAPSHOT
>   swc
>   swf
>   
>   
>   
>
> (the above approach works locally for me just using the maven profile
> itself, if I make the changes to all framework modules, but as I said I
> could be missing something in relation to the issue that is being
> addressed)
>
>
> On Sun, Oct 6, 2019 at 11:20 PM Greg Dove  wrote:
>
> > Hi Piotr, I will check that in the morning local time... in about 8
> hours.
> >
> > On Sun, 6 Oct 2019, 21:54 Piotr Zarzycki, 
> > wrote:
> >
> >> Hi Greg,
> >>
> >> I run into merge conflict during merge release branch to develop into
> file
> >> which you have changed lately. Could you please verify on develop if I
> >> didn't remove anything, if I resolve conflict correctly. [1]
> >>
> >> [1]
> >>
> >>
> https://github.com/apache/royale-compiler/blob/develop/compiler-jx/src/main/java/org/apache/royale/compiler/internal/codegen/js/jx/MemberAccessEmitter.java
> >>
> >> Thanks,
> >> Piotr
> >>
> >> śr., 2 paź 2019 o 11:06 Harbs  napisał(a):
> >>
> >> > OK.
> >> >
> >> > I’ll test memory with and without your changes and let you know the
> >> > differences. :-)
> >> >
> >> > Harbs
> >> >
> >> > > On Oct 2, 2019, at 11:29 AM, Greg Dove  wrote:
> >> > >
> >> > > @harbs
> >> > >
> >> > > FYI in addition to some other stuff, I am close to pushing my
> updates
> >> to
> >> > > XML. This should be in the next hour or so.
> >> > >
> >> > > I kept the QName caching pretty close to how you had it, with only
> >> some
> >> > > minor changes.
> >> > > I tried to do some extra memory optimization, and in theory it
> should
> >> > > provide better results, but to be honest I don't have a good way to
> >> > measure
> >> > > this in the browser. I tried the Chrome performance.memory
> extensions
> >> > but I
> >> > > don't have much confidence in that given how much it varies between
> >> > reloads
> >> > > without changing anything else. The extra code changes I made were
> to
> >> > make
> >> > > the '_nodeKind' strings into String object references, so they only
> >> refer
> >> > > to a single reference to a string instead of multiple copies of
> >> > primitives.
> >> > > That change is isolated to a single commit so can easily be reversed
> >> if
> >> > > there is something not good about it... but all my local tests
> >> continue
> >> > to
> >> > > pass. I will get the new tests into RoyaleUnit in the coming days.
> >> > >
> >> > >
> >> > >
> >> > >
> >> > > On Thu, Sep 5, 2019 at 7:39 AM Greg Dove 
> wrote:
> >> > >
> >> > >> Yeah, I saw that ;) Don't worry, I am aware of it.
> >> > >>
> >> > >> My first goal is to make sure it works like it should, because that
> >> > comes
> >> > >> first, and then to optimize. I'll check the memory side of things
> and
> >> > make
> >> > >> sure it's at least the same as before. If you can point me to some
> >> > >> publicly accessible large test cases that would be really helpful.
> I
> >> > will
> >> > >> work through that before I push anything.
> >> > >>
> >> > >> On Thu, Sep 5, 2019 at 7:26 AM Harbs 
> wrote:
> >> > >>
> >> > >>> Heads up:
> >> > >>>
> >> > >>> I did some (on first blush) odd things in XML related to QNames.
> >> 

Re: Heads up on XML

2019-10-06 Thread Greg Dove
Ok, thanks Alex, I will do that tomorrow.


On Mon, Oct 7, 2019 at 4:02 PM Alex Harui  wrote:

> Improvements to the Maven builds and Ant builds are always welcome.  Just
> make sure they work from a truly clean machine (empty the local Maven repo,
> build without access to the snapshots repo, etc).
>
> There are some issues with profile inheritance in Maven, but I don't
> understand your proposal enough to know if there is some hole in it.  Try
> it and find out.
>
> -Alex
>
> On 10/6/19, 4:49 PM, "Greg Dove"  wrote:
>
> Hi Piotr, just a quick follow-up to let you know that was all good, I
> had
> already tested the merge and conflict resolution myself and was ready
> to
> step in and help with that if that was necessary, but you already did
> it
> before I got a chance to send my email about that. :)
>
> I have to say: well done for getting through the release process. I
> could
> sense your frustration at times, and I know it must have seemed like it
> took far too long, but I am sure you have made a huge difference for
> the
> future in terms of that process.
>
>
> also fyi, I had to use -Dgenerate.swf.swcs=true in my local maven build
> today, and I was vaguely aware of discussions about this during release
> prep.
> But I wonder if this is necessary. Can't we just use the top level
> profiles
> at the lower levels instead of creating new profiles? There's probably
> a
> gap in my understanding of why this was necessary, but I would have
> expected that we could simply use something like:
>
> 
> generate-swcs-for-swf
> 
> 
> org.apache.royale.framework
> Core
> 0.9.7-SNAPSHOT
> swc
> swf
> 
> 
> 
>
> in the framework modules, instead of:
>
>   
>   swf-dependencies
>   
>   
>   generate.swf.swcs
>   
>   
>   
>   
>   org.apache.royale.framework
>   Core
>   0.9.7-SNAPSHOT
>   swc
>   swf
>   
>   
>   
>
> (the above approach works locally for me just using the maven profile
> itself, if I make the changes to all framework modules, but as I said I
> could be missing something in relation to the issue that is being
> addressed)
>
>
> On Sun, Oct 6, 2019 at 11:20 PM Greg Dove  wrote:
>
> > Hi Piotr, I will check that in the morning local time... in about 8
> hours.
> >
> > On Sun, 6 Oct 2019, 21:54 Piotr Zarzycki,  >
> > wrote:
> >
> >> Hi Greg,
> >>
> >> I run into merge conflict during merge release branch to develop
> into file
> >> which you have changed lately. Could you please verify on develop
> if I
> >> didn't remove anything, if I resolve conflict correctly. [1]
> >>
> >> [1]
> >>
> >>
> https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fapache%2Froyale-compiler%2Fblob%2Fdevelop%2Fcompiler-jx%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Froyale%2Fcompiler%2Finternal%2Fcodegen%2Fjs%2Fjx%2FMemberAccessEmitter.javadata=02%7C01%7Caharui%40adobe.com%7C8e7bf2601258466052f808d74ab7db82%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C637060025834669854sdata=AdnP68Opu%2BA8bOMc34%2FsNR2ZXT6gAHRsio9NX758278%3Dreserved=0
> >>
> >> Thanks,
> >> Piotr
> >>
> >> śr., 2 paź 2019 o 11:06 Harbs  napisał(a):
> >>
> >> > OK.
> >> >
> >> > I’ll test memory with and without your changes and let you know
> the
> >> > differences. :-)
> >> >
> >> > Harbs
> >> >
> >> > > On Oct 2, 2019, at 11:29 AM, Greg Dove 
> wrote:
> >> > >
> >> > > @harbs
> >> > >
> >> > > FYI in addition to some other stuff, I am close to pushing my
> updates
> >> to
> >> > > XML. This should be in the next hour or so.
> >> > >
> >> > > I kept the QName caching pretty close to how you had it, with
> only
> >> some
> >> > > minor changes.
> >> > > I tried to do some extra memory optimization, and in theory it
> should
> >> > > provide better results, but to be honest I don't have a good
> way to
> >> > measure
> >> > > this in the browser. I tried the Chrome performance.memory
> extensions
> >> > but I
> >> > > don't have much confidence in that given how much it varies
> between
> >> > reloads
> >> > > without changing anything else. The extra code changes I made
> were to
> >> > make
> >> > > the '_nodeKind' strings into String object references, so they
> only
> >> refer
> >> > > to a single reference to a string instead of multiple copies of
> >> > primitives.
> >> > > That change is isolated to a single 

Re: Heads up on XML

2019-10-06 Thread Alex Harui
Improvements to the Maven builds and Ant builds are always welcome.  Just make 
sure they work from a truly clean machine (empty the local Maven repo, build 
without access to the snapshots repo, etc).

There are some issues with profile inheritance in Maven, but I don't understand 
your proposal enough to know if there is some hole in it.  Try it and find out.

-Alex

On 10/6/19, 4:49 PM, "Greg Dove"  wrote:

Hi Piotr, just a quick follow-up to let you know that was all good, I had
already tested the merge and conflict resolution myself and was ready to
step in and help with that if that was necessary, but you already did it
before I got a chance to send my email about that. :)

I have to say: well done for getting through the release process. I could
sense your frustration at times, and I know it must have seemed like it
took far too long, but I am sure you have made a huge difference for the
future in terms of that process.


also fyi, I had to use -Dgenerate.swf.swcs=true in my local maven build
today, and I was vaguely aware of discussions about this during release
prep.
But I wonder if this is necessary. Can't we just use the top level profiles
at the lower levels instead of creating new profiles? There's probably a
gap in my understanding of why this was necessary, but I would have
expected that we could simply use something like:


generate-swcs-for-swf


org.apache.royale.framework
Core
0.9.7-SNAPSHOT
swc
swf




in the framework modules, instead of:

  
  swf-dependencies
  
  
  generate.swf.swcs
  
  
  
  
  org.apache.royale.framework
  Core
  0.9.7-SNAPSHOT
  swc
  swf
  
  
  

(the above approach works locally for me just using the maven profile
itself, if I make the changes to all framework modules, but as I said I
could be missing something in relation to the issue that is being addressed)


On Sun, Oct 6, 2019 at 11:20 PM Greg Dove  wrote:

> Hi Piotr, I will check that in the morning local time... in about 8 hours.
>
> On Sun, 6 Oct 2019, 21:54 Piotr Zarzycki, 
> wrote:
>
>> Hi Greg,
>>
>> I run into merge conflict during merge release branch to develop into 
file
>> which you have changed lately. Could you please verify on develop if I
>> didn't remove anything, if I resolve conflict correctly. [1]
>>
>> [1]
>>
>> 
https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fapache%2Froyale-compiler%2Fblob%2Fdevelop%2Fcompiler-jx%2Fsrc%2Fmain%2Fjava%2Forg%2Fapache%2Froyale%2Fcompiler%2Finternal%2Fcodegen%2Fjs%2Fjx%2FMemberAccessEmitter.javadata=02%7C01%7Caharui%40adobe.com%7C8e7bf2601258466052f808d74ab7db82%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C637060025834669854sdata=AdnP68Opu%2BA8bOMc34%2FsNR2ZXT6gAHRsio9NX758278%3Dreserved=0
>>
>> Thanks,
>> Piotr
>>
>> śr., 2 paź 2019 o 11:06 Harbs  napisał(a):
>>
>> > OK.
>> >
>> > I’ll test memory with and without your changes and let you know the
>> > differences. :-)
>> >
>> > Harbs
>> >
>> > > On Oct 2, 2019, at 11:29 AM, Greg Dove  wrote:
>> > >
>> > > @harbs
>> > >
>> > > FYI in addition to some other stuff, I am close to pushing my updates
>> to
>> > > XML. This should be in the next hour or so.
>> > >
>> > > I kept the QName caching pretty close to how you had it, with only
>> some
>> > > minor changes.
>> > > I tried to do some extra memory optimization, and in theory it should
>> > > provide better results, but to be honest I don't have a good way to
>> > measure
>> > > this in the browser. I tried the Chrome performance.memory extensions
>> > but I
>> > > don't have much confidence in that given how much it varies between
>> > reloads
>> > > without changing anything else. The extra code changes I made were to
>> > make
>> > > the '_nodeKind' strings into String object references, so they only
>> refer
>> > > to a single reference to a string instead of multiple copies of
>> > primitives.
>> > > That change is isolated to a single commit so can easily be reversed
>> if
>> > > there is something not good about it... but all my local tests
>> continue
>> > to
>> > > pass. I will get the new tests into RoyaleUnit in the coming days.
>> > >
>> > >
>> > >
>> > >
>> > > On Thu, Sep 5, 2019 at 7:39 AM Greg Dove  wrote:
 

Re: Heads up on XML

2019-10-06 Thread Greg Dove
Hi Piotr, just a quick follow-up to let you know that was all good, I had
already tested the merge and conflict resolution myself and was ready to
step in and help with that if that was necessary, but you already did it
before I got a chance to send my email about that. :)

I have to say: well done for getting through the release process. I could
sense your frustration at times, and I know it must have seemed like it
took far too long, but I am sure you have made a huge difference for the
future in terms of that process.


also fyi, I had to use -Dgenerate.swf.swcs=true in my local maven build
today, and I was vaguely aware of discussions about this during release
prep.
But I wonder if this is necessary. Can't we just use the top level profiles
at the lower levels instead of creating new profiles? There's probably a
gap in my understanding of why this was necessary, but I would have
expected that we could simply use something like:


generate-swcs-for-swf


org.apache.royale.framework
Core
0.9.7-SNAPSHOT
swc
swf




in the framework modules, instead of:

  
  swf-dependencies
  
  
  generate.swf.swcs
  
  
  
  
  org.apache.royale.framework
  Core
  0.9.7-SNAPSHOT
  swc
  swf
  
  
  

(the above approach works locally for me just using the maven profile
itself, if I make the changes to all framework modules, but as I said I
could be missing something in relation to the issue that is being addressed)


On Sun, Oct 6, 2019 at 11:20 PM Greg Dove  wrote:

> Hi Piotr, I will check that in the morning local time... in about 8 hours.
>
> On Sun, 6 Oct 2019, 21:54 Piotr Zarzycki, 
> wrote:
>
>> Hi Greg,
>>
>> I run into merge conflict during merge release branch to develop into file
>> which you have changed lately. Could you please verify on develop if I
>> didn't remove anything, if I resolve conflict correctly. [1]
>>
>> [1]
>>
>> https://github.com/apache/royale-compiler/blob/develop/compiler-jx/src/main/java/org/apache/royale/compiler/internal/codegen/js/jx/MemberAccessEmitter.java
>>
>> Thanks,
>> Piotr
>>
>> śr., 2 paź 2019 o 11:06 Harbs  napisał(a):
>>
>> > OK.
>> >
>> > I’ll test memory with and without your changes and let you know the
>> > differences. :-)
>> >
>> > Harbs
>> >
>> > > On Oct 2, 2019, at 11:29 AM, Greg Dove  wrote:
>> > >
>> > > @harbs
>> > >
>> > > FYI in addition to some other stuff, I am close to pushing my updates
>> to
>> > > XML. This should be in the next hour or so.
>> > >
>> > > I kept the QName caching pretty close to how you had it, with only
>> some
>> > > minor changes.
>> > > I tried to do some extra memory optimization, and in theory it should
>> > > provide better results, but to be honest I don't have a good way to
>> > measure
>> > > this in the browser. I tried the Chrome performance.memory extensions
>> > but I
>> > > don't have much confidence in that given how much it varies between
>> > reloads
>> > > without changing anything else. The extra code changes I made were to
>> > make
>> > > the '_nodeKind' strings into String object references, so they only
>> refer
>> > > to a single reference to a string instead of multiple copies of
>> > primitives.
>> > > That change is isolated to a single commit so can easily be reversed
>> if
>> > > there is something not good about it... but all my local tests
>> continue
>> > to
>> > > pass. I will get the new tests into RoyaleUnit in the coming days.
>> > >
>> > >
>> > >
>> > >
>> > > On Thu, Sep 5, 2019 at 7:39 AM Greg Dove  wrote:
>> > >
>> > >> Yeah, I saw that ;) Don't worry, I am aware of it.
>> > >>
>> > >> My first goal is to make sure it works like it should, because that
>> > comes
>> > >> first, and then to optimize. I'll check the memory side of things and
>> > make
>> > >> sure it's at least the same as before. If you can point me to some
>> > >> publicly accessible large test cases that would be really helpful. I
>> > will
>> > >> work through that before I push anything.
>> > >>
>> > >> On Thu, Sep 5, 2019 at 7:26 AM Harbs  wrote:
>> > >>
>> > >>> Heads up:
>> > >>>
>> > >>> I did some (on first blush) odd things in XML related to QNames.
>> QNames
>> > >>> are pooled and many XML properties are not initialized by default.
>> The
>> > >>> reason I did this was it avoided many MB of memory waste for complex
>> > XML.
>> > >>> Please don’t mess that up.
>> > >>>
>> > >>> Thanks,
>> > >>> Harbs
>> > >>>
>> >  On Sep 4, 2019, at 1:02 PM, Greg Dove  wrote:
>> > 
>> >  This is particularly for Harbs and Yishay, as I think you are both
>> (or
>> > >>> both
>> >  have been) using XML quite a bit. I have quite a few  fixes coming.
>> > All
>> >  with tests that match on swf 

Re: Heads up on XML

2019-10-06 Thread Greg Dove
Hi Piotr, I will check that in the morning local time... in about 8 hours.

On Sun, 6 Oct 2019, 21:54 Piotr Zarzycki,  wrote:

> Hi Greg,
>
> I run into merge conflict during merge release branch to develop into file
> which you have changed lately. Could you please verify on develop if I
> didn't remove anything, if I resolve conflict correctly. [1]
>
> [1]
>
> https://github.com/apache/royale-compiler/blob/develop/compiler-jx/src/main/java/org/apache/royale/compiler/internal/codegen/js/jx/MemberAccessEmitter.java
>
> Thanks,
> Piotr
>
> śr., 2 paź 2019 o 11:06 Harbs  napisał(a):
>
> > OK.
> >
> > I’ll test memory with and without your changes and let you know the
> > differences. :-)
> >
> > Harbs
> >
> > > On Oct 2, 2019, at 11:29 AM, Greg Dove  wrote:
> > >
> > > @harbs
> > >
> > > FYI in addition to some other stuff, I am close to pushing my updates
> to
> > > XML. This should be in the next hour or so.
> > >
> > > I kept the QName caching pretty close to how you had it, with only some
> > > minor changes.
> > > I tried to do some extra memory optimization, and in theory it should
> > > provide better results, but to be honest I don't have a good way to
> > measure
> > > this in the browser. I tried the Chrome performance.memory extensions
> > but I
> > > don't have much confidence in that given how much it varies between
> > reloads
> > > without changing anything else. The extra code changes I made were to
> > make
> > > the '_nodeKind' strings into String object references, so they only
> refer
> > > to a single reference to a string instead of multiple copies of
> > primitives.
> > > That change is isolated to a single commit so can easily be reversed if
> > > there is something not good about it... but all my local tests continue
> > to
> > > pass. I will get the new tests into RoyaleUnit in the coming days.
> > >
> > >
> > >
> > >
> > > On Thu, Sep 5, 2019 at 7:39 AM Greg Dove  wrote:
> > >
> > >> Yeah, I saw that ;) Don't worry, I am aware of it.
> > >>
> > >> My first goal is to make sure it works like it should, because that
> > comes
> > >> first, and then to optimize. I'll check the memory side of things and
> > make
> > >> sure it's at least the same as before. If you can point me to some
> > >> publicly accessible large test cases that would be really helpful. I
> > will
> > >> work through that before I push anything.
> > >>
> > >> On Thu, Sep 5, 2019 at 7:26 AM Harbs  wrote:
> > >>
> > >>> Heads up:
> > >>>
> > >>> I did some (on first blush) odd things in XML related to QNames.
> QNames
> > >>> are pooled and many XML properties are not initialized by default.
> The
> > >>> reason I did this was it avoided many MB of memory waste for complex
> > XML.
> > >>> Please don’t mess that up.
> > >>>
> > >>> Thanks,
> > >>> Harbs
> > >>>
> >  On Sep 4, 2019, at 1:02 PM, Greg Dove  wrote:
> > 
> >  This is particularly for Harbs and Yishay, as I think you are both
> (or
> > >>> both
> >  have been) using XML quite a bit. I have quite a few  fixes coming.
> > All
> >  with tests that match on swf and js.
> > 
> >  I am currently working to demonstrate proof of concept to a
> > prospective
> >  client for migration of a Flex app. The app makes extensive use of
> e4x
> > >>> and
> >  uses a bunch of features that I expect had not received attention
> >  previously, because they were originally either not working with the
> >  codebase I am porting, or i think some even caused errors in the
> > >>> javascript
> >  output.
> > 
> >  So I have spent the last several days almost full time figuring
> things
> > >>> out
> >  and working on fixes, between the compiler and emulation classes.
> >  All the previous XML tests continue to pass, but I have many more
> unit
> >  tests and fixes lined up for the following:
> > 
> >  namespace directives
> >  default xml namespace
> >  use namespace (multiple)
> > 
> >  a number of fixes for xml filtering, including:
> >  -'this' resolves correctly in filters that include external
> references
> > >>> from
> >  the fitler expression to the 'this' scope
> >  -handles alternate ordering of comparisons between XML 'getters' and
> >  literals
> >  e.g. something.(name() = "cat")  or something.("cat" = name())
> (these
> > >>> are
> >  the same)
> >  -it (will) now handle XML e4x references in nested function calls
> > inside
> >  the filter, e.g. things like:
> >  e.g.
> >  var people:XML = 
> >    
> >    Bob
> >    32
> >    
> >    
> >    Joe
> >    46
> >    
> >    ;
> >  var findJoeByAge:Function = function (i:int):Boolean {
> >    return i > 40;
> >    };
> >  people.person.(findJoeByAge(parseInt(age))).name
> > 
> > 
> >  I 

Re: Heads up on XML

2019-10-06 Thread Piotr Zarzycki
Hi Greg,

I run into merge conflict during merge release branch to develop into file
which you have changed lately. Could you please verify on develop if I
didn't remove anything, if I resolve conflict correctly. [1]

[1]
https://github.com/apache/royale-compiler/blob/develop/compiler-jx/src/main/java/org/apache/royale/compiler/internal/codegen/js/jx/MemberAccessEmitter.java

Thanks,
Piotr

śr., 2 paź 2019 o 11:06 Harbs  napisał(a):

> OK.
>
> I’ll test memory with and without your changes and let you know the
> differences. :-)
>
> Harbs
>
> > On Oct 2, 2019, at 11:29 AM, Greg Dove  wrote:
> >
> > @harbs
> >
> > FYI in addition to some other stuff, I am close to pushing my updates to
> > XML. This should be in the next hour or so.
> >
> > I kept the QName caching pretty close to how you had it, with only some
> > minor changes.
> > I tried to do some extra memory optimization, and in theory it should
> > provide better results, but to be honest I don't have a good way to
> measure
> > this in the browser. I tried the Chrome performance.memory extensions
> but I
> > don't have much confidence in that given how much it varies between
> reloads
> > without changing anything else. The extra code changes I made were to
> make
> > the '_nodeKind' strings into String object references, so they only refer
> > to a single reference to a string instead of multiple copies of
> primitives.
> > That change is isolated to a single commit so can easily be reversed if
> > there is something not good about it... but all my local tests continue
> to
> > pass. I will get the new tests into RoyaleUnit in the coming days.
> >
> >
> >
> >
> > On Thu, Sep 5, 2019 at 7:39 AM Greg Dove  wrote:
> >
> >> Yeah, I saw that ;) Don't worry, I am aware of it.
> >>
> >> My first goal is to make sure it works like it should, because that
> comes
> >> first, and then to optimize. I'll check the memory side of things and
> make
> >> sure it's at least the same as before. If you can point me to some
> >> publicly accessible large test cases that would be really helpful. I
> will
> >> work through that before I push anything.
> >>
> >> On Thu, Sep 5, 2019 at 7:26 AM Harbs  wrote:
> >>
> >>> Heads up:
> >>>
> >>> I did some (on first blush) odd things in XML related to QNames. QNames
> >>> are pooled and many XML properties are not initialized by default. The
> >>> reason I did this was it avoided many MB of memory waste for complex
> XML.
> >>> Please don’t mess that up.
> >>>
> >>> Thanks,
> >>> Harbs
> >>>
>  On Sep 4, 2019, at 1:02 PM, Greg Dove  wrote:
> 
>  This is particularly for Harbs and Yishay, as I think you are both (or
> >>> both
>  have been) using XML quite a bit. I have quite a few  fixes coming.
> All
>  with tests that match on swf and js.
> 
>  I am currently working to demonstrate proof of concept to a
> prospective
>  client for migration of a Flex app. The app makes extensive use of e4x
> >>> and
>  uses a bunch of features that I expect had not received attention
>  previously, because they were originally either not working with the
>  codebase I am porting, or i think some even caused errors in the
> >>> javascript
>  output.
> 
>  So I have spent the last several days almost full time figuring things
> >>> out
>  and working on fixes, between the compiler and emulation classes.
>  All the previous XML tests continue to pass, but I have many more unit
>  tests and fixes lined up for the following:
> 
>  namespace directives
>  default xml namespace
>  use namespace (multiple)
> 
>  a number of fixes for xml filtering, including:
>  -'this' resolves correctly in filters that include external references
> >>> from
>  the fitler expression to the 'this' scope
>  -handles alternate ordering of comparisons between XML 'getters' and
>  literals
>  e.g. something.(name() = "cat")  or something.("cat" = name()) (these
> >>> are
>  the same)
>  -it (will) now handle XML e4x references in nested function calls
> inside
>  the filter, e.g. things like:
>  e.g.
>  var people:XML = 
>    
>    Bob
>    32
>    
>    
>    Joe
>    46
>    
>    ;
>  var findJoeByAge:Function = function (i:int):Boolean {
>    return i > 40;
>    };
>  people.person.(findJoeByAge(parseInt(age))).name
> 
> 
>  I have lots more granular tests in QName, Namespace, and XML with
> >>> tuning to
>  improve reliability.
>  toXMLString XML node output also matches flash more correctly in what
> I
>  have coming.
> 
>  One thing that I am trying to figure out, which I would appreciate
> >>> input on
>  if someone has an answer:
>  For the example:
> 
>  var feed:XML = new XML(
>   

Re: Heads up on XML

2019-10-02 Thread Harbs
OK.

I’ll test memory with and without your changes and let you know the 
differences. :-)

Harbs

> On Oct 2, 2019, at 11:29 AM, Greg Dove  wrote:
> 
> @harbs
> 
> FYI in addition to some other stuff, I am close to pushing my updates to
> XML. This should be in the next hour or so.
> 
> I kept the QName caching pretty close to how you had it, with only some
> minor changes.
> I tried to do some extra memory optimization, and in theory it should
> provide better results, but to be honest I don't have a good way to measure
> this in the browser. I tried the Chrome performance.memory extensions but I
> don't have much confidence in that given how much it varies between reloads
> without changing anything else. The extra code changes I made were to make
> the '_nodeKind' strings into String object references, so they only refer
> to a single reference to a string instead of multiple copies of primitives.
> That change is isolated to a single commit so can easily be reversed if
> there is something not good about it... but all my local tests continue to
> pass. I will get the new tests into RoyaleUnit in the coming days.
> 
> 
> 
> 
> On Thu, Sep 5, 2019 at 7:39 AM Greg Dove  wrote:
> 
>> Yeah, I saw that ;) Don't worry, I am aware of it.
>> 
>> My first goal is to make sure it works like it should, because that comes
>> first, and then to optimize. I'll check the memory side of things and make
>> sure it's at least the same as before. If you can point me to some
>> publicly accessible large test cases that would be really helpful. I will
>> work through that before I push anything.
>> 
>> On Thu, Sep 5, 2019 at 7:26 AM Harbs  wrote:
>> 
>>> Heads up:
>>> 
>>> I did some (on first blush) odd things in XML related to QNames. QNames
>>> are pooled and many XML properties are not initialized by default. The
>>> reason I did this was it avoided many MB of memory waste for complex XML.
>>> Please don’t mess that up.
>>> 
>>> Thanks,
>>> Harbs
>>> 
 On Sep 4, 2019, at 1:02 PM, Greg Dove  wrote:
 
 This is particularly for Harbs and Yishay, as I think you are both (or
>>> both
 have been) using XML quite a bit. I have quite a few  fixes coming. All
 with tests that match on swf and js.
 
 I am currently working to demonstrate proof of concept to a prospective
 client for migration of a Flex app. The app makes extensive use of e4x
>>> and
 uses a bunch of features that I expect had not received attention
 previously, because they were originally either not working with the
 codebase I am porting, or i think some even caused errors in the
>>> javascript
 output.
 
 So I have spent the last several days almost full time figuring things
>>> out
 and working on fixes, between the compiler and emulation classes.
 All the previous XML tests continue to pass, but I have many more unit
 tests and fixes lined up for the following:
 
 namespace directives
 default xml namespace
 use namespace (multiple)
 
 a number of fixes for xml filtering, including:
 -'this' resolves correctly in filters that include external references
>>> from
 the fitler expression to the 'this' scope
 -handles alternate ordering of comparisons between XML 'getters' and
 literals
 e.g. something.(name() = "cat")  or something.("cat" = name()) (these
>>> are
 the same)
 -it (will) now handle XML e4x references in nested function calls inside
 the filter, e.g. things like:
 e.g.
 var people:XML = 
   
   Bob
   32
   
   
   Joe
   46
   
   ;
 var findJoeByAge:Function = function (i:int):Boolean {
   return i > 40;
   };
 people.person.(findJoeByAge(parseInt(age))).name
 
 
 I have lots more granular tests in QName, Namespace, and XML with
>>> tuning to
 improve reliability.
 toXMLString XML node output also matches flash more correctly in what I
 have coming.
 
 One thing that I am trying to figure out, which I would appreciate
>>> input on
 if someone has an answer:
 For the example:
 
 var feed:XML = new XML(
   'http://www.w3.org/2005/Atom;
 xmlns:m="nothing">\n' +
   '  >>> href="blah/12321/domain/"/>\n' +
   '\n');
 var atomSpace:Namespace = new Namespace('http://www.w3.org/2005/Atom');
 
 Can anyone explain why this (in SWF, as a reference implementation):
 trace(feed.atomSpace::link.length())
 trace(feed.atomSpace::link.toXMLString())
 //output:
 0
 {empty string}
 is different to:
 trace(feed.child(new QName(atomSpace,'link')).length())
 trace(feed.child(new QName(atomSpace,'link')).toXMLString())
 //output:
 1
 http://www.w3.org/2005/Atom; xmlns:m="nothing"/>

Re: Heads up on XML

2019-10-02 Thread Greg Dove
@harbs

FYI in addition to some other stuff, I am close to pushing my updates to
XML. This should be in the next hour or so.

I kept the QName caching pretty close to how you had it, with only some
minor changes.
I tried to do some extra memory optimization, and in theory it should
provide better results, but to be honest I don't have a good way to measure
this in the browser. I tried the Chrome performance.memory extensions but I
don't have much confidence in that given how much it varies between reloads
without changing anything else. The extra code changes I made were to make
the '_nodeKind' strings into String object references, so they only refer
to a single reference to a string instead of multiple copies of primitives.
That change is isolated to a single commit so can easily be reversed if
there is something not good about it... but all my local tests continue to
pass. I will get the new tests into RoyaleUnit in the coming days.




On Thu, Sep 5, 2019 at 7:39 AM Greg Dove  wrote:

> Yeah, I saw that ;) Don't worry, I am aware of it.
>
> My first goal is to make sure it works like it should, because that comes
> first, and then to optimize. I'll check the memory side of things and make
> sure it's at least the same as before. If you can point me to some
> publicly accessible large test cases that would be really helpful. I will
> work through that before I push anything.
>
> On Thu, Sep 5, 2019 at 7:26 AM Harbs  wrote:
>
>> Heads up:
>>
>> I did some (on first blush) odd things in XML related to QNames. QNames
>> are pooled and many XML properties are not initialized by default. The
>> reason I did this was it avoided many MB of memory waste for complex XML.
>> Please don’t mess that up.
>>
>> Thanks,
>> Harbs
>>
>> > On Sep 4, 2019, at 1:02 PM, Greg Dove  wrote:
>> >
>> > This is particularly for Harbs and Yishay, as I think you are both (or
>> both
>> > have been) using XML quite a bit. I have quite a few  fixes coming. All
>> > with tests that match on swf and js.
>> >
>> > I am currently working to demonstrate proof of concept to a prospective
>> > client for migration of a Flex app. The app makes extensive use of e4x
>> and
>> > uses a bunch of features that I expect had not received attention
>> > previously, because they were originally either not working with the
>> > codebase I am porting, or i think some even caused errors in the
>> javascript
>> > output.
>> >
>> > So I have spent the last several days almost full time figuring things
>> out
>> > and working on fixes, between the compiler and emulation classes.
>> > All the previous XML tests continue to pass, but I have many more unit
>> > tests and fixes lined up for the following:
>> >
>> > namespace directives
>> > default xml namespace
>> > use namespace (multiple)
>> >
>> > a number of fixes for xml filtering, including:
>> > -'this' resolves correctly in filters that include external references
>> from
>> > the fitler expression to the 'this' scope
>> > -handles alternate ordering of comparisons between XML 'getters' and
>> > literals
>> > e.g. something.(name() = "cat")  or something.("cat" = name()) (these
>> are
>> > the same)
>> > -it (will) now handle XML e4x references in nested function calls inside
>> > the filter, e.g. things like:
>> > e.g.
>> > var people:XML = 
>> >
>> >Bob
>> >32
>> >
>> >
>> >Joe
>> >46
>> >
>> >;
>> > var findJoeByAge:Function = function (i:int):Boolean {
>> >return i > 40;
>> >};
>> > people.person.(findJoeByAge(parseInt(age))).name
>> >
>> >
>> > I have lots more granular tests in QName, Namespace, and XML with
>> tuning to
>> > improve reliability.
>> > toXMLString XML node output also matches flash more correctly in what I
>> > have coming.
>> >
>> > One thing that I am trying to figure out, which I would appreciate
>> input on
>> > if someone has an answer:
>> > For the example:
>> >
>> > var feed:XML = new XML(
>> >'http://www.w3.org/2005/Atom;
>> > xmlns:m="nothing">\n' +
>> >'  > > href="blah/12321/domain/"/>\n' +
>> >'\n');
>> > var atomSpace:Namespace = new Namespace('http://www.w3.org/2005/Atom');
>> >
>> > Can anyone explain why this (in SWF, as a reference implementation):
>> > trace(feed.atomSpace::link.length())
>> > trace(feed.atomSpace::link.toXMLString())
>> > //output:
>> > 0
>> > {empty string}
>> > is different to:
>> > trace(feed.child(new QName(atomSpace,'link')).length())
>> > trace(feed.child(new QName(atomSpace,'link')).toXMLString())
>> > //output:
>> > 1
>> > http://www.w3.org/2005/Atom; xmlns:m="nothing"/>
>> >
>> > I had assumed the above cases would be the same, but the second one is
>> > behaving as if it has the default namespace included with the specified
>> > namespace in the QName matching (it does correctly match the 

Re: Heads up on XML

2019-09-10 Thread Alex Harui
No worries.  I spent today on release stuff as well.

On 9/9/19, 11:01 PM, "Greg Dove"  wrote:

And... I'm still going. I keep finding things that need addressing. I am in
attributes now.

Anyway, I haven't gotten to the memory testing yet and I need to focus
tomorrow on showing my client progress, so I'm sorry but this code will be
another couple of days.

If you do look into the as2 XMLDocument stuff and find issues with
emulating that in Royale XML, feel free to ask me about anything that might
be changing (to match what swf does). Otherwise it might be easier to wait
and see if you really need some of those fixes. Once again, sorry for the
delay. I prefer to get what I get in 'right' rather than have only some of
it right.




On Mon, Sep 9, 2019 at 5:33 PM Alex Harui  wrote:

> No problem.  I've spent today trying to fix the build in the Ant source
> package.
>
> -Alex
>
> On 9/8/19, 10:03 PM, "Greg Dove"  wrote:
>
> Not quite there yet with the final changes, I'm afraid. I'm getting
> close... should be tomorrow my time.
>
>
> On Sun, Sep 8, 2019 at 7:32 AM Greg Dove  wrote:
>
> >
> > Yeah thanks Josh, Alex made a suggestion for that option too, it was
> the
> > one I thought I would try first. I hope to get there later today, so
> I will
> > see if I can figure that out.
> >
> >
> > On Sun, Sep 8, 2019 at 7:20 AM Josh Tynjala <
> joshtynj...@bowlerhat.dev>
> > wrote:
> >
> >> I think the DITA files generated by asdoc are pretty big too, so
> they're
> >> probably really useful for your testing.
> >>
> >> - Josh
> >>
> >> On Friday, September 6, 2019, Greg Dove 
> wrote:
> >> > 'I think that SWFDump will generate valid XML and there is a way
> to get
> >> > DITA files from Flex ASDoc that are valid XML.'
> >> > Sounds like a good idea for some large xml files. I did not use
> that
> >> yet,
> >> > so will take a look and see if I can figure it out. Thanks!
> >> >
> >> >
> >> > On Sat, Sep 7, 2019 at 12:30 PM Greg Dove 
> wrote:
> >> >
> >> >>
> >> >> Just to clarify I was referring to this stuff here:
> >> >>
> >> >>
> >> >>
> >>
> >>
> 
https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fapache%2Froyale-asjs%2Fblob%2F8ab1d813ee2f72bab957f9485e56ad89dcf6e1ab%2Fframeworks%2Fprojects%2FMXRoyale%2Fsrc%2Fmain%2Froyale%2Fmx%2Frpc%2Fhttp%2FAbstractOperation.as%23L1038data=02%7C01%7Caharui%40adobe.com%7C3438477ce0cc42e9154208d735b4515c%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C1%7C637036920920719112sdata=jToiV1bfSAp4usWQWHomy%2Bc%2F1Dj4rSUDXDtoVNeoluI%3Dreserved=0
> >> >>
> >> >>
> >> >> with '//old XML style'
> >> >>
> >> >>
> >> >>
> >> >>
> >> >> On Sat, Sep 7, 2019 at 12:24 PM Alex Harui
> 
> >> >> wrote:
> >> >>
> >> >>> I haven't looked at what XML is used/supported by MX
> HTTPService.  It
> >> >>> looks like WebService does use MX HTTPService.  I am currently
> >> migrating
> >> >>> other things that WebService needs (XMLEncoder/Decoder,
> >> >>> SOAPEncoder/Decoder).  These are new files that aren't in the
> repo
> >> yet,
> >> so
> >> >>> HTTPService couldn't be relying on them or else their use is
> commented
> >> >>> out.   The goal is to change as little as possible to get it to
> >> compile
> >> and
> >> >>> then see if it runs.  I have no idea yet if the XML
> improvements you
> >> are
> >> >>> working on are going to be impactful on what I'm doing or not.
> >> >>>
> >> >>> BTW, I could be wrong, but I think that SWFDump will generate
> valid
> >> XML
> >> >>> and there is a way to get DITA files from Flex ASDoc that are
> valid
> >> XML.
> >> >>>
> >> >>> Thanks for the heads up,
> >> >>> -Alex
> >> >>>
> >> >>> On 9/6/19, 5:14 PM, "Greg Dove"  wrote:
> >> >>>
> >> >>> Actually I know you are looking into the WSDL stuff
> maybe this
> >> is
> >> >>> going
> >> >>> to be important for that (not sure)?
> >> >>> My goal is to get the XML stuff tidied up and ready to push
> by end
> >> of
> >> >>> day
> >> >>> tomorrow, worst case the following morning, local time
> (UTC+12). I
> >> >>> also
> >> >>> need to find some big XML test cases to check the memory
> side of
> >> >>> things.
> >> >>> FYI there is also 

Re: Heads up on XML

2019-09-10 Thread Greg Dove
And... I'm still going. I keep finding things that need addressing. I am in
attributes now.

Anyway, I haven't gotten to the memory testing yet and I need to focus
tomorrow on showing my client progress, so I'm sorry but this code will be
another couple of days.

If you do look into the as2 XMLDocument stuff and find issues with
emulating that in Royale XML, feel free to ask me about anything that might
be changing (to match what swf does). Otherwise it might be easier to wait
and see if you really need some of those fixes. Once again, sorry for the
delay. I prefer to get what I get in 'right' rather than have only some of
it right.




On Mon, Sep 9, 2019 at 5:33 PM Alex Harui  wrote:

> No problem.  I've spent today trying to fix the build in the Ant source
> package.
>
> -Alex
>
> On 9/8/19, 10:03 PM, "Greg Dove"  wrote:
>
> Not quite there yet with the final changes, I'm afraid. I'm getting
> close... should be tomorrow my time.
>
>
> On Sun, Sep 8, 2019 at 7:32 AM Greg Dove  wrote:
>
> >
> > Yeah thanks Josh, Alex made a suggestion for that option too, it was
> the
> > one I thought I would try first. I hope to get there later today, so
> I will
> > see if I can figure that out.
> >
> >
> > On Sun, Sep 8, 2019 at 7:20 AM Josh Tynjala <
> joshtynj...@bowlerhat.dev>
> > wrote:
> >
> >> I think the DITA files generated by asdoc are pretty big too, so
> they're
> >> probably really useful for your testing.
> >>
> >> - Josh
> >>
> >> On Friday, September 6, 2019, Greg Dove 
> wrote:
> >> > 'I think that SWFDump will generate valid XML and there is a way
> to get
> >> > DITA files from Flex ASDoc that are valid XML.'
> >> > Sounds like a good idea for some large xml files. I did not use
> that
> >> yet,
> >> > so will take a look and see if I can figure it out. Thanks!
> >> >
> >> >
> >> > On Sat, Sep 7, 2019 at 12:30 PM Greg Dove 
> wrote:
> >> >
> >> >>
> >> >> Just to clarify I was referring to this stuff here:
> >> >>
> >> >>
> >> >>
> >>
> >>
> https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fapache%2Froyale-asjs%2Fblob%2F8ab1d813ee2f72bab957f9485e56ad89dcf6e1ab%2Fframeworks%2Fprojects%2FMXRoyale%2Fsrc%2Fmain%2Froyale%2Fmx%2Frpc%2Fhttp%2FAbstractOperation.as%23L1038data=02%7C01%7Caharui%40adobe.com%7C2ddad385aee2449833fd08d734e2fe46%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C1%7C637036021948216407sdata=7V0k6g15%2FwI2JY7v7E32iLjX6lIUSkOs9%2BpRDfhOrGI%3Dreserved=0
> >> >>
> >> >>
> >> >> with '//old XML style'
> >> >>
> >> >>
> >> >>
> >> >>
> >> >> On Sat, Sep 7, 2019 at 12:24 PM Alex Harui
> 
> >> >> wrote:
> >> >>
> >> >>> I haven't looked at what XML is used/supported by MX
> HTTPService.  It
> >> >>> looks like WebService does use MX HTTPService.  I am currently
> >> migrating
> >> >>> other things that WebService needs (XMLEncoder/Decoder,
> >> >>> SOAPEncoder/Decoder).  These are new files that aren't in the
> repo
> >> yet,
> >> so
> >> >>> HTTPService couldn't be relying on them or else their use is
> commented
> >> >>> out.   The goal is to change as little as possible to get it to
> >> compile
> >> and
> >> >>> then see if it runs.  I have no idea yet if the XML
> improvements you
> >> are
> >> >>> working on are going to be impactful on what I'm doing or not.
> >> >>>
> >> >>> BTW, I could be wrong, but I think that SWFDump will generate
> valid
> >> XML
> >> >>> and there is a way to get DITA files from Flex ASDoc that are
> valid
> >> XML.
> >> >>>
> >> >>> Thanks for the heads up,
> >> >>> -Alex
> >> >>>
> >> >>> On 9/6/19, 5:14 PM, "Greg Dove"  wrote:
> >> >>>
> >> >>> Actually I know you are looking into the WSDL stuff
> maybe this
> >> is
> >> >>> going
> >> >>> to be important for that (not sure)?
> >> >>> My goal is to get the XML stuff tidied up and ready to push
> by end
> >> of
> >> >>> day
> >> >>> tomorrow, worst case the following morning, local time
> (UTC+12). I
> >> >>> also
> >> >>> need to find some big XML test cases to check the memory
> side of
> >> >>> things.
> >> >>> FYI there is also some XMLDocument stuff missing (commented
> out)
> >> from
> >> >>> some
> >> >>> of the MX HttpService code, which came up in a recent
> issue. I
> >> don't
> >> >>> know
> >> >>> if it shares any of the code from the WSDL stuff you are
> looking
> >> at
> >> or
> >> >>> not...
> >> >>> If it does then I don't want to double up on things, but
> >> otherwise I
> >> >>> will
> >> >>> try to look at that on my Monday.
> >> >>>
> >> >>>
> >> >>>
> >> >>> On Sat, Sep 7, 2019 at 12:02 PM Greg Dove <
> greg.d...@gmail.com>
> 

Re: Heads up on XML

2019-09-08 Thread Alex Harui
No problem.  I've spent today trying to fix the build in the Ant source 
package.  

-Alex

On 9/8/19, 10:03 PM, "Greg Dove"  wrote:

Not quite there yet with the final changes, I'm afraid. I'm getting
close... should be tomorrow my time.


On Sun, Sep 8, 2019 at 7:32 AM Greg Dove  wrote:

>
> Yeah thanks Josh, Alex made a suggestion for that option too, it was the
> one I thought I would try first. I hope to get there later today, so I 
will
> see if I can figure that out.
>
>
> On Sun, Sep 8, 2019 at 7:20 AM Josh Tynjala 
> wrote:
>
>> I think the DITA files generated by asdoc are pretty big too, so they're
>> probably really useful for your testing.
>>
>> - Josh
>>
>> On Friday, September 6, 2019, Greg Dove  wrote:
>> > 'I think that SWFDump will generate valid XML and there is a way to get
>> > DITA files from Flex ASDoc that are valid XML.'
>> > Sounds like a good idea for some large xml files. I did not use that
>> yet,
>> > so will take a look and see if I can figure it out. Thanks!
>> >
>> >
>> > On Sat, Sep 7, 2019 at 12:30 PM Greg Dove  wrote:
>> >
>> >>
>> >> Just to clarify I was referring to this stuff here:
>> >>
>> >>
>> >>
>>
>> 
https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fapache%2Froyale-asjs%2Fblob%2F8ab1d813ee2f72bab957f9485e56ad89dcf6e1ab%2Fframeworks%2Fprojects%2FMXRoyale%2Fsrc%2Fmain%2Froyale%2Fmx%2Frpc%2Fhttp%2FAbstractOperation.as%23L1038data=02%7C01%7Caharui%40adobe.com%7C2ddad385aee2449833fd08d734e2fe46%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C1%7C637036021948216407sdata=7V0k6g15%2FwI2JY7v7E32iLjX6lIUSkOs9%2BpRDfhOrGI%3Dreserved=0
>> >>
>> >>
>> >> with '//old XML style'
>> >>
>> >>
>> >>
>> >>
>> >> On Sat, Sep 7, 2019 at 12:24 PM Alex Harui 
>> >> wrote:
>> >>
>> >>> I haven't looked at what XML is used/supported by MX HTTPService.  It
>> >>> looks like WebService does use MX HTTPService.  I am currently
>> migrating
>> >>> other things that WebService needs (XMLEncoder/Decoder,
>> >>> SOAPEncoder/Decoder).  These are new files that aren't in the repo
>> yet,
>> so
>> >>> HTTPService couldn't be relying on them or else their use is 
commented
>> >>> out.   The goal is to change as little as possible to get it to
>> compile
>> and
>> >>> then see if it runs.  I have no idea yet if the XML improvements you
>> are
>> >>> working on are going to be impactful on what I'm doing or not.
>> >>>
>> >>> BTW, I could be wrong, but I think that SWFDump will generate valid
>> XML
>> >>> and there is a way to get DITA files from Flex ASDoc that are valid
>> XML.
>> >>>
>> >>> Thanks for the heads up,
>> >>> -Alex
>> >>>
>> >>> On 9/6/19, 5:14 PM, "Greg Dove"  wrote:
>> >>>
>> >>> Actually I know you are looking into the WSDL stuff maybe 
this
>> is
>> >>> going
>> >>> to be important for that (not sure)?
>> >>> My goal is to get the XML stuff tidied up and ready to push by 
end
>> of
>> >>> day
>> >>> tomorrow, worst case the following morning, local time (UTC+12). 
I
>> >>> also
>> >>> need to find some big XML test cases to check the memory side of
>> >>> things.
>> >>> FYI there is also some XMLDocument stuff missing (commented out)
>> from
>> >>> some
>> >>> of the MX HttpService code, which came up in a recent issue. I
>> don't
>> >>> know
>> >>> if it shares any of the code from the WSDL stuff you are looking
>> at
>> or
>> >>> not...
>> >>> If it does then I don't want to double up on things, but
>> otherwise I
>> >>> will
>> >>> try to look at that on my Monday.
>> >>>
>> >>>
>> >>>
>> >>> On Sat, Sep 7, 2019 at 12:02 PM Greg Dove 
>> >>> wrote:
>> >>>
>> >>> > Thanks for checking that.
>> >>> >
>> >>> > child is specified in 13.4.4.6 and essentially calls [[Get]]
>> >>> > (After cycling through this kind of thing a few times, I found
>> the
>> >>> easiest
>> >>> > way to find methods is to search in the spec for 'e.mehodName'
>> >>> which gets
>> >>> > you XML.prototype.methodName)
>> >>> >
>> >>> > and [[Get]] is specified in 9.1.1.1
>> >>> >
>> >>> > So I assume it is a bug. As discussed I think it is good to
>> match
>> >>> the
>> >>> > behavior. If we can verify 100% it is off spec, we could add
>> >>> something as a
>> >>> > define to avoid the 'fix' for people who want to be on-spec.
>> >>> >
>> >>> >
>> >>> >
>> >>> >
>> >>> >
>> >>> > On Sat, Sep 7, 2019 at 11:30 AM Alex Harui
>> > >>> >
>> >>> > wrote:
 

Re: Heads up on XML

2019-09-08 Thread Greg Dove
Not quite there yet with the final changes, I'm afraid. I'm getting
close... should be tomorrow my time.


On Sun, Sep 8, 2019 at 7:32 AM Greg Dove  wrote:

>
> Yeah thanks Josh, Alex made a suggestion for that option too, it was the
> one I thought I would try first. I hope to get there later today, so I will
> see if I can figure that out.
>
>
> On Sun, Sep 8, 2019 at 7:20 AM Josh Tynjala 
> wrote:
>
>> I think the DITA files generated by asdoc are pretty big too, so they're
>> probably really useful for your testing.
>>
>> - Josh
>>
>> On Friday, September 6, 2019, Greg Dove  wrote:
>> > 'I think that SWFDump will generate valid XML and there is a way to get
>> > DITA files from Flex ASDoc that are valid XML.'
>> > Sounds like a good idea for some large xml files. I did not use that
>> yet,
>> > so will take a look and see if I can figure it out. Thanks!
>> >
>> >
>> > On Sat, Sep 7, 2019 at 12:30 PM Greg Dove  wrote:
>> >
>> >>
>> >> Just to clarify I was referring to this stuff here:
>> >>
>> >>
>> >>
>>
>> https://github.com/apache/royale-asjs/blob/8ab1d813ee2f72bab957f9485e56ad89dcf6e1ab/frameworks/projects/MXRoyale/src/main/royale/mx/rpc/http/AbstractOperation.as#L1038
>> >>
>> >>
>> >> with '//old XML style'
>> >>
>> >>
>> >>
>> >>
>> >> On Sat, Sep 7, 2019 at 12:24 PM Alex Harui 
>> >> wrote:
>> >>
>> >>> I haven't looked at what XML is used/supported by MX HTTPService.  It
>> >>> looks like WebService does use MX HTTPService.  I am currently
>> migrating
>> >>> other things that WebService needs (XMLEncoder/Decoder,
>> >>> SOAPEncoder/Decoder).  These are new files that aren't in the repo
>> yet,
>> so
>> >>> HTTPService couldn't be relying on them or else their use is commented
>> >>> out.   The goal is to change as little as possible to get it to
>> compile
>> and
>> >>> then see if it runs.  I have no idea yet if the XML improvements you
>> are
>> >>> working on are going to be impactful on what I'm doing or not.
>> >>>
>> >>> BTW, I could be wrong, but I think that SWFDump will generate valid
>> XML
>> >>> and there is a way to get DITA files from Flex ASDoc that are valid
>> XML.
>> >>>
>> >>> Thanks for the heads up,
>> >>> -Alex
>> >>>
>> >>> On 9/6/19, 5:14 PM, "Greg Dove"  wrote:
>> >>>
>> >>> Actually I know you are looking into the WSDL stuff maybe this
>> is
>> >>> going
>> >>> to be important for that (not sure)?
>> >>> My goal is to get the XML stuff tidied up and ready to push by end
>> of
>> >>> day
>> >>> tomorrow, worst case the following morning, local time (UTC+12). I
>> >>> also
>> >>> need to find some big XML test cases to check the memory side of
>> >>> things.
>> >>> FYI there is also some XMLDocument stuff missing (commented out)
>> from
>> >>> some
>> >>> of the MX HttpService code, which came up in a recent issue. I
>> don't
>> >>> know
>> >>> if it shares any of the code from the WSDL stuff you are looking
>> at
>> or
>> >>> not...
>> >>> If it does then I don't want to double up on things, but
>> otherwise I
>> >>> will
>> >>> try to look at that on my Monday.
>> >>>
>> >>>
>> >>>
>> >>> On Sat, Sep 7, 2019 at 12:02 PM Greg Dove 
>> >>> wrote:
>> >>>
>> >>> > Thanks for checking that.
>> >>> >
>> >>> > child is specified in 13.4.4.6 and essentially calls [[Get]]
>> >>> > (After cycling through this kind of thing a few times, I found
>> the
>> >>> easiest
>> >>> > way to find methods is to search in the spec for 'e.mehodName'
>> >>> which gets
>> >>> > you XML.prototype.methodName)
>> >>> >
>> >>> > and [[Get]] is specified in 9.1.1.1
>> >>> >
>> >>> > So I assume it is a bug. As discussed I think it is good to
>> match
>> >>> the
>> >>> > behavior. If we can verify 100% it is off spec, we could add
>> >>> something as a
>> >>> > define to avoid the 'fix' for people who want to be on-spec.
>> >>> >
>> >>> >
>> >>> >
>> >>> >
>> >>> >
>> >>> > On Sat, Sep 7, 2019 at 11:30 AM Alex Harui
>> > >>> >
>> >>> > wrote:
>> >>> >
>> >>> >> FWIW, I went and looked at the ABC.
>> >>> >>
>> >>> >> The first syntax sets up a getProperty just like any other
>> property
>> >>> >> fetch.  The second (as expected) calls "child()".  I've looked
>> at
>> >>> the E4X
>> >>> >> spec a couple of times now and cannot see where the behavior we
>> >>> are seeing
>> >>> >> in child() is specified so I am going to assume it is a bug,
>> and
>> >>> that we
>> >>> >> just have to live with it.
>> >>> >>
>> >>> >> I expect that getProperty does not call child().  I haven't
>> looked
>> >>> at the
>> >>> >> AVM code to see what getProperty does for XML.
>> >>> >>
>> >>> >> HTH,
>> >>> >> -Alex
>> >>> >>
>> >>> >> On 9/5/19, 12:05 PM, "Greg Dove"  wrote:
>> >>> >>
>> >>> >> Oh that is a good find! And perfect timing :)
>> >>> >> Thanks Alex, I am pretty sure that answers the question!

Re: Heads up on XML

2019-09-07 Thread Greg Dove
Yeah thanks Josh, Alex made a suggestion for that option too, it was the
one I thought I would try first. I hope to get there later today, so I will
see if I can figure that out.


On Sun, Sep 8, 2019 at 7:20 AM Josh Tynjala 
wrote:

> I think the DITA files generated by asdoc are pretty big too, so they're
> probably really useful for your testing.
>
> - Josh
>
> On Friday, September 6, 2019, Greg Dove  wrote:
> > 'I think that SWFDump will generate valid XML and there is a way to get
> > DITA files from Flex ASDoc that are valid XML.'
> > Sounds like a good idea for some large xml files. I did not use that yet,
> > so will take a look and see if I can figure it out. Thanks!
> >
> >
> > On Sat, Sep 7, 2019 at 12:30 PM Greg Dove  wrote:
> >
> >>
> >> Just to clarify I was referring to this stuff here:
> >>
> >>
> >>
>
> https://github.com/apache/royale-asjs/blob/8ab1d813ee2f72bab957f9485e56ad89dcf6e1ab/frameworks/projects/MXRoyale/src/main/royale/mx/rpc/http/AbstractOperation.as#L1038
> >>
> >>
> >> with '//old XML style'
> >>
> >>
> >>
> >>
> >> On Sat, Sep 7, 2019 at 12:24 PM Alex Harui 
> >> wrote:
> >>
> >>> I haven't looked at what XML is used/supported by MX HTTPService.  It
> >>> looks like WebService does use MX HTTPService.  I am currently
> migrating
> >>> other things that WebService needs (XMLEncoder/Decoder,
> >>> SOAPEncoder/Decoder).  These are new files that aren't in the repo yet,
> so
> >>> HTTPService couldn't be relying on them or else their use is commented
> >>> out.   The goal is to change as little as possible to get it to compile
> and
> >>> then see if it runs.  I have no idea yet if the XML improvements you
> are
> >>> working on are going to be impactful on what I'm doing or not.
> >>>
> >>> BTW, I could be wrong, but I think that SWFDump will generate valid XML
> >>> and there is a way to get DITA files from Flex ASDoc that are valid
> XML.
> >>>
> >>> Thanks for the heads up,
> >>> -Alex
> >>>
> >>> On 9/6/19, 5:14 PM, "Greg Dove"  wrote:
> >>>
> >>> Actually I know you are looking into the WSDL stuff maybe this
> is
> >>> going
> >>> to be important for that (not sure)?
> >>> My goal is to get the XML stuff tidied up and ready to push by end
> of
> >>> day
> >>> tomorrow, worst case the following morning, local time (UTC+12). I
> >>> also
> >>> need to find some big XML test cases to check the memory side of
> >>> things.
> >>> FYI there is also some XMLDocument stuff missing (commented out)
> from
> >>> some
> >>> of the MX HttpService code, which came up in a recent issue. I
> don't
> >>> know
> >>> if it shares any of the code from the WSDL stuff you are looking at
> or
> >>> not...
> >>> If it does then I don't want to double up on things, but otherwise
> I
> >>> will
> >>> try to look at that on my Monday.
> >>>
> >>>
> >>>
> >>> On Sat, Sep 7, 2019 at 12:02 PM Greg Dove 
> >>> wrote:
> >>>
> >>> > Thanks for checking that.
> >>> >
> >>> > child is specified in 13.4.4.6 and essentially calls [[Get]]
> >>> > (After cycling through this kind of thing a few times, I found
> the
> >>> easiest
> >>> > way to find methods is to search in the spec for 'e.mehodName'
> >>> which gets
> >>> > you XML.prototype.methodName)
> >>> >
> >>> > and [[Get]] is specified in 9.1.1.1
> >>> >
> >>> > So I assume it is a bug. As discussed I think it is good to match
> >>> the
> >>> > behavior. If we can verify 100% it is off spec, we could add
> >>> something as a
> >>> > define to avoid the 'fix' for people who want to be on-spec.
> >>> >
> >>> >
> >>> >
> >>> >
> >>> >
> >>> > On Sat, Sep 7, 2019 at 11:30 AM Alex Harui
>  >>> >
> >>> > wrote:
> >>> >
> >>> >> FWIW, I went and looked at the ABC.
> >>> >>
> >>> >> The first syntax sets up a getProperty just like any other
> property
> >>> >> fetch.  The second (as expected) calls "child()".  I've looked
> at
> >>> the E4X
> >>> >> spec a couple of times now and cannot see where the behavior we
> >>> are seeing
> >>> >> in child() is specified so I am going to assume it is a bug, and
> >>> that we
> >>> >> just have to live with it.
> >>> >>
> >>> >> I expect that getProperty does not call child().  I haven't
> looked
> >>> at the
> >>> >> AVM code to see what getProperty does for XML.
> >>> >>
> >>> >> HTH,
> >>> >> -Alex
> >>> >>
> >>> >> On 9/5/19, 12:05 PM, "Greg Dove"  wrote:
> >>> >>
> >>> >> Oh that is a good find! And perfect timing :)
> >>> >> Thanks Alex, I am pretty sure that answers the question! (It
> >>> quite
> >>> >> specifically describes what I was seeing, I don't think it
> >>> makes a
> >>> >> difference whether it is attributes or elements)
> >>> >>
> >>> >> And yes, I agree it should be the implemented to give the
> same
> >>> >> results as
> >>> >> swf.
> >>> >>

Re: Heads up on XML

2019-09-07 Thread Josh Tynjala
I think the DITA files generated by asdoc are pretty big too, so they're
probably really useful for your testing.

- Josh

On Friday, September 6, 2019, Greg Dove  wrote:
> 'I think that SWFDump will generate valid XML and there is a way to get
> DITA files from Flex ASDoc that are valid XML.'
> Sounds like a good idea for some large xml files. I did not use that yet,
> so will take a look and see if I can figure it out. Thanks!
>
>
> On Sat, Sep 7, 2019 at 12:30 PM Greg Dove  wrote:
>
>>
>> Just to clarify I was referring to this stuff here:
>>
>>
>>
https://github.com/apache/royale-asjs/blob/8ab1d813ee2f72bab957f9485e56ad89dcf6e1ab/frameworks/projects/MXRoyale/src/main/royale/mx/rpc/http/AbstractOperation.as#L1038
>>
>>
>> with '//old XML style'
>>
>>
>>
>>
>> On Sat, Sep 7, 2019 at 12:24 PM Alex Harui 
>> wrote:
>>
>>> I haven't looked at what XML is used/supported by MX HTTPService.  It
>>> looks like WebService does use MX HTTPService.  I am currently migrating
>>> other things that WebService needs (XMLEncoder/Decoder,
>>> SOAPEncoder/Decoder).  These are new files that aren't in the repo yet,
so
>>> HTTPService couldn't be relying on them or else their use is commented
>>> out.   The goal is to change as little as possible to get it to compile
and
>>> then see if it runs.  I have no idea yet if the XML improvements you are
>>> working on are going to be impactful on what I'm doing or not.
>>>
>>> BTW, I could be wrong, but I think that SWFDump will generate valid XML
>>> and there is a way to get DITA files from Flex ASDoc that are valid XML.
>>>
>>> Thanks for the heads up,
>>> -Alex
>>>
>>> On 9/6/19, 5:14 PM, "Greg Dove"  wrote:
>>>
>>> Actually I know you are looking into the WSDL stuff maybe this
is
>>> going
>>> to be important for that (not sure)?
>>> My goal is to get the XML stuff tidied up and ready to push by end
of
>>> day
>>> tomorrow, worst case the following morning, local time (UTC+12). I
>>> also
>>> need to find some big XML test cases to check the memory side of
>>> things.
>>> FYI there is also some XMLDocument stuff missing (commented out)
from
>>> some
>>> of the MX HttpService code, which came up in a recent issue. I don't
>>> know
>>> if it shares any of the code from the WSDL stuff you are looking at
or
>>> not...
>>> If it does then I don't want to double up on things, but otherwise I
>>> will
>>> try to look at that on my Monday.
>>>
>>>
>>>
>>> On Sat, Sep 7, 2019 at 12:02 PM Greg Dove 
>>> wrote:
>>>
>>> > Thanks for checking that.
>>> >
>>> > child is specified in 13.4.4.6 and essentially calls [[Get]]
>>> > (After cycling through this kind of thing a few times, I found the
>>> easiest
>>> > way to find methods is to search in the spec for 'e.mehodName'
>>> which gets
>>> > you XML.prototype.methodName)
>>> >
>>> > and [[Get]] is specified in 9.1.1.1
>>> >
>>> > So I assume it is a bug. As discussed I think it is good to match
>>> the
>>> > behavior. If we can verify 100% it is off spec, we could add
>>> something as a
>>> > define to avoid the 'fix' for people who want to be on-spec.
>>> >
>>> >
>>> >
>>> >
>>> >
>>> > On Sat, Sep 7, 2019 at 11:30 AM Alex Harui
>> >
>>> > wrote:
>>> >
>>> >> FWIW, I went and looked at the ABC.
>>> >>
>>> >> The first syntax sets up a getProperty just like any other
property
>>> >> fetch.  The second (as expected) calls "child()".  I've looked at
>>> the E4X
>>> >> spec a couple of times now and cannot see where the behavior we
>>> are seeing
>>> >> in child() is specified so I am going to assume it is a bug, and
>>> that we
>>> >> just have to live with it.
>>> >>
>>> >> I expect that getProperty does not call child().  I haven't
looked
>>> at the
>>> >> AVM code to see what getProperty does for XML.
>>> >>
>>> >> HTH,
>>> >> -Alex
>>> >>
>>> >> On 9/5/19, 12:05 PM, "Greg Dove"  wrote:
>>> >>
>>> >> Oh that is a good find! And perfect timing :)
>>> >> Thanks Alex, I am pretty sure that answers the question! (It
>>> quite
>>> >> specifically describes what I was seeing, I don't think it
>>> makes a
>>> >> difference whether it is attributes or elements)
>>> >>
>>> >> And yes, I agree it should be the implemented to give the
same
>>> >> results as
>>> >> swf.
>>> >> I will add this to the other work I have over the weekend
>>> before I
>>> >> get it
>>> >> in. It only seems relevant for when child (or descendants, I
>>> don't
>>> >> expect
>>> >> that will be different) method call is explicit (as opposed
to
>>> the
>>> >> compiler-generated method calls from e4x 'member access')
with
>>> QName
>>> >> argument only. I think most people won't use this approach
with
>>> >> explicit
>>> >> QNames, but it is one of those things 

Re: Heads up on XML

2019-09-06 Thread Greg Dove
'I think that SWFDump will generate valid XML and there is a way to get
DITA files from Flex ASDoc that are valid XML.'
Sounds like a good idea for some large xml files. I did not use that yet,
so will take a look and see if I can figure it out. Thanks!


On Sat, Sep 7, 2019 at 12:30 PM Greg Dove  wrote:

>
> Just to clarify I was referring to this stuff here:
>
>
> https://github.com/apache/royale-asjs/blob/8ab1d813ee2f72bab957f9485e56ad89dcf6e1ab/frameworks/projects/MXRoyale/src/main/royale/mx/rpc/http/AbstractOperation.as#L1038
>
>
> with '//old XML style'
>
>
>
>
> On Sat, Sep 7, 2019 at 12:24 PM Alex Harui 
> wrote:
>
>> I haven't looked at what XML is used/supported by MX HTTPService.  It
>> looks like WebService does use MX HTTPService.  I am currently migrating
>> other things that WebService needs (XMLEncoder/Decoder,
>> SOAPEncoder/Decoder).  These are new files that aren't in the repo yet, so
>> HTTPService couldn't be relying on them or else their use is commented
>> out.   The goal is to change as little as possible to get it to compile and
>> then see if it runs.  I have no idea yet if the XML improvements you are
>> working on are going to be impactful on what I'm doing or not.
>>
>> BTW, I could be wrong, but I think that SWFDump will generate valid XML
>> and there is a way to get DITA files from Flex ASDoc that are valid XML.
>>
>> Thanks for the heads up,
>> -Alex
>>
>> On 9/6/19, 5:14 PM, "Greg Dove"  wrote:
>>
>> Actually I know you are looking into the WSDL stuff maybe this is
>> going
>> to be important for that (not sure)?
>> My goal is to get the XML stuff tidied up and ready to push by end of
>> day
>> tomorrow, worst case the following morning, local time (UTC+12). I
>> also
>> need to find some big XML test cases to check the memory side of
>> things.
>> FYI there is also some XMLDocument stuff missing (commented out) from
>> some
>> of the MX HttpService code, which came up in a recent issue. I don't
>> know
>> if it shares any of the code from the WSDL stuff you are looking at or
>> not...
>> If it does then I don't want to double up on things, but otherwise I
>> will
>> try to look at that on my Monday.
>>
>>
>>
>> On Sat, Sep 7, 2019 at 12:02 PM Greg Dove 
>> wrote:
>>
>> > Thanks for checking that.
>> >
>> > child is specified in 13.4.4.6 and essentially calls [[Get]]
>> > (After cycling through this kind of thing a few times, I found the
>> easiest
>> > way to find methods is to search in the spec for 'e.mehodName'
>> which gets
>> > you XML.prototype.methodName)
>> >
>> > and [[Get]] is specified in 9.1.1.1
>> >
>> > So I assume it is a bug. As discussed I think it is good to match
>> the
>> > behavior. If we can verify 100% it is off spec, we could add
>> something as a
>> > define to avoid the 'fix' for people who want to be on-spec.
>> >
>> >
>> >
>> >
>> >
>> > On Sat, Sep 7, 2019 at 11:30 AM Alex Harui > >
>> > wrote:
>> >
>> >> FWIW, I went and looked at the ABC.
>> >>
>> >> The first syntax sets up a getProperty just like any other property
>> >> fetch.  The second (as expected) calls "child()".  I've looked at
>> the E4X
>> >> spec a couple of times now and cannot see where the behavior we
>> are seeing
>> >> in child() is specified so I am going to assume it is a bug, and
>> that we
>> >> just have to live with it.
>> >>
>> >> I expect that getProperty does not call child().  I haven't looked
>> at the
>> >> AVM code to see what getProperty does for XML.
>> >>
>> >> HTH,
>> >> -Alex
>> >>
>> >> On 9/5/19, 12:05 PM, "Greg Dove"  wrote:
>> >>
>> >> Oh that is a good find! And perfect timing :)
>> >> Thanks Alex, I am pretty sure that answers the question! (It
>> quite
>> >> specifically describes what I was seeing, I don't think it
>> makes a
>> >> difference whether it is attributes or elements)
>> >>
>> >> And yes, I agree it should be the implemented to give the same
>> >> results as
>> >> swf.
>> >> I will add this to the other work I have over the weekend
>> before I
>> >> get it
>> >> in. It only seems relevant for when child (or descendants, I
>> don't
>> >> expect
>> >> that will be different) method call is explicit (as opposed to
>> the
>> >> compiler-generated method calls from e4x 'member access') with
>> QName
>> >> argument only. I think most people won't use this approach with
>> >> explicit
>> >> QNames, but it is one of those things that will cause misery
>> if you do
>> >> (when porting legacy code), so it should be the same IMO also.
>> I will
>> >> make
>> >> sure it costs nothing for the more common (other) use cases. I
>> have
>> >> had to
>> >> do something similar to support 'use namespace' 

Re: Heads up on XML

2019-09-06 Thread Alex Harui
Thanks.  Yeah I remember that is commented out.  In a quick look, it wasn't 
clear why XMLDocument was used instead of E4x in the WebService code.  I will 
probably just use e4x and see what happens.

-Alex

On 9/6/19, 5:30 PM, "Greg Dove"  wrote:

Just to clarify I was referring to this stuff here:


https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fapache%2Froyale-asjs%2Fblob%2F8ab1d813ee2f72bab957f9485e56ad89dcf6e1ab%2Fframeworks%2Fprojects%2FMXRoyale%2Fsrc%2Fmain%2Froyale%2Fmx%2Frpc%2Fhttp%2FAbstractOperation.as%23L1038data=02%7C01%7Caharui%40adobe.com%7Cb03f4d24bb5b4c3b297c08d7332a944b%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C1%7C637034130321301841sdata=HKh9b5WI%2BFiclvbOKLNCFoVpj8cIh%2FUUHREeCef%2BNEU%3Dreserved=0


with '//old XML style'




On Sat, Sep 7, 2019 at 12:24 PM Alex Harui  wrote:

> I haven't looked at what XML is used/supported by MX HTTPService.  It
> looks like WebService does use MX HTTPService.  I am currently migrating
> other things that WebService needs (XMLEncoder/Decoder,
> SOAPEncoder/Decoder).  These are new files that aren't in the repo yet, so
> HTTPService couldn't be relying on them or else their use is commented
> out.   The goal is to change as little as possible to get it to compile 
and
> then see if it runs.  I have no idea yet if the XML improvements you are
> working on are going to be impactful on what I'm doing or not.
>
> BTW, I could be wrong, but I think that SWFDump will generate valid XML
> and there is a way to get DITA files from Flex ASDoc that are valid XML.
>
> Thanks for the heads up,
> -Alex
>
> On 9/6/19, 5:14 PM, "Greg Dove"  wrote:
>
> Actually I know you are looking into the WSDL stuff maybe this is
> going
> to be important for that (not sure)?
> My goal is to get the XML stuff tidied up and ready to push by end of
> day
> tomorrow, worst case the following morning, local time (UTC+12). I 
also
> need to find some big XML test cases to check the memory side of
> things.
> FYI there is also some XMLDocument stuff missing (commented out) from
> some
> of the MX HttpService code, which came up in a recent issue. I don't
> know
> if it shares any of the code from the WSDL stuff you are looking at or
> not...
> If it does then I don't want to double up on things, but otherwise I
> will
> try to look at that on my Monday.
>
>
>
> On Sat, Sep 7, 2019 at 12:02 PM Greg Dove  wrote:
>
> > Thanks for checking that.
> >
> > child is specified in 13.4.4.6 and essentially calls [[Get]]
> > (After cycling through this kind of thing a few times, I found the
> easiest
> > way to find methods is to search in the spec for 'e.mehodName' which
> gets
> > you XML.prototype.methodName)
> >
> > and [[Get]] is specified in 9.1.1.1
> >
> > So I assume it is a bug. As discussed I think it is good to match 
the
> > behavior. If we can verify 100% it is off spec, we could add
> something as a
> > define to avoid the 'fix' for people who want to be on-spec.
> >
> >
> >
> >
> >
> > On Sat, Sep 7, 2019 at 11:30 AM Alex Harui  >
> > wrote:
> >
> >> FWIW, I went and looked at the ABC.
> >>
> >> The first syntax sets up a getProperty just like any other property
> >> fetch.  The second (as expected) calls "child()".  I've looked at
> the E4X
> >> spec a couple of times now and cannot see where the behavior we are
> seeing
> >> in child() is specified so I am going to assume it is a bug, and
> that we
> >> just have to live with it.
> >>
> >> I expect that getProperty does not call child().  I haven't looked
> at the
> >> AVM code to see what getProperty does for XML.
> >>
> >> HTH,
> >> -Alex
> >>
> >> On 9/5/19, 12:05 PM, "Greg Dove"  wrote:
> >>
> >> Oh that is a good find! And perfect timing :)
> >> Thanks Alex, I am pretty sure that answers the question! (It
> quite
> >> specifically describes what I was seeing, I don't think it
> makes a
> >> difference whether it is attributes or elements)
> >>
> >> And yes, I agree it should be the implemented to give the same
> >> results as
> >> swf.
> >> I will add this to the other work I have over the weekend
> before I
> >> get it
> >> in. It only seems relevant for when child (or descendants, I
> don't
> >> expect
> >> that will be different) method call is explicit (as opposed to

Re: Heads up on XML

2019-09-06 Thread Greg Dove
Just to clarify I was referring to this stuff here:

https://github.com/apache/royale-asjs/blob/8ab1d813ee2f72bab957f9485e56ad89dcf6e1ab/frameworks/projects/MXRoyale/src/main/royale/mx/rpc/http/AbstractOperation.as#L1038


with '//old XML style'




On Sat, Sep 7, 2019 at 12:24 PM Alex Harui  wrote:

> I haven't looked at what XML is used/supported by MX HTTPService.  It
> looks like WebService does use MX HTTPService.  I am currently migrating
> other things that WebService needs (XMLEncoder/Decoder,
> SOAPEncoder/Decoder).  These are new files that aren't in the repo yet, so
> HTTPService couldn't be relying on them or else their use is commented
> out.   The goal is to change as little as possible to get it to compile and
> then see if it runs.  I have no idea yet if the XML improvements you are
> working on are going to be impactful on what I'm doing or not.
>
> BTW, I could be wrong, but I think that SWFDump will generate valid XML
> and there is a way to get DITA files from Flex ASDoc that are valid XML.
>
> Thanks for the heads up,
> -Alex
>
> On 9/6/19, 5:14 PM, "Greg Dove"  wrote:
>
> Actually I know you are looking into the WSDL stuff maybe this is
> going
> to be important for that (not sure)?
> My goal is to get the XML stuff tidied up and ready to push by end of
> day
> tomorrow, worst case the following morning, local time (UTC+12). I also
> need to find some big XML test cases to check the memory side of
> things.
> FYI there is also some XMLDocument stuff missing (commented out) from
> some
> of the MX HttpService code, which came up in a recent issue. I don't
> know
> if it shares any of the code from the WSDL stuff you are looking at or
> not...
> If it does then I don't want to double up on things, but otherwise I
> will
> try to look at that on my Monday.
>
>
>
> On Sat, Sep 7, 2019 at 12:02 PM Greg Dove  wrote:
>
> > Thanks for checking that.
> >
> > child is specified in 13.4.4.6 and essentially calls [[Get]]
> > (After cycling through this kind of thing a few times, I found the
> easiest
> > way to find methods is to search in the spec for 'e.mehodName' which
> gets
> > you XML.prototype.methodName)
> >
> > and [[Get]] is specified in 9.1.1.1
> >
> > So I assume it is a bug. As discussed I think it is good to match the
> > behavior. If we can verify 100% it is off spec, we could add
> something as a
> > define to avoid the 'fix' for people who want to be on-spec.
> >
> >
> >
> >
> >
> > On Sat, Sep 7, 2019 at 11:30 AM Alex Harui  >
> > wrote:
> >
> >> FWIW, I went and looked at the ABC.
> >>
> >> The first syntax sets up a getProperty just like any other property
> >> fetch.  The second (as expected) calls "child()".  I've looked at
> the E4X
> >> spec a couple of times now and cannot see where the behavior we are
> seeing
> >> in child() is specified so I am going to assume it is a bug, and
> that we
> >> just have to live with it.
> >>
> >> I expect that getProperty does not call child().  I haven't looked
> at the
> >> AVM code to see what getProperty does for XML.
> >>
> >> HTH,
> >> -Alex
> >>
> >> On 9/5/19, 12:05 PM, "Greg Dove"  wrote:
> >>
> >> Oh that is a good find! And perfect timing :)
> >> Thanks Alex, I am pretty sure that answers the question! (It
> quite
> >> specifically describes what I was seeing, I don't think it
> makes a
> >> difference whether it is attributes or elements)
> >>
> >> And yes, I agree it should be the implemented to give the same
> >> results as
> >> swf.
> >> I will add this to the other work I have over the weekend
> before I
> >> get it
> >> in. It only seems relevant for when child (or descendants, I
> don't
> >> expect
> >> that will be different) method call is explicit (as opposed to
> the
> >> compiler-generated method calls from e4x 'member access') with
> QName
> >> argument only. I think most people won't use this approach with
> >> explicit
> >> QNames, but it is one of those things that will cause misery if
> you do
> >> (when porting legacy code), so it should be the same IMO also.
> I will
> >> make
> >> sure it costs nothing for the more common (other) use cases. I
> have
> >> had to
> >> do something similar to support 'use namespace' directives which
> >> create a
> >> MultiName-like variant of QName in my local change that
> includes the
> >> default namespace and the specified set of other 'used'/open
> >> namespace uris
> >> in the current execution scope. (That 'use namespace' pattern
> was
> >> being
> >> used quite a bit in the codebase I have been working on)
> >>
> >> Thanks again, that will save me investigating it with 

Re: Heads up on XML

2019-09-06 Thread Alex Harui
I haven't looked at what XML is used/supported by MX HTTPService.  It looks 
like WebService does use MX HTTPService.  I am currently migrating other things 
that WebService needs (XMLEncoder/Decoder, SOAPEncoder/Decoder).  These are new 
files that aren't in the repo yet, so HTTPService couldn't be relying on them 
or else their use is commented out.   The goal is to change as little as 
possible to get it to compile and then see if it runs.  I have no idea yet if 
the XML improvements you are working on are going to be impactful on what I'm 
doing or not.

BTW, I could be wrong, but I think that SWFDump will generate valid XML and 
there is a way to get DITA files from Flex ASDoc that are valid XML.

Thanks for the heads up,
-Alex

On 9/6/19, 5:14 PM, "Greg Dove"  wrote:

Actually I know you are looking into the WSDL stuff maybe this is going
to be important for that (not sure)?
My goal is to get the XML stuff tidied up and ready to push by end of day
tomorrow, worst case the following morning, local time (UTC+12). I also
need to find some big XML test cases to check the memory side of things.
FYI there is also some XMLDocument stuff missing (commented out) from some
of the MX HttpService code, which came up in a recent issue. I don't know
if it shares any of the code from the WSDL stuff you are looking at or
not...
If it does then I don't want to double up on things, but otherwise I will
try to look at that on my Monday.



On Sat, Sep 7, 2019 at 12:02 PM Greg Dove  wrote:

> Thanks for checking that.
>
> child is specified in 13.4.4.6 and essentially calls [[Get]]
> (After cycling through this kind of thing a few times, I found the easiest
> way to find methods is to search in the spec for 'e.mehodName' which gets
> you XML.prototype.methodName)
>
> and [[Get]] is specified in 9.1.1.1
>
> So I assume it is a bug. As discussed I think it is good to match the
> behavior. If we can verify 100% it is off spec, we could add something as 
a
> define to avoid the 'fix' for people who want to be on-spec.
>
>
>
>
>
> On Sat, Sep 7, 2019 at 11:30 AM Alex Harui 
> wrote:
>
>> FWIW, I went and looked at the ABC.
>>
>> The first syntax sets up a getProperty just like any other property
>> fetch.  The second (as expected) calls "child()".  I've looked at the E4X
>> spec a couple of times now and cannot see where the behavior we are 
seeing
>> in child() is specified so I am going to assume it is a bug, and that we
>> just have to live with it.
>>
>> I expect that getProperty does not call child().  I haven't looked at the
>> AVM code to see what getProperty does for XML.
>>
>> HTH,
>> -Alex
>>
>> On 9/5/19, 12:05 PM, "Greg Dove"  wrote:
>>
>> Oh that is a good find! And perfect timing :)
>> Thanks Alex, I am pretty sure that answers the question! (It quite
>> specifically describes what I was seeing, I don't think it makes a
>> difference whether it is attributes or elements)
>>
>> And yes, I agree it should be the implemented to give the same
>> results as
>> swf.
>> I will add this to the other work I have over the weekend before I
>> get it
>> in. It only seems relevant for when child (or descendants, I don't
>> expect
>> that will be different) method call is explicit (as opposed to the
>> compiler-generated method calls from e4x 'member access') with QName
>> argument only. I think most people won't use this approach with
>> explicit
>> QNames, but it is one of those things that will cause misery if you 
do
>> (when porting legacy code), so it should be the same IMO also. I will
>> make
>> sure it costs nothing for the more common (other) use cases. I have
>> had to
>> do something similar to support 'use namespace' directives which
>> create a
>> MultiName-like variant of QName in my local change that includes the
>> default namespace and the specified set of other 'used'/open
>> namespace uris
>> in the current execution scope. (That 'use namespace' pattern was
>> being
>> used quite a bit in the codebase I have been working on)
>>
>> Thanks again, that will save me investigating it with bytecode.
>>
>>
>>
>>
>> On Fri, Sep 6, 2019 at 6:37 AM Alex Harui 
>> wrote:
>>
>> > Out of pure random chance, I was starting the migration of
>> WebService
>> > which had a dependency on XMLUtil which contained the comment:
>> >
>> > //xml.attribute(QName) will also return local no-namespace
>> > attributes
>> > //even if we are looking for a specific full qualified 
name.
>> >
>> > So, still could 

Re: Heads up on XML

2019-09-06 Thread Greg Dove
Actually I know you are looking into the WSDL stuff maybe this is going
to be important for that (not sure)?
My goal is to get the XML stuff tidied up and ready to push by end of day
tomorrow, worst case the following morning, local time (UTC+12). I also
need to find some big XML test cases to check the memory side of things.
FYI there is also some XMLDocument stuff missing (commented out) from some
of the MX HttpService code, which came up in a recent issue. I don't know
if it shares any of the code from the WSDL stuff you are looking at or
not...
If it does then I don't want to double up on things, but otherwise I will
try to look at that on my Monday.



On Sat, Sep 7, 2019 at 12:02 PM Greg Dove  wrote:

> Thanks for checking that.
>
> child is specified in 13.4.4.6 and essentially calls [[Get]]
> (After cycling through this kind of thing a few times, I found the easiest
> way to find methods is to search in the spec for 'e.mehodName' which gets
> you XML.prototype.methodName)
>
> and [[Get]] is specified in 9.1.1.1
>
> So I assume it is a bug. As discussed I think it is good to match the
> behavior. If we can verify 100% it is off spec, we could add something as a
> define to avoid the 'fix' for people who want to be on-spec.
>
>
>
>
>
> On Sat, Sep 7, 2019 at 11:30 AM Alex Harui 
> wrote:
>
>> FWIW, I went and looked at the ABC.
>>
>> The first syntax sets up a getProperty just like any other property
>> fetch.  The second (as expected) calls "child()".  I've looked at the E4X
>> spec a couple of times now and cannot see where the behavior we are seeing
>> in child() is specified so I am going to assume it is a bug, and that we
>> just have to live with it.
>>
>> I expect that getProperty does not call child().  I haven't looked at the
>> AVM code to see what getProperty does for XML.
>>
>> HTH,
>> -Alex
>>
>> On 9/5/19, 12:05 PM, "Greg Dove"  wrote:
>>
>> Oh that is a good find! And perfect timing :)
>> Thanks Alex, I am pretty sure that answers the question! (It quite
>> specifically describes what I was seeing, I don't think it makes a
>> difference whether it is attributes or elements)
>>
>> And yes, I agree it should be the implemented to give the same
>> results as
>> swf.
>> I will add this to the other work I have over the weekend before I
>> get it
>> in. It only seems relevant for when child (or descendants, I don't
>> expect
>> that will be different) method call is explicit (as opposed to the
>> compiler-generated method calls from e4x 'member access') with QName
>> argument only. I think most people won't use this approach with
>> explicit
>> QNames, but it is one of those things that will cause misery if you do
>> (when porting legacy code), so it should be the same IMO also. I will
>> make
>> sure it costs nothing for the more common (other) use cases. I have
>> had to
>> do something similar to support 'use namespace' directives which
>> create a
>> MultiName-like variant of QName in my local change that includes the
>> default namespace and the specified set of other 'used'/open
>> namespace uris
>> in the current execution scope. (That 'use namespace' pattern was
>> being
>> used quite a bit in the codebase I have been working on)
>>
>> Thanks again, that will save me investigating it with bytecode.
>>
>>
>>
>>
>> On Fri, Sep 6, 2019 at 6:37 AM Alex Harui 
>> wrote:
>>
>> > Out of pure random chance, I was starting the migration of
>> WebService
>> > which had a dependency on XMLUtil which contained the comment:
>> >
>> > //xml.attribute(QName) will also return local no-namespace
>> > attributes
>> > //even if we are looking for a specific full qualified name.
>> >
>> > So, still could be a bug in Flash, but maybe we should just make our
>> > implementation work the same way to reduce migration effort in case
>> someone
>> > is relying on this behavior.
>> >
>> > Thoughts?
>> > -Alex
>> >
>> > On 9/4/19, 1:47 PM, "Alex Harui"  wrote:
>> >
>> > I read the example incorrectly.  So yeah, it should return 0
>> and empty
>> > string in both cases, IMO.  There might be some subtlety in how the
>> > namespaces are specified for a QName or how QName works in child().
>> >
>> > HTH,
>> > -Alex
>> >
>> > On 9/4/19, 11:33 AM, "Greg Dove"  wrote:
>> >
>> > Good idea. I'll check the swf output, although probably
>> tomorrow
>> > as I need
>> > to focus on something else today.
>> > ' I would have expected both to return "1" and the node.  '
>> >
>> > In that example I would expect the opposite (because the
>> the link
>> > node
>> > being returned by the second query is not in the specified
>> explicit
>> > namespace of the QName), so I am curious to understand why
>> you
>> > think
>> >  

Re: Heads up on XML

2019-09-06 Thread Greg Dove
Thanks for checking that.

child is specified in 13.4.4.6 and essentially calls [[Get]]
(After cycling through this kind of thing a few times, I found the easiest
way to find methods is to search in the spec for 'e.mehodName' which gets
you XML.prototype.methodName)

and [[Get]] is specified in 9.1.1.1

So I assume it is a bug. As discussed I think it is good to match the
behavior. If we can verify 100% it is off spec, we could add something as a
define to avoid the 'fix' for people who want to be on-spec.





On Sat, Sep 7, 2019 at 11:30 AM Alex Harui  wrote:

> FWIW, I went and looked at the ABC.
>
> The first syntax sets up a getProperty just like any other property
> fetch.  The second (as expected) calls "child()".  I've looked at the E4X
> spec a couple of times now and cannot see where the behavior we are seeing
> in child() is specified so I am going to assume it is a bug, and that we
> just have to live with it.
>
> I expect that getProperty does not call child().  I haven't looked at the
> AVM code to see what getProperty does for XML.
>
> HTH,
> -Alex
>
> On 9/5/19, 12:05 PM, "Greg Dove"  wrote:
>
> Oh that is a good find! And perfect timing :)
> Thanks Alex, I am pretty sure that answers the question! (It quite
> specifically describes what I was seeing, I don't think it makes a
> difference whether it is attributes or elements)
>
> And yes, I agree it should be the implemented to give the same results
> as
> swf.
> I will add this to the other work I have over the weekend before I get
> it
> in. It only seems relevant for when child (or descendants, I don't
> expect
> that will be different) method call is explicit (as opposed to the
> compiler-generated method calls from e4x 'member access') with QName
> argument only. I think most people won't use this approach with
> explicit
> QNames, but it is one of those things that will cause misery if you do
> (when porting legacy code), so it should be the same IMO also. I will
> make
> sure it costs nothing for the more common (other) use cases. I have
> had to
> do something similar to support 'use namespace' directives which
> create a
> MultiName-like variant of QName in my local change that includes the
> default namespace and the specified set of other 'used'/open namespace
> uris
> in the current execution scope. (That 'use namespace' pattern was being
> used quite a bit in the codebase I have been working on)
>
> Thanks again, that will save me investigating it with bytecode.
>
>
>
>
> On Fri, Sep 6, 2019 at 6:37 AM Alex Harui 
> wrote:
>
> > Out of pure random chance, I was starting the migration of WebService
> > which had a dependency on XMLUtil which contained the comment:
> >
> > //xml.attribute(QName) will also return local no-namespace
> > attributes
> > //even if we are looking for a specific full qualified name.
> >
> > So, still could be a bug in Flash, but maybe we should just make our
> > implementation work the same way to reduce migration effort in case
> someone
> > is relying on this behavior.
> >
> > Thoughts?
> > -Alex
> >
> > On 9/4/19, 1:47 PM, "Alex Harui"  wrote:
> >
> > I read the example incorrectly.  So yeah, it should return 0 and
> empty
> > string in both cases, IMO.  There might be some subtlety in how the
> > namespaces are specified for a QName or how QName works in child().
> >
> > HTH,
> > -Alex
> >
> > On 9/4/19, 11:33 AM, "Greg Dove"  wrote:
> >
> > Good idea. I'll check the swf output, although probably
> tomorrow
> > as I need
> > to focus on something else today.
> > ' I would have expected both to return "1" and the node.  '
> >
> > In that example I would expect the opposite (because the the
> link
> > node
> > being returned by the second query is not in the specified
> explicit
> > namespace of the QName), so I am curious to understand why
> you
> > think
> > that... maybe it will help me understand.
> >
> > When I use feed.atom::link I expect only links that are
> bound to
> > the atom
> > namespace (uri). Because  node has no prefix
> bound to
> > the uri
> > that the atom namespace defines, and it is in the default
> > namespace, I
> > would not expect it to be included.
> > At the moment the atom::link part is working the same as
> swf, so
> > I'm happy
> > with that at least for what I am working on. All the explicit
> > calls to
> > child(name) or descendants(name) in the app I am working on
> use
> > string args
> > so these all work correctly as well.
> > I'm just trying to cover things for the future... while my
> head is
> > still in
> > 

Re: Heads up on XML

2019-09-06 Thread Alex Harui
FWIW, I went and looked at the ABC.

The first syntax sets up a getProperty just like any other property fetch.  The 
second (as expected) calls "child()".  I've looked at the E4X spec a couple of 
times now and cannot see where the behavior we are seeing in child() is 
specified so I am going to assume it is a bug, and that we just have to live 
with it.

I expect that getProperty does not call child().  I haven't looked at the AVM 
code to see what getProperty does for XML.

HTH,
-Alex

On 9/5/19, 12:05 PM, "Greg Dove"  wrote:

Oh that is a good find! And perfect timing :)
Thanks Alex, I am pretty sure that answers the question! (It quite
specifically describes what I was seeing, I don't think it makes a
difference whether it is attributes or elements)

And yes, I agree it should be the implemented to give the same results as
swf.
I will add this to the other work I have over the weekend before I get it
in. It only seems relevant for when child (or descendants, I don't expect
that will be different) method call is explicit (as opposed to the
compiler-generated method calls from e4x 'member access') with QName
argument only. I think most people won't use this approach with explicit
QNames, but it is one of those things that will cause misery if you do
(when porting legacy code), so it should be the same IMO also. I will make
sure it costs nothing for the more common (other) use cases. I have had to
do something similar to support 'use namespace' directives which create a
MultiName-like variant of QName in my local change that includes the
default namespace and the specified set of other 'used'/open namespace uris
in the current execution scope. (That 'use namespace' pattern was being
used quite a bit in the codebase I have been working on)

Thanks again, that will save me investigating it with bytecode.




On Fri, Sep 6, 2019 at 6:37 AM Alex Harui  wrote:

> Out of pure random chance, I was starting the migration of WebService
> which had a dependency on XMLUtil which contained the comment:
>
> //xml.attribute(QName) will also return local no-namespace
> attributes
> //even if we are looking for a specific full qualified name.
>
> So, still could be a bug in Flash, but maybe we should just make our
> implementation work the same way to reduce migration effort in case 
someone
> is relying on this behavior.
>
> Thoughts?
> -Alex
>
> On 9/4/19, 1:47 PM, "Alex Harui"  wrote:
>
> I read the example incorrectly.  So yeah, it should return 0 and empty
> string in both cases, IMO.  There might be some subtlety in how the
> namespaces are specified for a QName or how QName works in child().
>
> HTH,
> -Alex
>
> On 9/4/19, 11:33 AM, "Greg Dove"  wrote:
>
> Good idea. I'll check the swf output, although probably tomorrow
> as I need
> to focus on something else today.
> ' I would have expected both to return "1" and the node.  '
>
> In that example I would expect the opposite (because the the link
> node
> being returned by the second query is not in the specified 
explicit
> namespace of the QName), so I am curious to understand why you
> think
> that... maybe it will help me understand.
>
> When I use feed.atom::link I expect only links that are bound to
> the atom
> namespace (uri). Because  node has no prefix bound to
> the uri
> that the atom namespace defines, and it is in the default
> namespace, I
> would not expect it to be included.
> At the moment the atom::link part is working the same as swf, so
> I'm happy
> with that at least for what I am working on. All the explicit
> calls to
> child(name) or descendants(name) in the app I am working on use
> string args
> so these all work correctly as well.
> I'm just trying to cover things for the future... while my head is
> still in
> this stuff.
>
>
>
> On Thu, Sep 5, 2019 at 6:11 AM Alex Harui 

> wrote:
>
> > Speaking of multinames, what is the ABC code generated by the
> Flex
> > compiler for the two cases?  It might contain some clues.  I
> would have
> > expected both to return "1" and the node.  But I did see in the
> spec the
> > notion of "InScopeNamespaces".  I generally hate reading specs
> like these
> > so I am not very knowledgeable about what the spec says.
> >
> > HTH,
> > -Alex
> >
> > On 9/4/19, 11:05 AM, "Greg Dove"  wrote:
> >
> > 'Have you rummaged through 

Re: Heads up on XML

2019-09-05 Thread Greg Dove
Oh that is a good find! And perfect timing :)
Thanks Alex, I am pretty sure that answers the question! (It quite
specifically describes what I was seeing, I don't think it makes a
difference whether it is attributes or elements)

And yes, I agree it should be the implemented to give the same results as
swf.
I will add this to the other work I have over the weekend before I get it
in. It only seems relevant for when child (or descendants, I don't expect
that will be different) method call is explicit (as opposed to the
compiler-generated method calls from e4x 'member access') with QName
argument only. I think most people won't use this approach with explicit
QNames, but it is one of those things that will cause misery if you do
(when porting legacy code), so it should be the same IMO also. I will make
sure it costs nothing for the more common (other) use cases. I have had to
do something similar to support 'use namespace' directives which create a
MultiName-like variant of QName in my local change that includes the
default namespace and the specified set of other 'used'/open namespace uris
in the current execution scope. (That 'use namespace' pattern was being
used quite a bit in the codebase I have been working on)

Thanks again, that will save me investigating it with bytecode.




On Fri, Sep 6, 2019 at 6:37 AM Alex Harui  wrote:

> Out of pure random chance, I was starting the migration of WebService
> which had a dependency on XMLUtil which contained the comment:
>
> //xml.attribute(QName) will also return local no-namespace
> attributes
> //even if we are looking for a specific full qualified name.
>
> So, still could be a bug in Flash, but maybe we should just make our
> implementation work the same way to reduce migration effort in case someone
> is relying on this behavior.
>
> Thoughts?
> -Alex
>
> On 9/4/19, 1:47 PM, "Alex Harui"  wrote:
>
> I read the example incorrectly.  So yeah, it should return 0 and empty
> string in both cases, IMO.  There might be some subtlety in how the
> namespaces are specified for a QName or how QName works in child().
>
> HTH,
> -Alex
>
> On 9/4/19, 11:33 AM, "Greg Dove"  wrote:
>
> Good idea. I'll check the swf output, although probably tomorrow
> as I need
> to focus on something else today.
> ' I would have expected both to return "1" and the node.  '
>
> In that example I would expect the opposite (because the the link
> node
> being returned by the second query is not in the specified explicit
> namespace of the QName), so I am curious to understand why you
> think
> that... maybe it will help me understand.
>
> When I use feed.atom::link I expect only links that are bound to
> the atom
> namespace (uri). Because  node has no prefix bound to
> the uri
> that the atom namespace defines, and it is in the default
> namespace, I
> would not expect it to be included.
> At the moment the atom::link part is working the same as swf, so
> I'm happy
> with that at least for what I am working on. All the explicit
> calls to
> child(name) or descendants(name) in the app I am working on use
> string args
> so these all work correctly as well.
> I'm just trying to cover things for the future... while my head is
> still in
> this stuff.
>
>
>
> On Thu, Sep 5, 2019 at 6:11 AM Alex Harui 
> wrote:
>
> > Speaking of multinames, what is the ABC code generated by the
> Flex
> > compiler for the two cases?  It might contain some clues.  I
> would have
> > expected both to return "1" and the node.  But I did see in the
> spec the
> > notion of "InScopeNamespaces".  I generally hate reading specs
> like these
> > so I am not very knowledgeable about what the spec says.
> >
> > HTH,
> > -Alex
> >
> > On 9/4/19, 11:05 AM, "Greg Dove"  wrote:
> >
> > 'Have you rummaged through the spec?'
> > Yes, if anything I probably need to step away from it and
> experience
> > the
> > world a bit more! I have been focused on each portion of the
> spec as I
> > create unit tests and verify things between the player and
> the Royale
> > implementation.
> > I've also glanced a few times in the avmplus code, and that
> has
> > provided
> > some clues where things were intentionally implemented
> slightly off
> > spec,
> > but still a few things to figure out. However I am making
> progress - I
> > think I have everything covered for the codebase I am
> working on
> > but I
> > will keep going beyond that. For that example above, I might
> be wrong,
> > but
> > I suspect it is using a multiname with default namespace
> included for
> > the
> > 

Re: Heads up on XML

2019-09-05 Thread Alex Harui
Out of pure random chance, I was starting the migration of WebService which had 
a dependency on XMLUtil which contained the comment:

//xml.attribute(QName) will also return local no-namespace attributes
//even if we are looking for a specific full qualified name.

So, still could be a bug in Flash, but maybe we should just make our 
implementation work the same way to reduce migration effort in case someone is 
relying on this behavior.

Thoughts?
-Alex

On 9/4/19, 1:47 PM, "Alex Harui"  wrote:

I read the example incorrectly.  So yeah, it should return 0 and empty 
string in both cases, IMO.  There might be some subtlety in how the namespaces 
are specified for a QName or how QName works in child().

HTH,
-Alex

On 9/4/19, 11:33 AM, "Greg Dove"  wrote:

Good idea. I'll check the swf output, although probably tomorrow as I 
need
to focus on something else today.
' I would have expected both to return "1" and the node.  '

In that example I would expect the opposite (because the the link node
being returned by the second query is not in the specified explicit
namespace of the QName), so I am curious to understand why you think
that... maybe it will help me understand.

When I use feed.atom::link I expect only links that are bound to the 
atom
namespace (uri). Because  node has no prefix bound to the 
uri
that the atom namespace defines, and it is in the default namespace, I
would not expect it to be included.
At the moment the atom::link part is working the same as swf, so I'm 
happy
with that at least for what I am working on. All the explicit calls to
child(name) or descendants(name) in the app I am working on use string 
args
so these all work correctly as well.
I'm just trying to cover things for the future... while my head is 
still in
this stuff.



On Thu, Sep 5, 2019 at 6:11 AM Alex Harui  
wrote:

> Speaking of multinames, what is the ABC code generated by the Flex
> compiler for the two cases?  It might contain some clues.  I would 
have
> expected both to return "1" and the node.  But I did see in the spec 
the
> notion of "InScopeNamespaces".  I generally hate reading specs like 
these
> so I am not very knowledgeable about what the spec says.
>
> HTH,
> -Alex
>
> On 9/4/19, 11:05 AM, "Greg Dove"  wrote:
>
> 'Have you rummaged through the spec?'
> Yes, if anything I probably need to step away from it and 
experience
> the
> world a bit more! I have been focused on each portion of the spec 
as I
> create unit tests and verify things between the player and the 
Royale
> implementation.
> I've also glanced a few times in the avmplus code, and that has
> provided
> some clues where things were intentionally implemented slightly 
off
> spec,
> but still a few things to figure out. However I am making 
progress - I
> think I have everything covered for the codebase I am working 
on
> but I
> will keep going beyond that. For that example above, I might be 
wrong,
> but
> I suspect it is using a multiname with default namespace included 
for
> the
> explicit call case in the player, but not for the implicit one, 
but I
> am
> not yet sure why. I will double-check the spec though...
>
>
> On Thu, Sep 5, 2019 at 4:02 AM Alex Harui 

> wrote:
>
> > Don't know.  Have you rummaged through the spec?
> >
> >
> 
https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.ecma-international.org%2Fpublications%2Ffiles%2FECMA-ST-WITHDRAWN%2FEcma-357.pdfdata=02%7C01%7Caharui%40adobe.com%7Cde670f3380f94b8fd82708d7317915d3%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C1%7C637032268439916076sdata=lY0hDgIEf68pv9fzW6NopGDv5cBdR2wfB49npPDcT7Y%3Dreserved=0
> >
> > HTH,
> > -Alex
> >
> > On 9/4/19, 3:11 AM, "Greg Dove"  wrote:
> >
> > This is particularly for Harbs and Yishay, as I think you 
are
> both (or
> > both
> > have been) using XML quite a bit. I have quite a few  fixes
> coming. All
> > with tests that match on swf and js.
> >
> > I am currently working to demonstrate proof of concept to a
> prospective
> > client for migration of a Flex app. The app makes extensive 
use
> of e4x
> > and
> > uses a bunch of features that I expect had not received 
attention

Re: Heads up on XML

2019-09-04 Thread Alex Harui
I read the example incorrectly.  So yeah, it should return 0 and empty string 
in both cases, IMO.  There might be some subtlety in how the namespaces are 
specified for a QName or how QName works in child().

HTH,
-Alex

On 9/4/19, 11:33 AM, "Greg Dove"  wrote:

Good idea. I'll check the swf output, although probably tomorrow as I need
to focus on something else today.
' I would have expected both to return "1" and the node.  '

In that example I would expect the opposite (because the the link node
being returned by the second query is not in the specified explicit
namespace of the QName), so I am curious to understand why you think
that... maybe it will help me understand.

When I use feed.atom::link I expect only links that are bound to the atom
namespace (uri). Because  node has no prefix bound to the uri
that the atom namespace defines, and it is in the default namespace, I
would not expect it to be included.
At the moment the atom::link part is working the same as swf, so I'm happy
with that at least for what I am working on. All the explicit calls to
child(name) or descendants(name) in the app I am working on use string args
so these all work correctly as well.
I'm just trying to cover things for the future... while my head is still in
this stuff.



On Thu, Sep 5, 2019 at 6:11 AM Alex Harui  wrote:

> Speaking of multinames, what is the ABC code generated by the Flex
> compiler for the two cases?  It might contain some clues.  I would have
> expected both to return "1" and the node.  But I did see in the spec the
> notion of "InScopeNamespaces".  I generally hate reading specs like these
> so I am not very knowledgeable about what the spec says.
>
> HTH,
> -Alex
>
> On 9/4/19, 11:05 AM, "Greg Dove"  wrote:
>
> 'Have you rummaged through the spec?'
> Yes, if anything I probably need to step away from it and experience
> the
> world a bit more! I have been focused on each portion of the spec as I
> create unit tests and verify things between the player and the Royale
> implementation.
> I've also glanced a few times in the avmplus code, and that has
> provided
> some clues where things were intentionally implemented slightly off
> spec,
> but still a few things to figure out. However I am making progress - I
> think I have everything covered for the codebase I am working on
> but I
> will keep going beyond that. For that example above, I might be wrong,
> but
> I suspect it is using a multiname with default namespace included for
> the
> explicit call case in the player, but not for the implicit one, but I
> am
> not yet sure why. I will double-check the spec though...
>
>
> On Thu, Sep 5, 2019 at 4:02 AM Alex Harui 
> wrote:
>
> > Don't know.  Have you rummaged through the spec?
> >
> >
> 
https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.ecma-international.org%2Fpublications%2Ffiles%2FECMA-ST-WITHDRAWN%2FEcma-357.pdfdata=02%7C01%7Caharui%40adobe.com%7C1ade69b1ed4844c4371f08d731665509%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C1%7C637032187917207574sdata=gFsLnUcRjOioiOWViLttSkIBsISlcN%2F9AlGhpC4rX1c%3Dreserved=0
> >
> > HTH,
> > -Alex
> >
> > On 9/4/19, 3:11 AM, "Greg Dove"  wrote:
> >
> > This is particularly for Harbs and Yishay, as I think you are
> both (or
> > both
> > have been) using XML quite a bit. I have quite a few  fixes
> coming. All
> > with tests that match on swf and js.
> >
> > I am currently working to demonstrate proof of concept to a
> prospective
> > client for migration of a Flex app. The app makes extensive use
> of e4x
> > and
> > uses a bunch of features that I expect had not received 
attention
> > previously, because they were originally either not working with
> the
> > codebase I am porting, or i think some even caused errors in the
> > javascript
> > output.
> >
> > So I have spent the last several days almost full time figuring
> things
> > out
> > and working on fixes, between the compiler and emulation 
classes.
> > All the previous XML tests continue to pass, but I have many
> more unit
> > tests and fixes lined up for the following:
> >
> > namespace directives
> > default xml namespace
> > use namespace (multiple)
> >
> > a number of fixes for xml filtering, including:
> > -'this' resolves correctly in filters that include external
> references
> > from
>

Re: Heads up on XML

2019-09-04 Thread Greg Dove
Yeah, I saw that ;) Don't worry, I am aware of it.

My first goal is to make sure it works like it should, because that comes
first, and then to optimize. I'll check the memory side of things and make
sure it's at least the same as before. If you can point me to some
publicly accessible large test cases that would be really helpful. I will
work through that before I push anything.

On Thu, Sep 5, 2019 at 7:26 AM Harbs  wrote:

> Heads up:
>
> I did some (on first blush) odd things in XML related to QNames. QNames
> are pooled and many XML properties are not initialized by default. The
> reason I did this was it avoided many MB of memory waste for complex XML.
> Please don’t mess that up.
>
> Thanks,
> Harbs
>
> > On Sep 4, 2019, at 1:02 PM, Greg Dove  wrote:
> >
> > This is particularly for Harbs and Yishay, as I think you are both (or
> both
> > have been) using XML quite a bit. I have quite a few  fixes coming. All
> > with tests that match on swf and js.
> >
> > I am currently working to demonstrate proof of concept to a prospective
> > client for migration of a Flex app. The app makes extensive use of e4x
> and
> > uses a bunch of features that I expect had not received attention
> > previously, because they were originally either not working with the
> > codebase I am porting, or i think some even caused errors in the
> javascript
> > output.
> >
> > So I have spent the last several days almost full time figuring things
> out
> > and working on fixes, between the compiler and emulation classes.
> > All the previous XML tests continue to pass, but I have many more unit
> > tests and fixes lined up for the following:
> >
> > namespace directives
> > default xml namespace
> > use namespace (multiple)
> >
> > a number of fixes for xml filtering, including:
> > -'this' resolves correctly in filters that include external references
> from
> > the fitler expression to the 'this' scope
> > -handles alternate ordering of comparisons between XML 'getters' and
> > literals
> > e.g. something.(name() = "cat")  or something.("cat" = name()) (these are
> > the same)
> > -it (will) now handle XML e4x references in nested function calls inside
> > the filter, e.g. things like:
> > e.g.
> > var people:XML = 
> >
> >Bob
> >32
> >
> >
> >Joe
> >46
> >
> >;
> > var findJoeByAge:Function = function (i:int):Boolean {
> >return i > 40;
> >};
> > people.person.(findJoeByAge(parseInt(age))).name
> >
> >
> > I have lots more granular tests in QName, Namespace, and XML with tuning
> to
> > improve reliability.
> > toXMLString XML node output also matches flash more correctly in what I
> > have coming.
> >
> > One thing that I am trying to figure out, which I would appreciate input
> on
> > if someone has an answer:
> > For the example:
> >
> > var feed:XML = new XML(
> >'http://www.w3.org/2005/Atom;
> > xmlns:m="nothing">\n' +
> >'   > href="blah/12321/domain/"/>\n' +
> >'\n');
> > var atomSpace:Namespace = new Namespace('http://www.w3.org/2005/Atom');
> >
> > Can anyone explain why this (in SWF, as a reference implementation):
> > trace(feed.atomSpace::link.length())
> > trace(feed.atomSpace::link.toXMLString())
> > //output:
> > 0
> > {empty string}
> > is different to:
> > trace(feed.child(new QName(atomSpace,'link')).length())
> > trace(feed.child(new QName(atomSpace,'link')).toXMLString())
> > //output:
> > 1
> > http://www.w3.org/2005/Atom; xmlns:m="nothing"/>
> >
> > I had assumed the above cases would be the same, but the second one is
> > behaving as if it has the default namespace included with the specified
> > namespace in the QName matching (it does correctly match the namespace
> > specifically as well -with e.g.  > bound to the uri, but also seems to include link nodes with the default
> > namespace, whether or not it is declared). I can accommodate this
> > difference to make them behave the same, I just would like to understand
> > the basis for the actual rules if anyone knows
> >
> > I should be in a position to push the updates this coming weekend I
> think.
>
>


Re: Heads up on XML

2019-09-04 Thread Harbs
Heads up:

I did some (on first blush) odd things in XML related to QNames. QNames are 
pooled and many XML properties are not initialized by default. The reason I did 
this was it avoided many MB of memory waste for complex XML. Please don’t mess 
that up.

Thanks,
Harbs

> On Sep 4, 2019, at 1:02 PM, Greg Dove  wrote:
> 
> This is particularly for Harbs and Yishay, as I think you are both (or both
> have been) using XML quite a bit. I have quite a few  fixes coming. All
> with tests that match on swf and js.
> 
> I am currently working to demonstrate proof of concept to a prospective
> client for migration of a Flex app. The app makes extensive use of e4x and
> uses a bunch of features that I expect had not received attention
> previously, because they were originally either not working with the
> codebase I am porting, or i think some even caused errors in the javascript
> output.
> 
> So I have spent the last several days almost full time figuring things out
> and working on fixes, between the compiler and emulation classes.
> All the previous XML tests continue to pass, but I have many more unit
> tests and fixes lined up for the following:
> 
> namespace directives
> default xml namespace
> use namespace (multiple)
> 
> a number of fixes for xml filtering, including:
> -'this' resolves correctly in filters that include external references from
> the fitler expression to the 'this' scope
> -handles alternate ordering of comparisons between XML 'getters' and
> literals
> e.g. something.(name() = "cat")  or something.("cat" = name()) (these are
> the same)
> -it (will) now handle XML e4x references in nested function calls inside
> the filter, e.g. things like:
> e.g.
> var people:XML = 
>
>Bob
>32
>
>
>Joe
>46
>
>;
> var findJoeByAge:Function = function (i:int):Boolean {
>return i > 40;
>};
> people.person.(findJoeByAge(parseInt(age))).name
> 
> 
> I have lots more granular tests in QName, Namespace, and XML with tuning to
> improve reliability.
> toXMLString XML node output also matches flash more correctly in what I
> have coming.
> 
> One thing that I am trying to figure out, which I would appreciate input on
> if someone has an answer:
> For the example:
> 
> var feed:XML = new XML(
>'http://www.w3.org/2005/Atom;
> xmlns:m="nothing">\n' +
>'   href="blah/12321/domain/"/>\n' +
>'\n');
> var atomSpace:Namespace = new Namespace('http://www.w3.org/2005/Atom');
> 
> Can anyone explain why this (in SWF, as a reference implementation):
> trace(feed.atomSpace::link.length())
> trace(feed.atomSpace::link.toXMLString())
> //output:
> 0
> {empty string}
> is different to:
> trace(feed.child(new QName(atomSpace,'link')).length())
> trace(feed.child(new QName(atomSpace,'link')).toXMLString())
> //output:
> 1
> http://www.w3.org/2005/Atom; xmlns:m="nothing"/>
> 
> I had assumed the above cases would be the same, but the second one is
> behaving as if it has the default namespace included with the specified
> namespace in the QName matching (it does correctly match the namespace
> specifically as well -with e.g.  bound to the uri, but also seems to include link nodes with the default
> namespace, whether or not it is declared). I can accommodate this
> difference to make them behave the same, I just would like to understand
> the basis for the actual rules if anyone knows
> 
> I should be in a position to push the updates this coming weekend I think.



Re: Heads up on XML

2019-09-04 Thread Greg Dove
Good idea. I'll check the swf output, although probably tomorrow as I need
to focus on something else today.
' I would have expected both to return "1" and the node.  '

In that example I would expect the opposite (because the the link node
being returned by the second query is not in the specified explicit
namespace of the QName), so I am curious to understand why you think
that... maybe it will help me understand.

When I use feed.atom::link I expect only links that are bound to the atom
namespace (uri). Because  node has no prefix bound to the uri
that the atom namespace defines, and it is in the default namespace, I
would not expect it to be included.
At the moment the atom::link part is working the same as swf, so I'm happy
with that at least for what I am working on. All the explicit calls to
child(name) or descendants(name) in the app I am working on use string args
so these all work correctly as well.
I'm just trying to cover things for the future... while my head is still in
this stuff.



On Thu, Sep 5, 2019 at 6:11 AM Alex Harui  wrote:

> Speaking of multinames, what is the ABC code generated by the Flex
> compiler for the two cases?  It might contain some clues.  I would have
> expected both to return "1" and the node.  But I did see in the spec the
> notion of "InScopeNamespaces".  I generally hate reading specs like these
> so I am not very knowledgeable about what the spec says.
>
> HTH,
> -Alex
>
> On 9/4/19, 11:05 AM, "Greg Dove"  wrote:
>
> 'Have you rummaged through the spec?'
> Yes, if anything I probably need to step away from it and experience
> the
> world a bit more! I have been focused on each portion of the spec as I
> create unit tests and verify things between the player and the Royale
> implementation.
> I've also glanced a few times in the avmplus code, and that has
> provided
> some clues where things were intentionally implemented slightly off
> spec,
> but still a few things to figure out. However I am making progress - I
> think I have everything covered for the codebase I am working on
> but I
> will keep going beyond that. For that example above, I might be wrong,
> but
> I suspect it is using a multiname with default namespace included for
> the
> explicit call case in the player, but not for the implicit one, but I
> am
> not yet sure why. I will double-check the spec though...
>
>
> On Thu, Sep 5, 2019 at 4:02 AM Alex Harui 
> wrote:
>
> > Don't know.  Have you rummaged through the spec?
> >
> >
> https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.ecma-international.org%2Fpublications%2Ffiles%2FECMA-ST-WITHDRAWN%2FEcma-357.pdfdata=02%7C01%7Caharui%40adobe.com%7C8b56d09a6a314e2d55aa08d731628822%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C1%7C637032171567244570sdata=8LW6weJevEYXpCx%2FEdegixnO%2BgVXDasn3gjKZFOrPFI%3Dreserved=0
> >
> > HTH,
> > -Alex
> >
> > On 9/4/19, 3:11 AM, "Greg Dove"  wrote:
> >
> > This is particularly for Harbs and Yishay, as I think you are
> both (or
> > both
> > have been) using XML quite a bit. I have quite a few  fixes
> coming. All
> > with tests that match on swf and js.
> >
> > I am currently working to demonstrate proof of concept to a
> prospective
> > client for migration of a Flex app. The app makes extensive use
> of e4x
> > and
> > uses a bunch of features that I expect had not received attention
> > previously, because they were originally either not working with
> the
> > codebase I am porting, or i think some even caused errors in the
> > javascript
> > output.
> >
> > So I have spent the last several days almost full time figuring
> things
> > out
> > and working on fixes, between the compiler and emulation classes.
> > All the previous XML tests continue to pass, but I have many
> more unit
> > tests and fixes lined up for the following:
> >
> > namespace directives
> > default xml namespace
> > use namespace (multiple)
> >
> > a number of fixes for xml filtering, including:
> > -'this' resolves correctly in filters that include external
> references
> > from
> > the fitler expression to the 'this' scope
> > -handles alternate ordering of comparisons between XML 'getters'
> and
> > literals
> > e.g. something.(name() = "cat")  or something.("cat" = name())
> (these
> > are
> > the same)
> > -it (will) now handle XML e4x references in nested function calls
> > inside
> > the filter, e.g. things like:
> > e.g.
> > var people:XML = 
> > 
> > Bob
> > 32
> > 
> > 
> > Joe
> > 46
> 

Re: Heads up on XML

2019-09-04 Thread Alex Harui
Speaking of multinames, what is the ABC code generated by the Flex compiler for 
the two cases?  It might contain some clues.  I would have expected both to 
return "1" and the node.  But I did see in the spec the notion of 
"InScopeNamespaces".  I generally hate reading specs like these so I am not 
very knowledgeable about what the spec says.

HTH,
-Alex

On 9/4/19, 11:05 AM, "Greg Dove"  wrote:

'Have you rummaged through the spec?'
Yes, if anything I probably need to step away from it and experience the
world a bit more! I have been focused on each portion of the spec as I
create unit tests and verify things between the player and the Royale
implementation.
I've also glanced a few times in the avmplus code, and that has provided
some clues where things were intentionally implemented slightly off spec,
but still a few things to figure out. However I am making progress - I
think I have everything covered for the codebase I am working on but I
will keep going beyond that. For that example above, I might be wrong, but
I suspect it is using a multiname with default namespace included for the
explicit call case in the player, but not for the implicit one, but I am
not yet sure why. I will double-check the spec though...


On Thu, Sep 5, 2019 at 4:02 AM Alex Harui  wrote:

> Don't know.  Have you rummaged through the spec?
>
> 
https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.ecma-international.org%2Fpublications%2Ffiles%2FECMA-ST-WITHDRAWN%2FEcma-357.pdfdata=02%7C01%7Caharui%40adobe.com%7C8b56d09a6a314e2d55aa08d731628822%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C1%7C637032171567244570sdata=8LW6weJevEYXpCx%2FEdegixnO%2BgVXDasn3gjKZFOrPFI%3Dreserved=0
>
> HTH,
> -Alex
>
> On 9/4/19, 3:11 AM, "Greg Dove"  wrote:
>
> This is particularly for Harbs and Yishay, as I think you are both (or
> both
> have been) using XML quite a bit. I have quite a few  fixes coming. 
All
> with tests that match on swf and js.
>
> I am currently working to demonstrate proof of concept to a 
prospective
> client for migration of a Flex app. The app makes extensive use of e4x
> and
> uses a bunch of features that I expect had not received attention
> previously, because they were originally either not working with the
> codebase I am porting, or i think some even caused errors in the
> javascript
> output.
>
> So I have spent the last several days almost full time figuring things
> out
> and working on fixes, between the compiler and emulation classes.
> All the previous XML tests continue to pass, but I have many more unit
> tests and fixes lined up for the following:
>
> namespace directives
> default xml namespace
> use namespace (multiple)
>
> a number of fixes for xml filtering, including:
> -'this' resolves correctly in filters that include external references
> from
> the fitler expression to the 'this' scope
> -handles alternate ordering of comparisons between XML 'getters' and
> literals
> e.g. something.(name() = "cat")  or something.("cat" = name()) (these
> are
> the same)
> -it (will) now handle XML e4x references in nested function calls
> inside
> the filter, e.g. things like:
> e.g.
> var people:XML = 
> 
> Bob
> 32
> 
> 
> Joe
> 46
> 
> ;
>  var findJoeByAge:Function = function (i:int):Boolean {
> return i > 40;
> };
> people.person.(findJoeByAge(parseInt(age))).name
>
>
> I have lots more granular tests in QName, Namespace, and XML with
> tuning to
> improve reliability.
> toXMLString XML node output also matches flash more correctly in what 
I
> have coming.
>
> One thing that I am trying to figure out, which I would appreciate
> input on
> if someone has an answer:
> For the example:
>
> var feed:XML = new XML(
> 'https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.w3.org%2F2005%2FAtomdata=02%7C01%7Caharui%40adobe.com%7C8b56d09a6a314e2d55aa08d731628822%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C637032171567244570sdata=MGdQ%2FHKuHFqdLQtVw2I%2FO4OWBI5sjyDH7PxEu9Ezmh4%3Dreserved=0
> "
> xmlns:m="nothing">\n' +
> '   href="blah/12321/domain/"/>\n' +
> '\n');
> var atomSpace:Namespace = new Namespace('
> 

Re: Heads up on XML

2019-09-04 Thread Greg Dove
'Have you rummaged through the spec?'
Yes, if anything I probably need to step away from it and experience the
world a bit more! I have been focused on each portion of the spec as I
create unit tests and verify things between the player and the Royale
implementation.
I've also glanced a few times in the avmplus code, and that has provided
some clues where things were intentionally implemented slightly off spec,
but still a few things to figure out. However I am making progress - I
think I have everything covered for the codebase I am working on but I
will keep going beyond that. For that example above, I might be wrong, but
I suspect it is using a multiname with default namespace included for the
explicit call case in the player, but not for the implicit one, but I am
not yet sure why. I will double-check the spec though...


On Thu, Sep 5, 2019 at 4:02 AM Alex Harui  wrote:

> Don't know.  Have you rummaged through the spec?
>
> https://www.ecma-international.org/publications/files/ECMA-ST-WITHDRAWN/Ecma-357.pdf
>
> HTH,
> -Alex
>
> On 9/4/19, 3:11 AM, "Greg Dove"  wrote:
>
> This is particularly for Harbs and Yishay, as I think you are both (or
> both
> have been) using XML quite a bit. I have quite a few  fixes coming. All
> with tests that match on swf and js.
>
> I am currently working to demonstrate proof of concept to a prospective
> client for migration of a Flex app. The app makes extensive use of e4x
> and
> uses a bunch of features that I expect had not received attention
> previously, because they were originally either not working with the
> codebase I am porting, or i think some even caused errors in the
> javascript
> output.
>
> So I have spent the last several days almost full time figuring things
> out
> and working on fixes, between the compiler and emulation classes.
> All the previous XML tests continue to pass, but I have many more unit
> tests and fixes lined up for the following:
>
> namespace directives
> default xml namespace
> use namespace (multiple)
>
> a number of fixes for xml filtering, including:
> -'this' resolves correctly in filters that include external references
> from
> the fitler expression to the 'this' scope
> -handles alternate ordering of comparisons between XML 'getters' and
> literals
> e.g. something.(name() = "cat")  or something.("cat" = name()) (these
> are
> the same)
> -it (will) now handle XML e4x references in nested function calls
> inside
> the filter, e.g. things like:
> e.g.
> var people:XML = 
> 
> Bob
> 32
> 
> 
> Joe
> 46
> 
> ;
>  var findJoeByAge:Function = function (i:int):Boolean {
> return i > 40;
> };
> people.person.(findJoeByAge(parseInt(age))).name
>
>
> I have lots more granular tests in QName, Namespace, and XML with
> tuning to
> improve reliability.
> toXMLString XML node output also matches flash more correctly in what I
> have coming.
>
> One thing that I am trying to figure out, which I would appreciate
> input on
> if someone has an answer:
> For the example:
>
> var feed:XML = new XML(
> 'https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.w3.org%2F2005%2FAtomdata=02%7C01%7Caharui%40adobe.com%7C4fc6b31478da4718992c08d7312038b5%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C637031886769375971sdata=YxDoQRD0NhfUfCK1QWIazLqeiP7vNRFFCaOLFF1NIow%3Dreserved=0
> "
> xmlns:m="nothing">\n' +
> '   href="blah/12321/domain/"/>\n' +
> '\n');
> var atomSpace:Namespace = new Namespace('
> https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.w3.org%2F2005%2FAtomdata=02%7C01%7Caharui%40adobe.com%7C4fc6b31478da4718992c08d7312038b5%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C637031886769375971sdata=YxDoQRD0NhfUfCK1QWIazLqeiP7vNRFFCaOLFF1NIow%3Dreserved=0'
> );
>
> Can anyone explain why this (in SWF, as a reference implementation):
> trace(feed.atomSpace::link.length())
> trace(feed.atomSpace::link.toXMLString())
> //output:
> 0
> {empty string}
> is different to:
> trace(feed.child(new QName(atomSpace,'link')).length())
> trace(feed.child(new QName(atomSpace,'link')).toXMLString())
> //output:
> 1
> https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.w3.org%2F2005%2FAtomdata=02%7C01%7Caharui%40adobe.com%7C4fc6b31478da4718992c08d7312038b5%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C637031886769375971sdata=YxDoQRD0NhfUfCK1QWIazLqeiP7vNRFFCaOLFF1NIow%3Dreserved=0;
> xmlns:m="nothing"/>
>
> I had assumed the above cases would be the same, but the second one is
> behaving as if it has the 

Re: Heads up on XML

2019-09-04 Thread Alex Harui
Don't know.  Have you rummaged through the spec?
https://www.ecma-international.org/publications/files/ECMA-ST-WITHDRAWN/Ecma-357.pdf

HTH,
-Alex

On 9/4/19, 3:11 AM, "Greg Dove"  wrote:

This is particularly for Harbs and Yishay, as I think you are both (or both
have been) using XML quite a bit. I have quite a few  fixes coming. All
with tests that match on swf and js.

I am currently working to demonstrate proof of concept to a prospective
client for migration of a Flex app. The app makes extensive use of e4x and
uses a bunch of features that I expect had not received attention
previously, because they were originally either not working with the
codebase I am porting, or i think some even caused errors in the javascript
output.

So I have spent the last several days almost full time figuring things out
and working on fixes, between the compiler and emulation classes.
All the previous XML tests continue to pass, but I have many more unit
tests and fixes lined up for the following:

namespace directives
default xml namespace
use namespace (multiple)

a number of fixes for xml filtering, including:
-'this' resolves correctly in filters that include external references from
the fitler expression to the 'this' scope
-handles alternate ordering of comparisons between XML 'getters' and
literals
e.g. something.(name() = "cat")  or something.("cat" = name()) (these are
the same)
-it (will) now handle XML e4x references in nested function calls inside
the filter, e.g. things like:
e.g.
var people:XML = 

Bob
32


Joe
46

;
 var findJoeByAge:Function = function (i:int):Boolean {
return i > 40;
};
people.person.(findJoeByAge(parseInt(age))).name


I have lots more granular tests in QName, Namespace, and XML with tuning to
improve reliability.
toXMLString XML node output also matches flash more correctly in what I
have coming.

One thing that I am trying to figure out, which I would appreciate input on
if someone has an answer:
For the example:

var feed:XML = new XML(
'https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.w3.org%2F2005%2FAtomdata=02%7C01%7Caharui%40adobe.com%7C4fc6b31478da4718992c08d7312038b5%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C637031886769375971sdata=YxDoQRD0NhfUfCK1QWIazLqeiP7vNRFFCaOLFF1NIow%3Dreserved=0;
xmlns:m="nothing">\n' +
'  \n' +
'\n');
var atomSpace:Namespace = new 
Namespace('https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.w3.org%2F2005%2FAtomdata=02%7C01%7Caharui%40adobe.com%7C4fc6b31478da4718992c08d7312038b5%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C637031886769375971sdata=YxDoQRD0NhfUfCK1QWIazLqeiP7vNRFFCaOLFF1NIow%3Dreserved=0');

Can anyone explain why this (in SWF, as a reference implementation):
trace(feed.atomSpace::link.length())
trace(feed.atomSpace::link.toXMLString())
//output:
0
{empty string}
is different to:
trace(feed.child(new QName(atomSpace,'link')).length())
trace(feed.child(new QName(atomSpace,'link')).toXMLString())
//output:
1
https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.w3.org%2F2005%2FAtomdata=02%7C01%7Caharui%40adobe.com%7C4fc6b31478da4718992c08d7312038b5%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C637031886769375971sdata=YxDoQRD0NhfUfCK1QWIazLqeiP7vNRFFCaOLFF1NIow%3Dreserved=0;
 xmlns:m="nothing"/>

I had assumed the above cases would be the same, but the second one is
behaving as if it has the default namespace included with the specified
namespace in the QName matching (it does correctly match the namespace
specifically as well -with e.g. 

Heads up on XML

2019-09-04 Thread Greg Dove
This is particularly for Harbs and Yishay, as I think you are both (or both
have been) using XML quite a bit. I have quite a few  fixes coming. All
with tests that match on swf and js.

I am currently working to demonstrate proof of concept to a prospective
client for migration of a Flex app. The app makes extensive use of e4x and
uses a bunch of features that I expect had not received attention
previously, because they were originally either not working with the
codebase I am porting, or i think some even caused errors in the javascript
output.

So I have spent the last several days almost full time figuring things out
and working on fixes, between the compiler and emulation classes.
All the previous XML tests continue to pass, but I have many more unit
tests and fixes lined up for the following:

namespace directives
default xml namespace
use namespace (multiple)

a number of fixes for xml filtering, including:
-'this' resolves correctly in filters that include external references from
the fitler expression to the 'this' scope
-handles alternate ordering of comparisons between XML 'getters' and
literals
e.g. something.(name() = "cat")  or something.("cat" = name()) (these are
the same)
-it (will) now handle XML e4x references in nested function calls inside
the filter, e.g. things like:
e.g.
var people:XML = 

Bob
32


Joe
46

;
 var findJoeByAge:Function = function (i:int):Boolean {
return i > 40;
};
people.person.(findJoeByAge(parseInt(age))).name


I have lots more granular tests in QName, Namespace, and XML with tuning to
improve reliability.
toXMLString XML node output also matches flash more correctly in what I
have coming.

One thing that I am trying to figure out, which I would appreciate input on
if someone has an answer:
For the example:

var feed:XML = new XML(
'http://www.w3.org/2005/Atom;
xmlns:m="nothing">\n' +
'  \n' +
'\n');
var atomSpace:Namespace = new Namespace('http://www.w3.org/2005/Atom');

Can anyone explain why this (in SWF, as a reference implementation):
trace(feed.atomSpace::link.length())
trace(feed.atomSpace::link.toXMLString())
//output:
0
{empty string}
is different to:
trace(feed.child(new QName(atomSpace,'link')).length())
trace(feed.child(new QName(atomSpace,'link')).toXMLString())
//output:
1
http://www.w3.org/2005/Atom; xmlns:m="nothing"/>

I had assumed the above cases would be the same, but the second one is
behaving as if it has the default namespace included with the specified
namespace in the QName matching (it does correctly match the namespace
specifically as well -with e.g.