473,322 Members | 1,347 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,322 software developers and data experts.

Suggested format for data encapsulation

Hello,

I have a fairly complex project with server-side written in C# (.NET),
and client-side heavily relying on the presence on
JavaScript-compatible scripting engine. One of the features thie
project utilizes is "virtual POST", ie, client side submits the data
to the server side, using Microsoft.XMLHTTP ActiveX Object (in MSIE),
or XMLHttpRequest class in Mozilla, and when the server returns reply,
processes it in client side to run some JavaScript and manipulate with
DOM.
The thing is, I am looking for decent, not-too-verbose data
serialization encoding that would allow me to send JavaScript-type
data to the server and back. With JavaScript-type data I mean value
that could be described as one of the following:
0) null
1) numeric value
2) string value in quotes
3) boolean value: true/false
4) date value: new Date(x, y, z)
5) array: [value, value, ...]
6) object: {value:value, value:value, ...}
Here is example of the tata that I want to be able to xfer to and from
the server:
[1, "abc", true, {a:1, b:[10,11,12, new Date(x, y, z)], c:{x:"foo",
y:"bar"}}]

Until today , I used JSON (http://www.crockford.com/JSON/index.html)
notation, cause I find it short and to the point. I have wrote my own
JavaScript code for encoding and decoding the data to and from the
JSON. However, I have stumbled upon the situation that for large data
blocks the client-side scripting engine is too weak to parse it in
reasonable time, and I am forced to use another encoding. So, now I am
thinking on XML encoding. The example above could be encoded like
this:

<value type="array">
<value type="num" value="1"/>
<value type="str" value="abc"/>
<value type="bool" vaue="true"/>
<value type="object">
<value key="a" type="num" value="1"/>
<value key="b" type="array">
<value type="num" value="10"/>
<value type="num" value="11"/>
<value type="num" value="12"/>
<value type="date" value="x y z"/>
</value>
<value key="c" type="object">
<value key="x" type="str" value="foo"/>
<value key="y" type="str" value="bar"/>
</value>
</value>
</value>

Which, of course, is much more verbose, but still the shortest way I
can think of to describe the JavaScript data structures in XML. Plus,
I could do speedy parsing on the client-side using built-in XML
parsers (vs present JSON parse that is driven by series of Regex
searches that make it slow).

So, my question is, whether there is already some running initiative
on this matter, and perhaps I need not to reinvent the wheel, and
JavaScript encoding/decoding code for this serialization format is
available?

Regards,
Pavils Jurjans
Jul 23 '05 #1
2 1667
Pavils Jurjans wrote:

Hi,
Until today , I used JSON (http://www.crockford.com/JSON/index.html)
notation, cause I find it short and to the point. I have wrote my own
JavaScript code for encoding and decoding the data to and from the
JSON. However, I have stumbled upon the situation that for large data
blocks the client-side scripting engine is too weak to parse it in
reasonable time, and I am forced to use another encoding. Plus,
I could do speedy parsing on the client-side using built-in XML
parsers (vs present JSON parse that is driven by series of Regex
searches that make it slow).


JS Regexp engine is NFA-based, so the way you've scripted your regular
expressions may have a huge impact - regexps optimisation would be a
good lead, using standard stuff such as anchors, non-greedy operators...

However as you describe it you just seem to need a tree (as would an XML
parser would give you) - so why don't you directly eval the JSON
structure, as recommended by the author?

<URL:http://www.crockford.com/JSON/js.html>
As for your original question, I'm aware of no tool like the one you're
searching, but OTOH I've never needed any - I'll leave to others the
Ultimate Tool Recommendation:-)
Cheers,
Yep.
Jul 23 '05 #2
Hi Yann-Erwan,
JS Regexp engine is NFA-based, so the way you've scripted your regular expressions may have a huge impact - regexps optimisation would be a
good lead, using standard stuff such as anchors, non-greedy operators...

Ok, I'll try do check this... yet I'm sort of unsure if that's the way
to go. The processing of large data block still will be quite slow. Why
should the user suffer?
However as you describe it you just seem to need a tree (as would an XML parser would give you) - so why don't you directly eval the JSON
structure, as recommended by the author?


Because the eval is much more powerful. In case of bad formatting of
illegal features I want to throw error at the client side. eval could
do evil things - run functions, override global variables, etc. I want
to control the parsing, because it's more secure.

I came to concluction that I could shorten the XML format even more:

<array>
<num value="1"/>
<str value="abc"/>
<bool value="true"/>
<object>
<num key="a" value="1"/>
<array key="b">
<num value="10"/>
<num value="11"/>
<num value="12"/>
<time value="25-02-2005 13:11"/>
</array>
<object key="c">
<str key="x" value="foo"/>
<str key="y" value="bar"/>
</object>
</object>
</array>

If no other stardard will be suggested from the group until the end of
february, I will go on and implement this.

Regards,

Pavils

Jul 23 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: blueblueblue2005 | last post by:
here is a friend function of Class Array, which has two private data member: int size, int *ptr // Array's public member function to return size int getSize() const { return size; } friend...
12
by: Alex Hunsley | last post by:
There's no really specific questions in this post, but I'm looking for people's thought on the issues within... The two main versions I've encountered for data pseudo-hiding (encapsulation) in...
2
by: Neo | last post by:
I was written this code; in VS2k5 class Program { private: int a;
63
by: time.swift | last post by:
Coming from a C++ / C# background, the lack of emphasis on private data seems weird to me. I've often found wrapping private data useful to prevent bugs and enforce error checking.. It appears...
32
by: bluejack | last post by:
Ahoy: For as long as I've been using C, I've vacillated on the optimal degree of encapsulation in my designs. At a minimum, I aggregate data and code that operate on that data into classlike...
11
by: sofeng | last post by:
I'm not sure if "data hiding" is the correct term, but I'm trying to emulate this object-oriented technique. I know C++ probably provides much more than my example, but I'd just like some feedback...
1
by: subramanian100in | last post by:
I am a beginner in C++. I come across the terms data abstraction and encapsulation in C++. I am unable to understand the definitions. Kindly explain these terms with a simple example in C++ ...
2
by: subramanian100in | last post by:
Is my following understanding correct ? Data abstraction means providing the interface - that is, the set of functions that can be called by the user of a class. Information hiding means...
162
by: Sh4wn | last post by:
Hi, first, python is one of my fav languages, and i'll definitely keep developing with it. But, there's 1 one thing what I -really- miss: data hiding. I know member vars are private when you...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.