drjdpowell Posted August 11, 2021 Author Report Posted August 11, 2021 Issue 92: https://bitbucket.org/drjdpowell/jsontext/issues/92/all-integer-types-needed-for-set-map Quote
drjdpowell Posted August 12, 2021 Author Report Posted August 12, 2021 Please try this fix: jdp_science_jsontext-1.6.6.106.vip 1 Quote
Niatross Posted August 12, 2021 Report Posted August 12, 2021 5 hours ago, drjdpowell said: Please try this fix: jdp_science_jsontext-1.6.6.106.vip 2.9 MB · 2 downloads That was a quick turn around. I was going to have a look into it myself but I hadn't even had chance. Thanks for sorting it!! Quote
QueueYueue Posted August 23, 2021 Report Posted August 23, 2021 On 8/5/2021 at 10:29 AM, drjdpowell said: Consider just not including those parameters. Rather than {"A":123,"B":null,"C":789} just have {"A":123,"C":789}; then "B" will be default. Alternately you could put named-Variant values inside your variants (which teh Variant-to-Data node will pass through: Variants are quite tricky, as they can serve both as a temporary container for a value, and a value itself. This is opposite of what I would expect to see. Fundamentally if I give you a cluster with named items (who cares about the data type), I expect the JSON output to an object with fields matching the names of the clusters. All of this "variants have names" discussion is optimizing of weird LabVIEW shenanigans instead of a primary use case. On 8/5/2021 at 10:19 AM, Aristos Queue said: Allow me to rephrase then. Recording an array when passed a NAMED cluster is definitely a bug, regardless of the behavior of the variants. +1 Quote
QueueYueue Posted August 23, 2021 Report Posted August 23, 2021 The following VIs aren't reentrant but should be: - JSONtext.lvlib:Format JSON Array Text.vi - JSONtext.lvlib:Parsing Error.vi - JSONtext.lvlib:Format JSON Object.vi - JSONtext.lvlib:Get all Object Items.vi - JSONtext.lvlib:Get Array Elements.vi - JSONtext.lvlib:Parsing Error in converting to LabVIEW type.vi Quote
drjdpowell Posted August 23, 2021 Author Report Posted August 23, 2021 Does anyone actually use Variants in clusters in this way? To me, this is not even a tertiary use case of JSONtext, so it would be helpful to hear from people with real-world uses. I am tempted to suggest throwing a "Variants not supported" error, but even that would add overhead which I am loath to do. Quote
Tim_S Posted August 23, 2021 Report Posted August 23, 2021 20 minutes ago, drjdpowell said: Does anyone actually use Variants in clusters in this way? To me, this is not even a tertiary use case of JSONtext, so it would be helpful to hear from people with real-world uses. I am tempted to suggest throwing a "Variants not supported" error, but even that would add overhead which I am loath to do. I've used them in that way pre-maps leveraging variant attributes. Don't expect JSONtext to handle that use case, though. Quote
Aristos Queue Posted August 23, 2021 Report Posted August 23, 2021 4 hours ago, drjdpowell said: Does anyone actually use Variants in clusters in this way? Yes. My current customer does. It is a primary use case that we are currently working around the obvious (and trivial to fix) bug in the toolkit. Quote
Michael Aivaliotis Posted October 10, 2021 Report Posted October 10, 2021 is it possible to improve the error handling for empty strings? Perhaps have a special error code I can filter on if an empty string is detected? Quote
drjdpowell Posted October 11, 2021 Author Report Posted October 11, 2021 15 hours ago, Michael Aivaliotis said: is it possible to improve the error handling for empty strings? Perhaps have a special error code I can filter on if an empty string is detected? Use case? Why do you need different custom error than the 402841: "Invalid JSON formatting" that you have now? Quote
JKSH Posted October 12, 2021 Report Posted October 12, 2021 On 10/11/2021 at 1:34 AM, Michael Aivaliotis said: is it possible to improve the error handling for empty strings? Perhaps have a special error code I can filter on if an empty string is detected? How about wiring the string into a case structure selector? Case "": Do your special output Case Default: Wire the string into the JSON VIM Quote
Michael Aivaliotis Posted October 14, 2021 Report Posted October 14, 2021 Yes, empty string is invalid JSON, but so could be malformed text, which is more serious than an empty string which could imply reading a non-existent JSON item. How should I handle reading JSON files where data elements are missing? I like having the default data input so if an item is missing, it returns the default, of course. But now I have to write special code for every node. What is the best practice when using this toolkit for this use-case? I guess I could create custom wrappers. But I wanted to avoid the extra work for something that's common. Am I using it wrong? Quote
JKSH Posted October 15, 2021 Report Posted October 15, 2021 5 hours ago, Michael Aivaliotis said: How should I handle reading JSON files where data elements are missing? Missing as in "field does not exist in the object", or missing as in "field exists but the value is an empty string"? The latter is not truly missing. It exists, and its value is an empty string. The former can be handled using the "Data Type and Default Value" inputs 5 hours ago, Michael Aivaliotis said: an empty string which could imply reading a non-existent JSON item. Sounds like you're using "Find Item.vim"? Make use of the "Found" output, OR switch to "Find Item (as LVtype).vim" to specify the default value. 6 hours ago, Michael Aivaliotis said: I guess I could create custom wrappers. But I wanted to avoid the extra work for something that's common. How do you envision providing the default value if you are able to filter out the proposed "Empty String" error? Quote
drjdpowell Posted October 15, 2021 Author Report Posted October 15, 2021 (edited) JKSH has explained as well as I could the expected use. "Missing from Object" is determined when operating on the Object. I had a look, and it should be reasonably easy to give a different error for a string with only whitespace, but I'll need to understand use case for it better. I, personally, never find the need to write custom error-handling code. By the way, if one's use case is "set from this JSON as much as possible, or use supplied default for items where this is not possible", then one can just not use the error wires at all. Edited October 15, 2021 by drjdpowell Quote
SahnAlbert Posted November 30, 2021 Report Posted November 30, 2021 Hi, I am trying to filter an Array like this: [ { "folder" : "User/Admin/UserA", "User" : "Linda" }, { "folder" : "User/Service/UserB", "User" : "John" }, { "folder" : "User/Admin/UserC", "User" : "Peter" } ] I want to get a Array with all Clusters where folder contains "Admin" This $Path gives me one result in my case. $..[?(@.folder=="User/Admin/UserA")] How can I receive all folders? Something like $..[?(@.folder=="User/Admin/*")] isn't working. Are regEx operators (=~) or the query command contains not working? Thank you, Albert Quote
drjdpowell Posted November 30, 2021 Author Report Posted November 30, 2021 2 hours ago, SahnAlbert said: I want to get a Array with all Clusters where folder contains "Admin" I don't have the filtering syntax of JSONpath yet implemented in JSONtext. In fact, you surprised me by seeming to indicate that $..[?(@.folder=="User/Admin/UserA")] actually works, when it doesn't. At some point I may have teh time to implement that, but in the meantime consider filtering code in LabVIEW like this Quote
ross.smyth Posted April 26, 2022 Report Posted April 26, 2022 re: variants The main use case I have for variants is a tagged union. In a cluster have an enum in one field, and a variant in another and then convert to data based upon the enum tag. Quote
bjustice Posted August 23, 2022 Report Posted August 23, 2022 On 1/30/2020 at 2:07 PM, drjdpowell said: The error is coming from where you attempt to convert null (as in "comment":null) to a string. Intuitively, one would think that a null should be equivalent to an empty string (just as when converted to a number, null becomes NaN and does not throw an error). Thank you for the report. I'm running into this same issue. A web server returns "key":null When trying to use JSONtext to convert JSON to LabVIEW data, I get the error: Unable to convert the following JSON to LVType 'String':null I would love for "null" to return an empty string. Is there a workaround here that anyone has been implementing? I'm doing a string replace for now, but this is hacky and not bulletproof: Quote
MikaelH Posted August 23, 2022 Report Posted August 23, 2022 I have several instances where I get null back for different datatypes, what I have to do is just to ignore the Errors from the JSON VIs. So it will convert everything it can' but when trying to convert NULL to a string it will be empty or for an int it will be zero. Ideally it would be good to be able to say when you find Null for: A strings use "" or "NULL" A INT use 0 or -1 For DBL/SGL it uses NaN and that is prefect. 1 Quote
bjustice Posted August 24, 2022 Report Posted August 24, 2022 I had not considered simply ignoring the JSONtext error output. While this is still not ideal, I like this solution much better. Thanks! Quote
MikaelH Posted August 24, 2022 Report Posted August 24, 2022 You just need to add a magical VI here to get it working: Quote
Mads Posted August 25, 2022 Report Posted August 25, 2022 A related discussion on this is available on the JSONtext Issues page, here: https://bitbucket.org/drjdpowell/jsontext/issues/7/what-should-null-mean-when-extracting-data Quote
ShaunR Posted August 25, 2022 Report Posted August 25, 2022 (edited) The hardest to figure out will be booleans which in JSON can be true, false or NULL. While you can get away with converting null to NAN for output to LabVIEW, be aware that NAN is specifically excluded for encoding as a numeric. Quote Numeric values that cannot be represented as sequences of digits (such as Infinity and NaN) are not permitted. RFC4627 section 2.4 Edited August 25, 2022 by ShaunR Quote
Jasmine Rodriguez-Wagner Posted May 31, 2023 Report Posted May 31, 2023 The Read Config from File.vi implies that it will use the Template if the file does not exist. Using the example "JSONtext Config Example Application 1.vi", I deleted the config file to see if it would indeed create it using the Template. Running the example creates the file, but its blank. Is the Template used for creating the file or for generating the "<JSON> Config" output? Quote
drjdpowell Posted May 31, 2023 Author Report Posted May 31, 2023 Did you do the Write? It only outputs on Write. I am considering having the Read write the Template, as it is confusing to have an empty file untill the Write happens. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.