IMPORTANT NOTE: This is more an exercice for me to learn how to make installable packages than an actual useful repo.
IMPORTANT NOTE: It is not finished, so expect errors
cpp_python_socket
Simple TCP/IP socket comunication wrapper between c++ and Python for IPC.
General Information
- Branch master covers simple string communication, relies on standard libraries.
- Branch image_transferring adds image transferring capabilities, relies on:
- OpenCV for c++:
https://github.com/opencv/opencvBuild
- OpenCV for Python:
pip install opencv-python
Only tested in Ubuntu 16.04, write an issue should you find any error.
Quick Start
- Either clone or add as a submodule this repo to your project folder:
git clone https://github.com/OleguerCanal/cpp_python_socket.git
or
git submodule add https://github.com/OleguerCanal/cpp_python_socket.git
- [OPTIONAL] Change branch to enable image transferring:
cd cpp_python_socket/
git checkout image_transferring
- If intending to use C++ code, add this 3 things to your CMakeLists.txt:
add_subdirectory(cpp_python_socket)
- Append
cpp_python_socket/cpp/include
toinclude_directories(...
- Append
cpp_sockets
totarget_link_libraries(...
of your library/executable.
Test the code
-
Change directory
cd cpp_python_socket/
-
Build it:
./build.sh
-
Run unit test:
- Terminal 1:
python python/server.py
- Terminal 2:
cd cpp;
./run_cpp_client_test.sh
Usage examples
Python Server:
from cpp_python_socket.python.server import Server
if __name__ == "__main__":
server = Server("127.0.0.1", 5001)
message = server.receive()
print("[CLIENT]:" + message)
server.send("Shut up")
C++ client:
#include <iostream>
#include "client.hpp"
int main() {
socket_communication::Client client("127.0.0.1", 5001); // ip, port
client.Send("Hello hello!"); // Send string
std::string answer = client.Receive(); // Receive string
std::cout << "[SERVER]: " << answer << std::endl;
}