Jump to content

Francois Normandin

Members
  • Posts

    1,209
  • Joined

  • Last visited

  • Days Won

    46

Posts posted by Francois Normandin

  1. The Message Enqueuer instance is created within Actor.vi and encapsulates the receiving queue of the actor.
    The Actor launcher does not expose any way to specify a more specific type of message enqueuer, so I'm afraid that even though you wish to extend this class, it is impossible to instantiate it with your child type.

    The reason the Message Enqueuer does not let you access its private data is that it is specifically meant as a wrapper to prevent anyone from accessing the Priority Queue class. I assume the intent is to make sure you cannot mess with the message delivery principles such as rerouting messages before they arrive at the Actor Core. If it were allowed, it could cause thread safety problems, security issues (possible hacking target) or mess with the #1 feature of actors: trust that messages are processed by the core in the order the messages were enqueued.

     

  2. Hi Diego, 

    to speed things up, you should consider separating the TCP read  and the file writing in two separate loops. For example, if you make two parallel loops: one that reads and adds data to a queue, and a second which reads the queue and writes to file, then you can read multiple datapoints at once and write less frequently to the file.

    Investigate the use of a Producer-Consumer architecture.

    I took the liberty of reorganizing your example to demonstrate the concept. I'd probably approach your task where your Python code is the client that publishes data and LabVIEW would act as a server (instead of the other way around), but I wanted to keep with the spirit of your example.

    image.thumb.png.e47e7d3ae765e7c2240d8bb30b37f57c.png

     

     

    Client.vi

    • Like 1
  3. 6 hours ago, mthheitor said:

    My doubt is about the order of the boolean. In my example there four boolean: 1) "Home", 2) "Ensaio", 3) "Análise" and 4) "Configurações".

    How can I ensure the order of the boolean inside the array?

    I mean, if a user delete the boolean named "Ensaio" (2nd element of the array) and add another one, it will be the second element of the array or will be last one?

    The method you invoke on the Panel reference always returns the Controls in the order that they were created.

    aka. If you delete the second element and create a new one (even with same label), it will be added to the end of the list. 

  4. On 19/10/2018 at 0:12 AM, UnlikelyNomad said:

    That DAQmx template is slick. Definitely not a state machine and definitely already handles some of the features I was thinking of like templating asynchronous background tasks.

    Indeed, not a State Machine... "JKI State Machine Objects" gets its name from the use of "JKI State Machine" as its core "Process.vi", which is not a state machine. It is an Event-driven Queued Message Handler (QMH). State Machine was a misnomer and the name stuck around as it was (still is) a very popular template.

  5. On 19/10/2018 at 0:49 AM, UnlikelyNomad said:

    I'm curious on the effort done to cast DVRs back and forth between an int.Googling doesn't seem to bring anything up so I'm curious how this became a thing and what benefits it provides? Does it stop LabVIEW from doing some tricky thing with DVRS? Does it make the scripting simpler?

    The reason for this typecast is to break type propagation that plagues edit-time performance which occur when you have a large class hierarchy. It is not because it makes scripting easier (on the contrary). In essence, when you edit a class' private member, the class' mutation history is modified and the LabVIEW IDE goes through a series of checks and recompiles to propagate the changes. For very small projects, this is completely trivial and does not affect edit-time performance, but for larger hierarchies (think Actor framework...) it becomes a real issue. One way to reduce this performance lag is to never put typedefs in the class private data... but this is up to the developer to stick to that rule or not. When you use an integer, using typedefs does not affect the edit time performances at all.

    As Rolf mentions, this pattern was popularized by GOOP (now OpenGDS).

    When creating a framework, you can never predict how the developers will use it... Obviously, if you use a framework and it starts to lag as your project's complexity increases, you are quickly going to blame the framework for the performance degradation (just like we blame Windows for running slower after we've bloated our computers with a bunch of apps, but that's another topic...). So it is very tempting to use tricks like this typecast to an integer to break this slow type propagation.

    As was mentioned by Smithd, it is risky... but if it stays in the private methods of your class, it is totally safe.

    In JKI SMO, you'll notice that this is used through two private methods and the DVR type is typedef'ed. You can very well create SMOs that do not use this trick. 

    • Like 1
  6. 21 minutes ago, ShaunR said:

    ... I always needed to have it installed in the LabVIEW vi.lib directory and any time I updated it had to reinstall for the other toolkits.

    Shaun, can you elaborate on why you needed to reinstall the other toolkits when you update your encryption library? If the project-specific librairies all pointed to vi.lib, why did their linkage break?

  7. 5 hours ago, hooovahh said:

    Isn't this already handled by VIPM anyway?  You include the license, and version constrictions in the package.  When you upload code to LAVAG.org you are already authorizing LAVA to store and distribute your code.

    I meant that LAVAG should verify that the code it hosts does not infringe on licenses, or at least have a process to summarily verify.

    You are right that VIPM handles the actual license from the user's perspective.

  8. This is a good idea, but I think it would require a more thorough editorial review of submissions to put them on the such a repository.
    Other than the obvious code reviews, "LAVAG" would need to examine for possible license issues, consistency across versions, develop more precise guidelines for submissions, etc.

    The hardest part would be to maintain the same standards over the years, as people's commitment to their "review committee duties" will undoubtedly fluctuate over time.

    As for the actual repository, you don't need a server running. The package publisher needs VIPM Pro to modify and manage the destination folder. The content of the repository is stored as files on any accessible drive, so it's a matter of adding it to the list of network URLs. (requires VIPM Pro as well, as mentioned above, unless on LVTN or JKI Package Network)

  9. The core process skips showing the UI when on RT.
    You can modify this in the Basic Test Manager's process by removing the conditional disable structure.

    However, you should probably make a request on the open source project (https://github.com/JKISoftware/Caraya) or fork the original repo. Modifying this in vi.lib will not make it persistent and is a bad idea...

    It might be that the logic could be smarter in that if the RT target does not have a UI, it would skip it, but not assume that all RT targets don't allow UIs. There might also be the possibility to modify the test suite setup to inject your own override code, for which you could simply change the behavior of the basic test manager.

    2018-07-16_16-47-42.png

    • Like 1
  10. Hi Ashwin, 

    Try with "Sheet1" instead of "sheet1".

    Otherwise, I am getting corruptions as well... but they can be repaired.

    Check out my post from April 16th 2016 above. It might be the reason this does not work (newer version of OADL 1.3)

     

     

     

  11. It seems the DLL folder is missing from the source code. **EDIT** I've updated the repo to include the files. **END**

    In the meantime, use VI Package Manager to install the VIP file which correctly includes the DLLs. You can extract the whole missing folder from there if you want to play with the source.
    https://lavag.org/applications/core/interface/file/attachment.php?id=11167

     

     

×
×
  • Create New...

Important Information

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