- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试将程序从 Linux 桌面移植到 Android。它使用 libzmq
在 C++ 中。
我想使用 zmq.hpp
(ZeroMQ 的 Cpp 绑定(bind))在没有 jerozmq
的应用程序的 native 代码中或 jzmq
.
我已经建立 libzmq
使用此脚本的 4 拱门:
export PATH=/home/hmi/Android/arm-26-toolchain-clang:$PATH
rm -r /tmp/zeromq-android
cd /tmp/
#git clone https://github.com/zeromq/libzmq.git
cd libzmq/
############################################################################
# arm-linux-androideabi
export OUTPUT_DIR=/tmp/zeromq-android/arm-linux-androideabi
./autogen.sh
./configure --enable-static \
--disable-shared \
--host=arm-linux-androideabi \
--prefix=$OUTPUT_DIR \
LDFLAGS="-L$OUTPUT_DIR/lib" \
CPPFLAGS="-fPIC -I$OUTPUT_DIR/include" \
LIBS="-lgcc"
make -j4
make install
############################################################################
# armv7a-linux-androideabi
export OUTPUT_DIR=/tmp/zeromq-android/armeabi-v7a
./autogen.sh
./configure --enable-static \
--disable-shared \
--host=armv7a-linux-androideabi \
--prefix=$OUTPUT_DIR \
LDFLAGS="-L$OUTPUT_DIR/lib" \
CPPFLAGS="-fPIC -I$OUTPUT_DIR/include" \
LIBS="-lgcc"
make -j4
make install
############################################################################
# aarch64-linux-android
export OUTPUT_DIR=/tmp/zeromq-android/arm64-v8a
./autogen.sh
./configure --enable-static \
--disable-shared \
--host=aarch64-linux-android \
--prefix=$OUTPUT_DIR \
LDFLAGS="-L$OUTPUT_DIR/lib" \
CPPFLAGS="-fPIC -I$OUTPUT_DIR/include" \
LIBS="-lgcc"
make -j4
make install
############################################################################
# i686-linux-android
export OUTPUT_DIR=/tmp/zeromq-android/x86
./autogen.sh
./configure --enable-static \
--disable-shared \
--host=i686-linux-android \
--prefix=$OUTPUT_DIR \
LDFLAGS="-L$OUTPUT_DIR/lib" \
CPPFLAGS="-fPIC -I$OUTPUT_DIR/include" \
LIBS="-lgcc"
make -j4
make install
############################################################################
# x86_64-linux-android
export OUTPUT_DIR=/tmp/zeromq-android/x86_64
./autogen.sh
./configure --enable-static \
--disable-shared \
--host=x86_64-linux-android \
--prefix=$OUTPUT_DIR \
LDFLAGS="-L$OUTPUT_DIR/lib" \
CPPFLAGS="-fPIC -I$OUTPUT_DIR/include" \
LIBS="-lgcc"
make -j4
make install
cd /tmp/zeromq-android/
mkdir all
cd all
for i in \
"armeabi-v7a" \
"arm64-v8a" \
"x86" \
"x86_64"
do
mkdir ${i}
cp -r /tmp/zeromq-android/$i/lib/* ./$i/
done
############################################################################
## jzmq
#export OUTPUT_DIR=/tmp/zeromq-android-arm-linux-androideabi
#
#cd /tmp/
#git clone https://github.com/zeromq/jzmq.git
#cd jzmq/jzmq-jni/
#./autogen.sh
#./configure --host=arm-linux-androideabi \
# --prefix=$OUTPUT_DIR \
# --with-zeromq=$OUTPUT_DIR \
# CPPFLAGS="-fPIC -I$OUTPUT_DIR/include" \
# LDFLAGS="-L$OUTPUT_DIR/lib" \
# --disable-version \
# LIBS="-lpthread -lrt"
#make
#make install}
Runtime.error.loadingLib(native-lib)
/home/hmi/barepo/AndroidCppZmq/app/src/main/cpp/include/zmq.hpp:766: error: undefined reference to 'zmq_ctx_destroy'
libzmq
在
CMakeList.txt
与
add_library(zmq STATIC .../libzmq.a)
最佳答案
谢谢你的回复。因此,现在我想使用 Android 虚拟设备(Pixel C API 28)进行测试,并在 Android-Studio 中使用 c++ 代码创建了一个新项目。
摆脱cppzmq
我只使用 libzmq
现在。
我已经建立 libzmq
使用以下脚本:
#!/bin/bash
OLDPATH=$PATH
rm -r /tmp/zeromq-android
cd /tmp/
git clone https://github.com/zeromq/libzmq.git
cd libzmq/
export NDK=$HOME/initEnvV0.0/AndroidSdk/ndk/21.0.6113669
export TOOLCHAIN=$NDK/toolchains/llvm/prebuilt/linux-x86_64
# Only choose one of these, depending on your device...
#export TARGET=aarch64-linux-android
#export TARGET=armv7a-linux-androideabi
#export TARGET=i686-linux-android
export TARGET=x86_64-linux-android
# Set this to your minSdkVersion.
export API=28
# Configure and build.
export AR=$TOOLCHAIN/bin/$TARGET-ar
export AS=$TOOLCHAIN/bin/$TARGET-as
export CC=$TOOLCHAIN/bin/$TARGET$API-clang
export CXX=$TOOLCHAIN/bin/$TARGET$API-clang++
export LD=$TOOLCHAIN/bin/$TARGET-ld
export RANLIB=$TOOLCHAIN/bin/$TARGET-ranlib
export STRIP=$TOOLCHAIN/bin/$TARGET-strip
export OUTPUT_DIR=/tmp/zeromq-android/$TARGET
./autogen.sh
#./configure --host $TARGET
./configure --enable-static \
--disable-shared \
--host=$TARGET \
--prefix=$OUTPUT_DIR LDFLAGS="-L$OUTPUT_DIR/lib" \
CPPFLAGS="-fPIC -I$OUTPUT_DIR/include" \
LIBS="-lgcc" # ^ was missing
make
make install
jniFolder
后,我的目录如下所示:
src/main/jniLibs/
└── x86_64
├── bin
│ └── curve_keygen
├── include
│ ├── zmq.h
│ └── zmq_utils.h
└── lib
├── libzmq.a
├── libzmq.la
├── libzmq.so
└── pkgconfig
└── libzmq.pc
native-lib.cpp
:
// libzmq
#include <zmq.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <assert.h>
int testlibzmq (void)
{
// Socket to talk to clients
void *context = zmq_ctx_new ();
void *responder = zmq_socket (context, ZMQ_REP);
int rc = zmq_bind (responder, "tcp://*:5555");
assert (rc == 0);
char buffer [10];
zmq_recv (responder, buffer, 10, 0);
printf ("Received Hello\n");
sleep (1); // Do some 'work'
zmq_send (responder, "World", 5, 0);
return 0;
}
CMakelist.txt
看起来像这样:
# For more information about using CMake with Android Studio, read the
# documentation: https://d.android.com/studio/projects/add-native-code.html
# Sets the minimum version of CMake required to build the native library.
cmake_minimum_required(VERSION 3.4.1)
# Creates and names a library, sets it as either STATIC
# or SHARED, and provides the relative paths to its source code.
# You can define multiple libraries, and CMake builds them for you.
# Gradle automatically packages shared libraries with your APK.
include_directories(
/home/hmi/barepo/AndroidCppZmq/app/src/main/jniLibs/x86_64/include
)
add_library( zmq STATIC IMPORTED )
set_target_properties( zmq PROPERTIES IMPORTED_LOCATION /home/hmi/barepo/AndroidCppZmq/app/src/main/jniLibs/x86_64/lib/libzmq.a )
set_target_properties( zmq PROPERTIES INCLUDE_DIRECTORIES /home/hmi/barepo/AndroidCppZmq/app/src/main/jniLibs/x86_64/include )
add_library( native-lib # Sets the name of the library.
SHARED # Sets the library as a shared library.
native-lib.cpp # Provides a relative path to your source file(s).
)
# Searches for a specified prebuilt library and stores the path as a
# variable. Because CMake includes system libraries in the search path by
# default, you only need to specify the name of the public NDK library
# you want to add. CMake verifies that the library exists before
# completing its build.
find_library( log-lib # Sets the name of the path variable.
log # Specifies the name of the NDK library that
) # you want CMake to locate.
# Specifies libraries CMake should link to your target library. You
# can link multiple libraries, such as libraries you define in this
# build script, prebuilt third-party libraries, or system libraries.
target_link_libraries( native-lib # Specifies the target library.
zmq # Links the target library to the log library
${log-lib} # included in the NDK.
)
Android.mk
和
Application.mk
我的
jniLibs-Folder
旁边的文件?有没有人尝试使用
libzmq
在没有
jzmq
的 native 代码中或
Jeromq
?
native-lib
时构建卡顿:
Entering directory `/home/hmi/barepo/AndroidCppZmq/app/.cxx/cmake/debug/x86_64'
[1/1] Linking CXX shared library /home/hmi/barepo/AndroidCppZmq/app/build/intermediates/cmake/debug/obj/x86_64/libnative-lib.so
FAILED: /home/hmi/barepo/AndroidCppZmq/app/build/intermediates/cmake/debug/obj/x86_64/libnative-lib.so
关于android - 如何让 Android 使用 ZeroMQ libzmq?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61598918/
你能举一些zeromq的例子吗? 最佳答案 假设您想要某种公告板。您希望通过订阅公告板来只允许某些人看到它。 这可以使用 ZeroMQ 的发布者/订阅者模型来完成。 现在,假设您需要发送一些异步消息。
因此,正如我在上一篇文章中所问的那样,我希望能够使用不同语言编写的程序或函数在它们之间进行通信。 我最近遇到了 zeromq,我试图弄清楚这是否可以帮助我,因为它提供了某种套接字。例如,zeromq
与通过 POLLIN 多路复用多个套接字有何不同? while True: socks = dict(poller.poll()) if socks.get(control_recei
我正在设计一个与 ZeroMQ 对话的服务器应用程序。无需深入细节,服务器将存储和服务(来自查询请求)(eventid, eventstring)元组。 我的问题涉及有线协议(protocol)的设计
我有一个服务器(在 Amazon 上运行)和一个连接到它的客户端。建立连接后,客户端和服务器专门相互通信并发送消息。 例如 1. Client -> Server 2. Client -> Serve
我正在开发一个新的客户端-服务器应用程序 (.Net),并且到目前为止一直在使用 WCF,它非常适合应用程序的请求-响应方法。然而,我被要求用基于套接字的解决方案替换它,部分是为了支持非 .Net 客
我正在尝试做一个发布/订阅架构,其中多个发布者和多个订阅者存在于同一总线上。根据我在互联网上阅读的内容,只有一个套接字应该调用 bind(),而所有其他套接字(无论是 pub 还是 sub)都应该调用
使用zeromq,发送者发送10条消息后,发送者崩溃。 场景1:接收方正在一条一条地处理消息,花费了一些明显的时间成本,在这种情况下它还会收到 10 条消息吗? 场景 2:另一种情况是,当接收器崩溃时
我有一个 ZeroMQ 套接字,它正在从不同机器上的多个进程接收数据。在不改变数据内容的情况下,有没有办法识别数据的来源呢?具体来说,我想要发送者的 IP 地址(如果它来自 TCP 连接)。 最佳答案
有人知道在哪里可以找到有关 ZeroMQ 延迟与 29 West LBM 等竞争对手的性能详细信息吗? 看起来便宜得多,但我找不到任何指标来决定哪个更合适。 最佳答案 ZeroMQ 和 29West
有没有办法在不使用转发器概念的情况下使用 zeroMQ 库进行消息广播? 最佳答案 是的,一个 PUB 套接字将广播到所有连接的 SUB 套接字。只有当您想要桥接不同的网络时才需要转发器(代理),例如
几天前我才开始使用zeromq。我的目标是设计一个具有多个代理(代理网络)的发布订阅系统。我已经阅读了 zeromq 指南的相关部分,并为简单的发布子系统编写了代码。如果有人可以帮助我解决以下问题:
我需要编写一个订单管理器,将客户(股票、外汇等)订单发送到适当的交易所。客户想要发送订单,但对 FIX 或其他专有协议(protocol)一无所知,只知道发送订单的内部(规范化)格式。我有应用程序(服
我正在尝试从示例 wuclient/wuserver 在 zeromq 上实现一个惰性订阅者。 客户端比服务器慢得多,因此它必须只获取服务器最后发送的消息。 到目前为止,我发现这样做的唯一方法是连接/
我是 ZeroMQ 的新手并试图找出设计问题。我的情况是我有一个或多个客户端向单个服务器发送请求。服务器将处理请求,做一些事情,并向客户端发送回复。有两个条件: 回复必须发送到发送请求的客户端。 如果
如 docs 中所述在 3.x 版本的 zeromq 中,PUB/SUB 场景中的消息正在被过滤 出版商侧(而不是在订阅者方面,这是微不足道的)。 对我来说,这听起来像是发布者必须持有所有连接的套接字
引自 ZeroMQ 指南 However, with a little extra work, this humble pattern becomes a good basis for real wo
假设我有一个带有 ZeroMQ 接口(interface)的节点(进程、线程等),比方说一个 REP 套接字。这意味着我有一个无限主循环,它在 zmq_recv 或 zmq_poll 函数中休眠。 现
我想以某种方式比较 grpc 与 Zeromq 及其模式的功能:并且我想创建一些比较(功能集) - 不知何故 - 0mq 是“更好”的套接字 - 但无论如何 - 如果我应用 0mq模式 - 我认为我得
我正在试验 ZeroMQ。我发现在 ZeroMQ 中非常有趣,connect 或 bind 先发生并不重要。我试着查看 ZeroMQ 的源代码,但它太大了,找不到任何东西。 代码如下。 # clien
我是一名优秀的程序员,十分优秀!