vote up 3 vote down star

I have a data acquisition program written in C++ (Visual Studio 6.0). Some clients would like to control the software from their own custom software or LabView. I would like to come up with a simple API with a dll I can distribute to them and would like some tips on how to get started. This is going to be VERY basic, maybe 4 or 5 commands. My DAQ program will still be running in its own window on the same machine, I would just like to set it up to be controlled from another program.

Thanks much!

flag

67% accept rate
do you want to publish a c++ api? What are the 4-5 commands? – David Nehme Nov 12 '08 at 22:11
I want to create a dll that can be used by different clients (ie. VB, C++, LabView) and that can talk to my application. The commands would be something like: StartAcq, StopAcq, SetParam1, SetParam2, GetData, etc. – jacobsee Nov 12 '08 at 22:26

9 Answers

vote up 5 vote down check

You are on the right track with a DLL. The real trick, it sounds like, will be deciding what sort of inter-process communication (IPC) you want to use. Options are: sockets, pipes, shared memory, synchronization objects (events, etc.), files, registry, etc.

Once you decide that, then implement a listener within your executable to wait for incoming IPC messages from whatever software is using your DLL.

As far as the API is concerned, you can keep it simple just like you were wanting. Have the DLL expose your 4 or 5 functions (make sure you only use native data types, like char* and long, to avoid module boundary issues), and then those will use your IPC mechanism to communicate with your executing app.

link|flag
vote up 2 vote down

Things that start simple like this have a habit of growing over time, so you may be better off doing a little more work up front and using a technique that will grow with you.

Implementing a COM interface to your program would give the clients are lot of freedom in how the interface with it, and you wouldn't have to worry about the mechanics of IPC, etc since COM is designed to hide all that from you.

In the future COM already has well define idioms for things like events that are well support by scripting languages, etc should you need them.

Update: there are a lot of ways of implementing COM. You can build it from the first principals with the guide of a good COM book, or use of framework like ATL to save some of the boiler plate. There are a lot of good samples, for example see MSDN.

link|flag
Can you give a little more detail about what is involved in implementing a COM interface? In this case would the client communicate directly with my application? – jacobsee Nov 12 '08 at 23:40
How do I download the sample that you linked to? – jacobsee Nov 13 '08 at 16:05
vote up 0 vote down

I agree with Rob. use COM, it might be more work right now but in the long run you will be thankful. However Brian's suggestion is better if you want to control the integration layer right down to the nitty gritty.

link|flag
vote up 0 vote down

There is a related question here. I don't want to end up with something that is LabView-specific, and it appears that LabView can access dlls if they use stdcall. A dll like this would be callable from a VB or other Windows software as well which is what I'm shooting for.

I'm not sure about it's ability to access a COM interface but would appreciate some more detail on what that would look like for my application.

link|flag
vote up 0 vote down

It sounds like you need to take some of the functions from your existing code and create your own DLL. From there you can call those function from the DLL in LabVIEW, VB, or any other language that supports it.

link|flag
Not really -- my application is pretty huge and I don't want to re-write it, just trigger it from another application and have it do all the work that it would normally do, just not controlled from the user interface. – jacobsee Nov 13 '08 at 16:07
vote up 1 vote down

The big advantage of COM is that you don't need a DLL! Your application would always be running, you say. That means that it can act as the COM object creator ("local server").

If someone would want a "stdcall" DLL instead, you could give them a DLL that internally just forwards all calls to the COM interface. Writing it would be quite trivial. You only have 5 functions, you say. That suggests you have one COM interface, with those 5 methods. When the wrapper DLL loads, it asks your EXE to create its COM object. The DLL in turn exposes 5 stdcall methods, each of which calls one method on the COM object.

link|flag
So far I'm leaning toward the simpler idea of just using a dll, but I will look into the COM interface idea more -- I like your idea of a wrapper DLL. – jacobsee Nov 13 '08 at 16:09
vote up 1 vote down

You could use a dll. I'd consider it. But I'd also consider whipping up a simple http-based API, preferably RESTful.

Advantages: Easy to port. Can write a client app from any language trivially. Can work across a network. Testing becomes easier (use a scripting language or your browser).

Disadvantages: Performance is going to be slower. Significantly more plumbing to set it up in C++. I'm not sure if LabView can make http calls.

Something like:

http://xxx/data [GET, maybe POST for testing]

http://xxx/data/start [POST]

http://xxx/data/stop [POST]

http://xxx/data/parameters [POST]

Given your requirements it may be slightly overkill but then maybe not. Many apps I've worked on have had to be ported and would have been quicker to extend if we could have used a faster dev language to test and extend it.

link|flag
Interesting idea but yes, probably not exactly what I'm looking for. – jacobsee Nov 13 '08 at 16:09
vote up -1 vote down

I wish I could merge the top 3 answers into 1.

You can turn your stand along app into a server (COM/SOAP/Corba for instance) and also then provide a number of helper dll or other objects for bringing it into some other native interface.

You could also(alternativly?) provide an ActiveX interface so you might embed a view of the object in another OLE container - say a web page.

I would however suggest that all of the following options are very low level, and should probably be avoided in your example case. Options are: sockets, pipes, shared memory, synchronization objects (events, etc.), files, registry, etc.

The example description on MSDN refers to something you will have in the exampels code from an installed MSVC.

This example on code project might help also, quite short and concise. http://www.codeproject.com/KB/atl/com_atl.aspx

link|flag
vote up 0 vote down

If you want really quick and dirty automation on the same pc, you could also use autohotkey. It's cheating, but it doesn't require changes to your existing app.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.