IPC between .NET and C++ applications

后端 未结 4 1675
粉色の甜心
粉色の甜心 2021-01-13 21:53

Are there any libraries for inter-process communication (IPC) between a .NET application and a native C++ application?

相关标签:
4条回答
  • 2021-01-13 22:30

    Check Google's Protocol Buffers (protobuf). The original implementation supports C++, Java & Python, but for .NET there is protobuf-net.

    0 讨论(0)
  • 2021-01-13 22:38

    You can use Socket for simple communication. It's in the os so you don't need any new libraries. Detailed info in C++ Socket and C# Socket

    If the interprocess communication is always going to be done on the same machine, named pipes is the way to go because they are faster than other options.

    0 讨论(0)
  • 2021-01-13 22:38

    Named pipes or I've used COM Interop are both good options.

    0 讨论(0)
  • 2021-01-13 22:43

    A simple (though limited) IPC mechanism is the WM_COPYDATA message

    You can easily use it to transmit a struct to a native application.

    I use the following helper class :

    public static class CopyDataHelper
    {
    
        [StructLayout(LayoutKind.Sequential)]
        public struct COPYDATASTRUCT
        {
            private int _dwData;
            private int _cbData;
            private IntPtr _lpData;
    
            public int DataId
            {
                get { return _dwData; }
                set { _dwData = value; }
            }
    
            public int DataSize
            {
                get { return _cbData; }
            }
    
            public IntPtr Data
            {
                get { return _lpData; }
            }
    
            public void SetData<T>(T data) where T : struct
            {
                int size = Marshal.SizeOf(typeof(T));
                IntPtr ptr = Marshal.AllocHGlobal(size);
                Marshal.StructureToPtr(data, ptr, true);
                _lpData = ptr;
                _cbData = size;
            }
    
            public T GetData<T>() where T : struct
            {
                return (T)Marshal.PtrToStructure(_lpData, typeof(T));
            }
        }
    
        [DllImport("User32.dll")]
        private static extern bool SendMessage(IntPtr hWnd, uint Msg, IntPtr wParam, ref COPYDATASTRUCT lParam);
    
        public const int WM_COPYDATA = 0x004A;
    
        public static bool Send<T>(IntPtr fromHwnd, IntPtr toHwnd, int dataId, T data) where T : struct
        {
            IntPtr ptr = IntPtr.Zero;
            try
            {
                COPYDATASTRUCT cds = new COPYDATASTRUCT();
                cds.DataId = dataId;
                cds.SetData(data);
                return SendMessage(toHwnd, WM_COPYDATA, fromHwnd, ref cds);
            }
            finally
            {
                if (ptr != IntPtr.Zero)
                    Marshal.FreeHGlobal(ptr);
            }
        }
    
        public static COPYDATASTRUCT Receive(Message msg)
        {
            if (msg.Msg != WM_COPYDATA)
                throw new ArgumentException("This is not a WM_COPYDATA message");
            COPYDATASTRUCT cds = (COPYDATASTRUCT)msg.GetLParam(typeof(COPYDATASTRUCT));
            return cds;
        }
    
    }
    

    To catch the WM_COPYDATA message, you need to override WndProc :

        protected override void WndProc(ref Message msg)
        {
            if (msg.Msg == CopyDataHelper.WM_COPYDATA)
            {
                CopyDataHelper.COPYDATASTRUCT cds = CopyDataHelper.Receive(msg);
                if (cds.DataId == myDataId)
                {
                    MyData data = cds.GetData<MyData>();
                    msg.Result = DoSomething(data);
                    return;
                }
            }
    
            base.WndProc(ref msg);
        }
    
    0 讨论(0)
提交回复
热议问题