10-21-2016 03:58 AM
Hello,
I have stared using OOP in LV some time ago, and there is something that I don't undrestand.
When I modify 1 class VI all class members are recompiled and also modified despite of fact that I haven't touched them.
This becomes a serious problem when using source controll, I am pushing hundreds of VIs to the server and without comments I can not tell which VI was modified. Is therea way around that? When programming without classes I never had this problem. I am using GOOP from Symbio
10-21-2016 04:13 AM
Is that VI in question a subvi to the other ones?
When working with source control, it is recommended to separate the compiled code from the VI files. Have you configured your LV environment to do so?
Norbert
10-21-2016 04:51 AM
Thanks,
Vi is not Subvi,
Never heard about separate compiled code, will play with that and see
10-21-2016 05:54 AM
Hm, then the separation option will likely not change things.
Are there any specific reasons why you are using GOOP instead of LVOOP?
Norbert
10-21-2016
09:08 AM
- last edited on
03-24-2025
01:31 PM
by
Content Cleaner
It allows to have classes as DVRs without necessity to write everything from scratch. In my opinion greatly extends IDE functionality. I think the same problem will happen when using normal by value classes.
https://www.ni.com/en/support/downloads/tools-network/download.goop-development-suite.html
10-22-2016 02:36 AM
Played a while with the separate compiled code and the same thing is happening. For bigger project that I work on I hust save class when adding a vi and when I close project, then I dont save all changes hoping that I didn't miss anything so I can commit only what was modified. But If I forget it is a diseaster because some files might be missing inside class.
10-22-2016 10:14 AM
@pawhan11 wrote:This becomes a serious problem when using source controll, I am pushing hundreds of VIs to the server and without comments I can not tell which VI was modified.
As stated, is this even a problem? Let's say it didn't happen. You'd know which VI was modified but that's relatively useless. You don't know how. This does soud like a bit of a pain. But, you should be using comments regardless. Get out of the bad habit of neglecting your duty to comment.
Do you have a small project that shows this so we can play around with it to see?
10-24-2016 02:23 AM
@pawhan11 wrote:
Hello,
[...]When I modify 1 class VI all class members are recompiled and also modified despite of fact that I haven't touched them.[...] I am using GOOP from Symbio
I am not aware that this issue occurs with standard LVOOP. For sure, the specific VI and the class VI are modified as well as all callers (unless you use the separate option). Other VIs from the class should not be marked as modified.
My assumption is your comment about DVR of classes. I can imagine that when changing a class VI also re-evaluates the class itself (lvclass). Hence all VIs using a DVR on the class are updated as well.
Norbert
10-24-2016 05:35 AM
You could test G#, it's also DVR based and even has a GOOP->G# conversion tool. The original developers are the same. 🙂
I don't remember this being a big problem in G#, though if you touch a base class the child classes will ofc be touched.
/Y