[Edit] Vastly improved version 0.3 released Aug 31, 2012. Now with more data types and cleaned up error handling.
[Edit] Sept 4, 2012. Fixed the linking problem that was causing VIs to be broken on your machines.
[Edit] Sept 12, 2012. Full support for variants. More array data types. Problem with serializing time stamps solved so they maintain full precision in JSON. Still haven't tackled the UTF+8 issue for JSON.
[Edit] Oct 30, 2012. All data types now included. Test suite refined. INCLUDES CIRCULAR GRAPH OF DATA VALUE REFERENCES (unexpectedly easy solution).
[Edit] August 2, 2013. Large number of changes to framework. Expect documentation and changelog to come. Package built for LabVIEW 2013.
[Edit] March 4, 2014. Continued refinement of framework. 2D arrays and Filter removed to reduce bloat of the framework (2D arrays still addable as extended types if you want one in your serialization). Binary Serialize/Deserialize added. Split into two packages.
Introducing draft version of the AQ Character Lineator, a library for taking LabVIEW objects and reducing them to character sequences and then restoring the objects back later. Why the strange name? Because I got multiple people all having different opinions on what I should call this and I went with a name that has zero hits on Google (a true Googlewhack until someone mirrors this post).
These VIs or their evolution may become part of LabVIEW in the future. National Instruments reserves all rights necessary to allow their distribution as part of LabVIEW. Any modifications made may only be shared by posting back to ni.com. You agree that all modified versions posted may become part of LabVIEW in the future without any compensation to you.
Package is built for 2013 due to a new vi that the framework takes advantage of. It is possible to save it in previous versions but we lose some speed and efficiency.
So... what does this library do?
There's pretty much zero documentation. VIs and classes are named with a fair amount of detail, but after that, well, it's a barren landscape. I will be filling this in in the next revision.
You're going to see some fairly non-standard error handling on these VIs... I've become opposed to putting "error in" on dynamic dispatch VIs, so I've got a lot more "merge error" nodes than normal whose only purpose is to preserve warnings. I hate warnings propagating on error wires... I'd throw them out of the language if I had my way. The error handling on these diagrams would be a lot cleaner if I stopped trying to preserve warnings. The whole error system may get reworked in a future revision of this library, but it works fully as it stands and I may leave it, depending upon your feedback.
How do you start:
Package installs into the vi.lib under the folder NI. Open the enclosed project file. Inside, you'll see a virtual folder for "Test". That is where you will find a partial test plan for the library. Open and run "BIG TEST To String.vi" for a sample of most of the data types in both FXML and JSON and to see how the mutation works across version bumps of your classes. Open any of the "TEST_ME.vi" files to test specific subsets of the type functionality. I am still finishing out the test suite. Any type that does not have a named test suite is not fully tested and is much more likely to have bugs at this time. The ones with named test suites are pretty solid.
The Test....lvclass files are examples of the types of classes you would create to be serialized. That's the part 90% of you are interested in. The two inherited functions in those classes are the ones that we want to have a nice scripting tool to generate (the magic scripting tool mentioned in the design document).
The JSON Serializer class and the JSON Deserializer class are of interest to the next 9% of you who want to create custom file formats. You can judge for yourselves the amount of labor that will be needed to support a new case.
The next 0.9% of you may be interested in localization for human cultures. Take a look at the Formatter class.
The remaining 0.1% who actually want to figure out *how* it all works and make comments about the under-the-hood stuff are free to wander where you will. I have added limited comments at this point, but certain sections, like the handling of variants, will require some study to understand.
Comments welcome!
@ AristosQueue I wanted to check if there was some new development in this module since latest version posted here is from 2014. I wil have to develop XML serialiser/deserialiser at some point, but I would like to avoid reinventing the wheel 🙂
Could You upload latest version here if there were some important updates?
I'm using AQ Character Lineator to convert LV object to JSON. It works fine in sources (LV2019 SP1) but I got the following error building EXE
The only workaround I found is to
I say it's a workaround because:
Does anybody already come across this issue ? If so how you fixed it ?
Thanks in advance for your help.
This seems like it might be a similar issues as here: https://lavag.org/topic/16360-lvtn-messenger-library/?do=findComment&comment=131536
Involved Messenger Library actors, but they are launched in a similar way to AF Actors, so could be the same issue. I think it is a bug in the LabVIEW Builder.
Hi,
I also had several issues with a large project ...
As the AQ Lineator has many VIs, I decided to decouple and bundle them into lvlibs (and compile into lvlibps) some time ago. I split up the interface and the JSON de/serializer into separate packages. These packages are only a few MBs each, sitting next to the exe and no problems since then.
KR, Benjamin
Thank you both for your imputs.
I'll give it a try.
As the author of the Character Lineator: No idea what's wrong. There's nothing special about the library. Someone who works on LabVIEW should fix this.
As someone who works on LabVIEW: No idea what's wrong. I'll pass this thread along to those who regularly work on AppBuilder.