-
Posts
1,973 -
Joined
-
Last visited
-
Days Won
178
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by drjdpowell
-
It looks like it can be done with a little OpenG gymnastics (though not trivial). But this is making more work for you if you want to avoid an OpenG dependancy. How do you want to proceed with that?
-
I had not considered multi-dimentional arrays. JSON doesn’t have a multi-dimentional array type, but we could just have arrays of arrays. I will look into supporting it. Thanks.
-
Is LabVIEW Object Oriented or Actor Oriented?
drjdpowell replied to manigreatus's topic in Object-Oriented Programming
Can you list some other examples? “Singleton” is the most obvious one, but Singleton is far more “by ref” than it is “object oriented”. Any non-reentrant VI is a singleton. -
Persistent class data or static data for all objects
drjdpowell replied to twols's topic in Object-Oriented Programming
I’ve used that recently. Though a private global isn’t really “global". -
You can use SQLite entirely in memory by using “:memory:” as the filename. Also note that SQLite uses a caching mechanism that makes it effectively in-memory as far as reading goes, as long as the database is smaller than the cache size (2 MB by default).
-
Property nodes are notoriously slow. There’s an advanced technique called “Defer Panel Updates” that can be used to speed things up.
-
You could consider a hierarchal structure of nested LVOOP objects similar to the one we used in the JSON package. Another thought would be SQLite, though I have never done a hierarchal structure in it so it might be more complicated. But you would have the advantage of fast lookup on URLs and just about anything else you wanted fast lookup of.
-
Inheritance in this situation feels a bit icky...
drjdpowell replied to GregFreeman's topic in Object-Oriented Programming
I assume you have no control over the format of the message? Objects are best flattened/unflattened upwards from child to parent, which means the child information should precede parent information in the message. Your messages are the opposite. I suspect you can still parse it without “downcasting”. You’d have to generate a “type” object to call a parse method, but rather than set the private data of the parent type, the parse method would call further parse methods on the remaining bytes to actually return the subclass. So the parse method called on the “type” object would actually return a different object of the final subclass. Does that make sense? It’s a bit like the onion skin of recursion; instead of calling methods one after the other, you call them one inside the other, going all the way down to the final subclass, and then rising back up through the inheritance hierarchy setting the private data of each level. — James -
Accessing the Middle Class Data
drjdpowell replied to John Lokanis's topic in Object-Oriented Programming
I need to install the latest LabVIEW version to look at your code, but some of what you describe sounds very similar to what I’ve done. My Transports are called “Messengers”, and I have “Actor” objects that contain a Messenger that is the method to send messages to a process running in parallel. But other stuff mystifies me. It sounds like you have message classes as the children of your Process classes; but aren’t messages and processes entirely different things. -
Accessing the Middle Class Data
drjdpowell replied to John Lokanis's topic in Object-Oriented Programming
Could you explain your use case? I’m having a hard time grasping what you are trying to do, so I can’t help. -
Which class should hold this data...
drjdpowell replied to GregFreeman's topic in Object-Oriented Programming
Didn’t really follow the description of the problem (you’re sending message classes over a CAN bus?) but the fact that you have a reference (the CAN bus) that is needed by multiple processes (the zones) suggested there should be one dedicated process to encapsulate that reference. It shouldn’t be the Zone Manager because that has a well-defined job (managing zones) that is independent of CAN bus. So you need a “CAN bus actor/active process/whatever” that is the gatekeeper of the CAN bus and forwards all the messages. -
Network Messaging and the root loop deadlock
drjdpowell replied to John Lokanis's topic in Application Design & Architecture
By “easy” I meant dead easy. Google instructions, run two installers, run LabbitMQ examples. Now, configuring a cross-machine, robust-against-failure message broker would be a whole higher level of complexity, but then John’s N-client, M-server system with the requirement of robustness is going to be complex regardless. Can one do it the poor man’s way; have a reentrant subVI that waits on a Shard Variable and forwards message to a User Event? I wrote a TCP server the other way, using dynamically-launched processes, and it actually came together quite well, and seems scalable (though I have yet to had the use case to really test it). There is a “TCP Listener Actor” that waits for connections and launches a “TCP Connection Actor” to handle each one. The Connection Actors forward incoming messages to a local queue (or User Event). As each actor only has one thing to deal with, they are conceptually simple, and don’t need to poll anything (this is in my “Messenging” package in the CR if your interested). An advantage of making your own TCP server is that you can customize things; my server is designed to seamlessly support my messages, which carry reply addressed (callbacks) and have a publish-subscribe mechanism. Supporting both with Shared Variables would (I suspect) be just a complex in the end as going straight to TCP. — James -
Network Messaging and the root loop deadlock
drjdpowell replied to John Lokanis's topic in Application Design & Architecture
I played around with RabbitMQ a bit yesterday. Getting a RabbitMQ broker installed and running was quite fast and easy. LabbitMQ needs polishing and is lacking in documentation, but seems pretty solid. RabbitMQ should do publish-subsribe very cleanly, especially with its “topic” exchange type where one can specify the messages one wants by pattern. And at least according to the documentation, one can cluster multiple computers into a single message broker, providing redundancy against single-point failure (though with the possibility on failure of some messages being delivered twice). — James -
Release the Notifier in your “stop” event case in the top loop; that will cause an error in the “wait on notification" in the bottom loop, causing it to shutdown (since the error is wired to the stop of the loop). That was the use case of the original post; to start and stop listening on FIFO for incoming data. I use secondary loops like this for things I have to wait on, such as a TCP connection. If instead you want a second loop to execute commands from the primary loop, then you are better off using a queue. But you can still use the destruction of the queue in the primary loop to trigger shutdown of the secondary.
-
Network Messaging and the root loop deadlock
drjdpowell replied to John Lokanis's topic in Application Design & Architecture
See this discussion, where I suggested the Actor Framework adopt mje’s mitigation of the issue (which he referred to above). Wait, sorry. You mean for using VI Server for messaging, rather than dynamic launching of VIs. I don’t know what to do about that. -
Well, currently they do let wiring to an indicator define the data type. Unfortunately it has to be directly wired, with no other structure in between, which limits its usefulness: And you still need the “Variant to Type” primitive. But where would type-conversion errors go otherwise? Also, the first thing I would do, if my idea was implemented, would be to make a “Variant to Numeric with Units” VI that would enforce matching units between the Variant and the supplied type. Your idea wouldn’t help with that.
-
Network Messaging and the root loop deadlock
drjdpowell replied to John Lokanis's topic in Application Design & Architecture
One thing to possibly look into is LabbitMQ, a LabVIEW wrapper of RabbitMQ, a message broker system. An already developed message system might have addressed many of your issues. Haven’t tried it myself (has anyone used LabbitMQ?) so I can’t tell how much effort it would be to set up. — James -
Network Messaging and the root loop deadlock
drjdpowell replied to John Lokanis's topic in Application Design & Architecture
I was going to go into that, but bailed with a “…" Maybe you should use a central message “broker”, with all servers and clients connecting via the broker. Then there is only one connection per process. I think Shaun’s Dispatcher works this way, if I recall right. -
Network Messaging and the root loop deadlock
drjdpowell replied to John Lokanis's topic in Application Design & Architecture
Also see the NI examples “DataServerUsingStartAsynchronousCall” or “DataServerUsingReentrantRun”. -
Network Messaging and the root loop deadlock
drjdpowell replied to John Lokanis's topic in Application Design & Architecture
There is only one listener. It listens for clients on a port and creates connections (one for each connected client). Those connections can be serviced either by polling through them or by dynamically spawning a connection handler for each. But there is only one listener. -
Network Messaging and the root loop deadlock
drjdpowell replied to John Lokanis's topic in Application Design & Architecture
One can do a “Server” without polling, if one dynamically spawns new processes to handle each connection. Though dynamic spawning brings one right back to the root loop problem... -
Network Messaging and the root loop deadlock
drjdpowell replied to John Lokanis's topic in Application Design & Architecture
Why are you using VI Server, rather than other communication methods (like TCP, Network Steams or Shared Variables)?