ZeroMQ 是一个快速灵活的消息库,用于数据收集和不同编程语言间的数据共享。
作为软件工程师,我有多次在要求完成指定任务时感到浑身一冷的经历。其中有一次,我必须在一些新的硬件基础设施和云基础设施之间写一个接口,这些硬件需要 C 语言,而云基础设施主要是用 Python。
实现的方式之一是 用 C 写扩展模块,Python 支持 C 扩展的调用。快速浏览文档后发现,这需要编写大量的 C 代码。这样做的话,在有些情况下效果还不错,但不是我喜欢的方式。另一种方式就是将两个任务放在不同的进程中,并使用 ZeroMQ 消息库 在两者之间交换消息。
在发现 ZeroMQ 之前,遇到这种类型的情况时,我选择了编写扩展的方式。这种方式不算太差,但非常费时费力。如今,为了避免那些问题,我将一个系统细分为独立的进程,通过 通信套接字 发送消息来交换信息。这样,不同的编程语言可以共存,每个进程也变简单了,同时也容易调试。
ZeroMQ 提供了一个更简单的过程:
- 编写一小段 C 代码,从硬件读取数据,然后把发现的东西作为消息发送出去。
- 使用 Python 编写接口,实现新旧基础设施之间的对接。
Pieter Hintjens 是 ZeroMQ 项目发起者之一,他是个拥有 有趣视角和作品 的非凡人物。
准备
本教程中,需要:
Fedora 系统上的安装方法:
1 2
| $ dnf install clang zeromq zeromq-devel python3 python3-zmq
|
Debian 和 Ubuntu 系统上的安装方法:
1 2
| $ apt-get install clang libzmq5 libzmq3-dev python3 python3-zmq
|
如果有问题,参考对应项目的安装指南(上面附有链接)。
编写硬件接口库
因为这里针对的是个设想的场景,本教程虚构了包含两个函数的操作库:
fancyhw_init()
用来初始化(设想的)硬件
fancyhw_read_val()
用于返回从硬件读取的数据
将库的完整代码保存到文件 libfancyhw.h
中:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| #ifndef LIBFANCYHW_H #define LIBFANCYHW_H
#include <stdlib.h> #include <stdint.h>
void fancyhw_init(unsigned int init_param) { srand(init_param); }
int16_t fancyhw_read_val(void) { return (int16_t)rand(); }
#endif
|
这个库可以模拟你要在不同语言实现的组件间交换的数据,中间有个随机数发生器。
设计 C 接口
下面从包含管理数据传输的库开始,逐步实现 C 接口。
需要的库
开始先加载必要的库(每个库的作用见代码注释):
1 2 3 4 5 6 7 8 9 10 11 12 13
| #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <zmq.h>
#include "libfancyhw.h"
|
必要的参数
定义 main
函数和后续过程中必要的参数:
1 2 3 4 5 6 7 8 9
| int main(void) { const unsigned int INIT_PARAM = 12345; const unsigned int REPETITIONS = 10; const unsigned int PACKET_SIZE = 16; const char *TOPIC = "fancyhw_data";
...
|
初始化
所有的库都需要初始化。虚构的那个只需要一个参数:
1 2
| fancyhw_init(INIT_PARAM);
|
ZeroMQ 库需要实打实的初始化。首先,定义对象 context
,它是用来管理全部的套接字的:
1 2 3 4 5 6 7 8 9
| void *context = zmq_ctx_new();
if (!context) { printf("ERROR: ZeroMQ error occurred during zmq_ctx_new(): %s\n", zmq_strerror(errno));
return EXIT_FAILURE; }
|
之后定义用来发送数据的套接字。ZeroMQ 支持若干种套接字,各有其用。使用 publish
套接字(也叫 PUB
套接字),可以复制消息并分发到多个接收端。这使得你可以让多个接收端接收同一个消息。没有接收者的消息将被丢弃(即不会入消息队列)。用法如下:
1 2
| void *data_socket = zmq_socket(context, ZMQ_PUB);
|
套接字需要绑定到一个具体的地址,这样客户端就知道要连接哪里了。本例中,使用了 TCP 传输层(当然也有 其它选项,但 TCP 是不错的默认选择):
1 2 3 4 5 6 7 8 9
| const int rb = zmq_bind(data_socket, "tcp://*:5555");
if (rb != 0) { printf("ERROR: ZeroMQ error occurred during zmq_ctx_new(): %s\n", zmq_strerror(errno));
return EXIT_FAILURE; }
|
下一步, 计算一些后续要用到的值。 注意下面代码中的 TOPIC
,因为 PUB
套接字发送的消息需要绑定一个主题。主题用于供接收者过滤消息:
1 2 3 4 5
| const size_t toindex_img_size = strlen(TOPIC); const size_t envelope_size = toindex_img_size + 1 + PACKET_SIZE * sizeof(int16_t);
printf("Toindex_img: %s; toindex_img size: %zu; Envelope size: %zu\n", TOPIC, toindex_img_size, envelope_size);
|
发送消息
启动一个发送消息的循环,循环 REPETITIONS
次:
1 2 3 4
| for (unsigned int i = 0 { ...
|
发送消息前,先填充一个长度为 PACKET_SIZE
的缓冲区。本库提供的是 16 个位的有符号整数。因为 C 语言中 int
类型占用空间大小与平台相关,不是确定的值,所以要使用指定宽度的 int
变量:
1 2 3 4 5 6 7 8 9
| int16_t buffer[PACKET_SIZE];
for (unsigned int j = 0; j < PACKET_SIZE; j++) { buffer[j] = fancyhw_read_val(); }
printf("Read %u data values\n", PACKET_SIZE);
|
消息的准备和发送的第一步是创建 ZeroMQ 消息,为消息分配必要的内存空间。空白的消息是用于封装要发送的数据的:
1 2 3 4 5 6 7 8 9 10 11 12
| zmq_msg_t envelope;
const int rmi = zmq_msg_init_size(&envelope, envelope_size); if (rmi != 0) { printf("ERROR: ZeroMQ error occurred during zmq_msg_init_size(): %s\n", zmq_strerror(errno));
zmq_msg_close(&envelope);
break; }
|
现在内存空间已分配,数据保存在 ZeroMQ 消息 “信封”中。函数 zmq_msg_data()
返回一个指向封装数据缓存区顶端的指针。第一部分是主题,之后是一个空格,最后是二进制数。主题和二进制数据之间的分隔符采用空格字符。需要遍历缓存区的话,使用类型转换和 指针算法。(感谢 C 语言,让事情变得直截了当。)做法如下:
1 2 3 4
| memcpy(zmq_msg_data(&envelope), TOPIC, toindex_img_size); memcpy((void*)((char*)zmq_msg_data(&envelope) + toindex_img_size), " ", 1); memcpy((void*)((char*)zmq_msg_data(&envelope) + 1 + toindex_img_size), buffer, PACKET_SIZE * sizeof(int16_t))
|
通过 data_socket
发送消息:
1 2 3 4 5 6 7 8 9 10
| const size_t rs = zmq_msg_send(&envelope, data_socket, 0); if (rs != envelope_size) { printf("ERROR: ZeroMQ error occurred during zmq_msg_send(): %s\n", zmq_strerror(errno));
zmq_msg_close(&envelope);
break; }
|
使用数据之前要先解除封装:
1 2 3 4
| zmq_msg_close(&envelope);
printf("Message sent; i: %u, toindex_img: %s\n", i, TOPIC);
|
清理
C 语言不提供 垃圾收集 功能,用完之后记得要自己扫尾。发送消息之后结束程序之前,需要运行扫尾代码,释放分配的内存:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| const int rc = zmq_close(data_socket);
if (rc != 0) { printf("ERROR: ZeroMQ error occurred during zmq_close(): %s\n", zmq_strerror(errno));
return EXIT_FAILURE; }
const int rd = zmq_ctx_destroy(context);
if (rd != 0) { printf("Error occurred during zmq_ctx_destroy(): %s\n", zmq_strerror(errno));
return EXIT_FAILURE; }
return EXIT_SUCCESS;
|
完整 C 代码
保存下面完整的接口代码到本地名为 hw_interface.c
的文件:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
| #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <zmq.h>
#include "libfancyhw.h"
int main(void) { const unsigned int INIT_PARAM = 12345; const unsigned int REPETITIONS = 10; const unsigned int PACKET_SIZE = 16; const char *TOPIC = "fancyhw_data";
fancyhw_init(INIT_PARAM);
void *context = zmq_ctx_new();
if (!context) { printf("ERROR: ZeroMQ error occurred during zmq_ctx_new(): %s\n", zmq_strerror(errno));
return EXIT_FAILURE; }
void *data_socket = zmq_socket(context, ZMQ_PUB);
const int rb = zmq_bind(data_socket, "tcp://*:5555");
if (rb != 0) { printf("ERROR: ZeroMQ error occurred during zmq_ctx_new(): %s\n", zmq_strerror(errno));
return EXIT_FAILURE; }
const size_t toindex_img_size = strlen(TOPIC); const size_t envelope_size = toindex_img_size + 1 + PACKET_SIZE * sizeof(int16_t);
printf("Toindex_img: %s; toindex_img size: %zu; Envelope size: %zu\n", TOPIC, toindex_img_size, envelope_size);
for (unsigned int i = 0; i < REPETITIONS; i++) { int16_t buffer[PACKET_SIZE];
for (unsigned int j = 0; j < PACKET_SIZE; j++) { buffer[j] = fancyhw_read_val(); }
printf("Read %u data values\n", PACKET_SIZE);
zmq_msg_t envelope; const int rmi = zmq_msg_init_size(&envelope, envelope_size); if (rmi != 0) { printf("ERROR: ZeroMQ error occurred during zmq_msg_init_size(): %s\n", zmq_strerror(errno)); zmq_msg_close(&envelope); break; } memcpy(zmq_msg_data(&envelope), TOPIC, toindex_img_size);
memcpy((void*)((char*)zmq_msg_data(&envelope) + toindex_img_size), " ", 1);
memcpy((void*)((char*)zmq_msg_data(&envelope) + 1 + toindex_img_size), buffer, PACKET_SIZE * sizeof(int16_t)); const size_t rs = zmq_msg_send(&envelope, data_socket, 0); if (rs != envelope_size) { printf("ERROR: ZeroMQ error occurred during zmq_msg_send(): %s\n", zmq_strerror(errno)); zmq_msg_close(&envelope); break; } zmq_msg_close(&envelope);
printf("Message sent; i: %u, toindex_img: %s\n", i, TOPIC);
sleep(1); }
const int rc = zmq_close(data_socket);
if (rc != 0) { printf("ERROR: ZeroMQ error occurred during zmq_close(): %s\n", zmq_strerror(errno));
return EXIT_FAILURE; }
const int rd = zmq_ctx_destroy(context);
if (rd != 0) { printf("Error occurred during zmq_ctx_destroy(): %s\n", zmq_strerror(errno));
return EXIT_FAILURE; }
return EXIT_SUCCESS; }
|
用如下命令编译:
1 2
| $ clang -std=c99 -I. hw_interface.c -lzmq -o hw_interface
|
如果没有编译错误,你就可以运行这个接口了。贴心的是,ZeroMQ PUB
套接字可以在没有任何应用发送或接受数据的状态下运行,这简化了使用复杂度,因为这样不限制进程启动的次序。
运行该接口:
1 2 3 4 5 6 7 8 9 10
| $ ./hw_interface Toindex_img: fancyhw_data; toindex_img size: 12; Envelope size: 45 Read 16 data values Message sent; i: 0, toindex_img: fancyhw_data Read 16 data values Message sent; i: 1, toindex_img: fancyhw_data Read 16 data values ... ...
|
输出显示数据已经通过 ZeroMQ 完成发送,现在要做的是让一个程序去读数据。
编写 Python 数据处理器
现在已经准备好从 C 程序向 Python 应用传送数据了。
库
需要两个库帮助实现数据传输。首先是 ZeroMQ 的 Python 封装:
1 2
| $ python3 -m pip install zmq
|
另一个就是 struct 库,用于解码二进制数据。这个库是 Python 标准库的一部分,所以不需要使用 pip
命令安装。
Python 程序的第一部分是导入这些库:
1 2 3
| import zmq import struct
|
重要参数
使用 ZeroMQ 时,只能向常量 TOPIC
定义相同的接收端发送消息:
1 2 3 4
| toindex_img = "fancyhw_data".encode('ascii')
print("Reading messages with toindex_img: {}".format(toindex_img))
|
初始化
下一步,初始化上下文和套接字。使用 subscribe
套接字(也称为 SUB
套接字),它是 PUB
套接字的天生伴侣。这个套接字发送时也需要匹配主题。
1 2 3 4 5 6 7 8 9 10
| with zmq.Context() as context: socket = context.socket(zmq.SUB)
socket.connect("tcp://127.0.0.1:5555") socket.setsockopt(zmq.SUBSCRIBE, toindex_img)
i = 0
...
|
接收消息
启动一个无限循环,等待接收发送到 SUB
套接字的新消息。这个循环会在你按下 Ctrl+C
组合键或者内部发生错误时终止:
1 2 3 4 5 6 7 8 9 10 11
| try: while True:
...
except KeyboardInterrupt: socket.close() except Exception as error: print("ERROR: {}".format(error)) socket.close()
|
这个循环等待 recv()
方法获取的新消息,然后将接收到的内容从第一个空格字符处分割开,从而得到主题:
1 2
| binary_toindex_img, data_buffer = socket.recv().split(b' ', 1)
|
解码消息
Python 此时尚不知道主题是个字符串,使用标准 ASCII 编解码器进行解码:
1 2 3 4 5
| toindex_img = binary_toindex_img.decode(encoding = 'ascii')
print("Message {:d}:".format(i)) print("\ttoindex_img: '{}'".format(toindex_img))
|
下一步就是使用 struct
库读取二进制数据,它可以将二进制数据段转换为明确的数值。首先,计算数据包中数值的组数。本例中使用的 16 个位的有符号整数对应的是 struct
格式字符 中的 h
:
1 2 3 4
| packet_size = len(data_buffer)
print("\tpacket size: {:d}".format(packet_size))
|
知道数据包中有多少组数据后,就可以通过构建一个包含数据组数和数据类型的字符串,来定义格式了(比如“16h
”):
1 2
| struct_format = "{:d}h".format(packet_size)
|
将二进制数据串转换为可直接打印的一系列数字:
1 2 3 4
| data = struct.unpack(struct_format, data_buffer)
print("\tdata: {}".format(data))
|
完整 Python 代码
下面是 Python 实现的完整的接收端:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| #! /usr/bin/env python3
import zmq import struct
toindex_img = "fancyhw_data".encode('ascii')
print("Reading messages with toindex_img: {}".format(toindex_img))
with zmq.Context() as context: socket = context.socket(zmq.SUB)
socket.connect("tcp://127.0.0.1:5555") socket.setsockopt(zmq.SUBSCRIBE, toindex_img)
i = 0
try: while True: binary_toindex_img, data_buffer = socket.recv().split(b' ', 1)
toindex_img = binary_toindex_img.decode(encoding = 'ascii')
print("Message {:d}:".format(i)) print("\ttoindex_img: '{}'".format(toindex_img))
packet_size = len(data_buffer)
print("\tpacket size: {:d}".format(packet_size))
struct_format = "{:d}h".format(packet_size)
data = struct.unpack(struct_format, data_buffer)
print("\tdata: {}".format(data))
i += 1
except KeyboardInterrupt: socket.close() except Exception as error: print("ERROR: {}".format(error)) socket.close()
|
将上面的内容保存到名为 online_analysis.py
的文件。Python 代码不需要编译,你可以直接运行它。
运行输出如下:
1 2 3 4 5 6 7 8 9 10 11 12 13
| $ ./online_analysis.py Reading messages with toindex_img: b'fancyhw_data' Message 0: toindex_img: 'fancyhw_data' packet size: 16 data: (20946, -23616, 9865, 31416, -15911, -10845, -5332, 25662, 10955, -32501, -18717, -24490, -16511, -28861, 24205, 26568) Message 1: toindex_img: 'fancyhw_data' packet size: 16 data: (12505, 31355, 14083, -19654, -9141, 14532, -25591, 31203, 10428, -25564, -732, -7979, 9529, -27982, 29610, 30475) ... ...
|
小结
本教程介绍了一种新方式,实现从基于 C 的硬件接口收集数据,并分发到基于 Python 的基础设施的功能。借此可以获取数据供后续分析,或者转送到任意数量的接收端去。它采用了一个消息库实现数据在发送者和处理者之间的传送,来取代同样功能规模庞大的软件。
本教程还引出了我称之为“软件粒度”的概念,换言之,就是将软件细分为更小的部分。这种做法的优点之一就是,使得同时采用不同的编程语言实现最简接口作为不同部分之间沟通的组件成为可能。
实践中,这种设计使得软件工程师能以更独立、合作更高效的方式做事。不同的团队可以专注于数据分析的不同方面,可以选择自己中意的实现工具。这种做法的另一个优点是实现了零代价的并行,因为所有的进程都可以并行运行。ZeroMQ 消息库 是个令人赞叹的软件,使用它可以让工作大大简化。
via: https://opensource.com/article/20/3/zeromq-c-python
作者:Cristiano L. Fontana 选题:lujun9972 译者:silentdawn-zz 校对:wxy
本文由 LCTT 原创编译,Linux中国 荣誉推出