Interprocess Communication Server


Version: 1.07
Size:
181KB
Category:
Development
C/C++
Requirements:
No special requirements
Seller:
garret.ru
Price:
Free
System:
Windows 2000/Me/NT
Rating:
4.6
License:
Freeware

Description - Interprocess Communication Server



RIPC is library providing interprocess synchronization and communication capabilities for processes running at different network nodes. RIPC provides wide set of standard primitives: semaphore, event, FIFO queue, Barrier, shared memory, shared and exclusive Locks. Structure of RIPC packageRIPC package consists of two libraries:ripcclient.libProvides stubs of RIPC primitives sending requests to the server ripcserver.libServer implementation of RIPC primitives RIPC supports local and remote sessions. Remote sessions created by RIPCClientFactory class establish connection with the server through TCP/IP stream socket. Server Process should be started before clients. In this case primitives at local computer servers as stubs and redirect requests to the server. This mode is useful to provide synchronization and communication Between several processes at the same or different computers.Local sessions are created by RIPCServerFactory class. Them are useful to provide synchronization of threads within the same process (if you want to use more sophisticated synchronization primitives than standard synchronization facilities provided by OS). The single local session can be shared by all threads. No server process should be started in this case.Quick startInclude files needed for use of RIPC package are located in inc directory. Libraries are located in lib directory. Version of RIPC for windows is provided with binaries of these librarier and server built by Visual C++ comiler. At all other system you will have to build these libraries yourself. Change directory to src and exceute make (for Visual C++ RIPC provides make.bat file which invokes MS nmake utility for makefile.mvc). By Default static version of librarier are built. To produce dynamically linked librariers, edit makefile and assign set GENERATE_DLL=1. In case of using DLL libraries do not forget to include them in PATH (at Windows) or in LD_LIBRARY_PATH (at Unix).



More in C/C++-Interprocess Communication Server

Provide Synchronization Server Process