Jump to content

OpenGDS GOOP400 Read by reference


Recommended Posts

When I create new property node methods for a GOOP400 class using the OpenGDS they look like this :

Read original.PNG  Write.PNG

The Write method gets the reference to the data and then modifies it in place.The read method gets a complete copy of the data and unbundles the wanted element. When the object contains a lot of other (large) elements I would like to avoid copying the entire data to unbundle just 1 element. This means also getting a DVR to the object and unbundle the element inside an in place element structure, as shown here :

Read by reference.PNG

In LabVIEW 2017 and above I could even use "Allow parallel read-only access." to make sure it's read-only.

Currently I modify such read methods manually each time I create a new one. I know I could update the template but I was wondering if there is any good reason not to do this. Or what is the reason why the original OpenGDS is reading by copying the entire cluster?

Link to comment

I'm on your side, I often do the same if I can be bothered. In rare cases I even edit the GetAttributes to entirely remove the cluster out; not sure if that actually helps but it does break the "GOOP/Add Method" a little. You should update the template and create a pull request.

Interesting choice on ignoring the incoming error when you get the attributes.

Link to comment
  • 1 month later...
43 minutes ago, Michael Aivaliotis said:

Yes, but ignoring the IPE error out on read as well? I would think that you would want to know if the IPE structure fails completely. This would be a sign of a bad DVR ref.

The GetAttributes checks the DVR ref and generates a 1556 error if the DVR is invalid, but of course the DVR Ref could be killed externally between the Get Attribute and when the IPE node is executed...there is always a chance.

 

Link to comment

Thanks for the feedback and for updating the templates.

 

On 9/28/2018 at 9:01 AM, ThomasGutzler said:

Interesting choice on ignoring the incoming error when you get the attributes.

When creating the screenshots I kept the error handling mechanism of the original read. I probably didn't pay enough attention on error handling, just wanted to point out the difference in read by value or by reference issue. 

On 11/20/2018 at 11:19 PM, MikaelH said:

I would try to avoid having to much data in the Attribute, but if I need it I might user the Reference Variable Design Pattern GDS can apply to a class.

The Reference Variable Design is indeed a good alternative if working with large datasets. I wasn't aware of that. One disadvantage of that design pattern however is that the GDS can't create property methods for the referenced variables. They are not in the "Data Fields/Attributes" list of the Create Method Dialog. This makes it more cumbersome to create property methods for this type of attributes.

Link to comment
12 hours ago, StefanLemmens said:

One disadvantage of that design pattern however is that the GDS can't create property methods for the referenced variables.

I don’t agree ?, you just need to know where to look ?


Every design pattern that is added to a class, have the ability to add new Method templates and you’ll find them here.


RefVar1.png.19c31caaf2486f67e8b1ae78acfe58b8.png

 

This is the same if you add the Active Object Design pattern there is a method templates that helps you send and receive a message form the active process.

BTW, I've created the new version with new templates, I just need to upload them, I let you know when it's done.

Link to comment

I wasn't aware of the power of all those design patterns. This makes a great toolkit even greater. This discussion made me realize I have to take a closer look at all those different design patterns.

On 11/22/2018 at 10:23 PM, MikaelH said:

Every design pattern that is added to a class, have the ability to add new Method templates and you’ll find them here.

I tried to add the new method as a property node instead of a normal method. That's why I couldn't find it. Having these templates for every design pattern makes them very easy to use.

On 11/23/2018 at 10:33 PM, MikaelH said:

The new version is ready for download under Untested Version

https://opengds.github.io/

I downloaded the new version and it looks perfect to me. Thanks for updating the templates so quickly.

  • Like 1
Link to comment

I would love to get more time to show everyone all the nice and fun feature that exists in the GDS tool.
If anyone like to help please feel free :-). I'm aiming to document the "Convert Text based code to LabVIEW" next.
You can always test it and see if you understand how to use it...
You can google come Java or c# Design pattern examples (e.g. Observer pattern), and convert those classes straight into LabVIEW.
I also want to document the API VIs, if you haven't tested them you can find them + examples here:
LabVIEW 20XX\resource\Framework\Providers\Open_GDS\API

 

 

  • Like 1
Link to comment

FYI, version 1.2.38 has an issues when creating Override methods.
Please use the latest one 1.2.39
https://opengds.github.io/

You won't believe what I had to do to get it working ;-), coding VIs that runs in the project provider application instance is not always easy.
A VI that works fine when you run it normally, could still crash/freeze LV when it's running under the project provider application.
I hope it will be easier in NXG.

Link to comment
  • 4 months later...
On 11/29/2018 at 1:07 PM, MikaelH said:

You won't believe what I had to do to get it working ;-), coding VIs that runs in the project provider application instance is not always easy.
A VI that works fine when you run it normally, could still crash/freeze LV when it's running under the project provider application.
I hope it will be easier in NXG.

So, can you make a tutorial (provide links to info/examples) on specifically that topic: How to make your own project provider, how to add your own items/code to the popup menu on the items in the project editor tree, including your own New..., the same way way Open GDS and AF do? Is this the best place to start? https://forums.ni.com/t5/LabVIEW-Project-Providers/gp-p/bymqyodmkc?profile.language=en

What specific troubles did you run into that are not covered there?

Edited by styrum
Found more info
Link to comment

Hi
Yes start with the Projected Provider documentation and the look through examples (e.g. the OpenGDS).


I started in LV8.2, and lots of the issues I had, have probably been fixed since then.

But one thing to remember is that it doesn’t (or at least didn’t) like to do things in parallel.


E.g. if you add an item to the project tree (e.g. a new class), then that could trigger some other project provider calls (e.g. a new item added to the project window), so I had to add a small wait after those functions.


If I didn’t do that LV could crash from time to time, that’s why you can find a lot to 150ms wait in the Open GDS code.

Debugging the project provider code is a bit tricky.


You can save a Break point on the BD of the provider VI, and then restart LV.


The first time the code hits that break point the You can debug the code, but after that you Can debug the VI anymore, you have to restart LV again.


 

Make sure you open VIs in the correct application instance if you want to modify them, and always remember to close all the referees opened in the provider VIs.

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.