mirror of
https://github.com/eclipse/mosquitto.git
synced 2025-05-09 01:01:11 +08:00
250 lines
8.3 KiB
C
250 lines
8.3 KiB
C
/*
|
|
Copyright (c) 2009-2014 Roger Light <roger@atchoo.org>
|
|
|
|
All rights reserved. This program and the accompanying materials
|
|
are made available under the terms of the Eclipse Public License v1.0
|
|
and Eclipse Distribution License v1.0 which accompany this distribution.
|
|
|
|
The Eclipse Public License is available at
|
|
http://www.eclipse.org/legal/epl-v10.html
|
|
and the Eclipse Distribution License is available at
|
|
http://www.eclipse.org/org/documents/edl-v10.php.
|
|
|
|
Contributors:
|
|
Roger Light - initial implementation and documentation.
|
|
*/
|
|
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#ifndef WIN32
|
|
#include <unistd.h>
|
|
#else
|
|
#include <process.h>
|
|
#include <winsock2.h>
|
|
#define snprintf sprintf_s
|
|
#endif
|
|
|
|
#include <mosquitto.h>
|
|
#include "client_shared.h"
|
|
|
|
bool process_messages = true;
|
|
|
|
void my_message_callback(struct mosquitto *mosq, void *obj, const struct mosquitto_message *message)
|
|
{
|
|
struct mosq_config *cfg;
|
|
int i;
|
|
bool res;
|
|
|
|
if(process_messages == false) return;
|
|
|
|
assert(obj);
|
|
cfg = (struct mosq_config *)obj;
|
|
|
|
if(message->retain && cfg->no_retain) return;
|
|
if(cfg->filter_outs){
|
|
for(i=0; i<cfg->filter_out_count; i++){
|
|
mosquitto_topic_matches_sub(cfg->filter_outs[i], message->topic, &res);
|
|
if(res) return;
|
|
}
|
|
}
|
|
|
|
if(cfg->verbose){
|
|
if(message->payloadlen){
|
|
printf("%s ", message->topic);
|
|
fwrite(message->payload, 1, message->payloadlen, stdout);
|
|
if(cfg->eol){
|
|
printf("\n");
|
|
}
|
|
}else{
|
|
if(cfg->eol){
|
|
printf("%s (null)\n", message->topic);
|
|
}
|
|
}
|
|
fflush(stdout);
|
|
}else{
|
|
if(message->payloadlen){
|
|
fwrite(message->payload, 1, message->payloadlen, stdout);
|
|
if(cfg->eol){
|
|
printf("\n");
|
|
}
|
|
fflush(stdout);
|
|
}
|
|
}
|
|
if(cfg->oneshot){
|
|
process_messages = false;
|
|
mosquitto_disconnect(mosq);
|
|
}
|
|
}
|
|
|
|
void my_connect_callback(struct mosquitto *mosq, void *obj, int result)
|
|
{
|
|
int i;
|
|
struct mosq_config *cfg;
|
|
|
|
assert(obj);
|
|
cfg = (struct mosq_config *)obj;
|
|
|
|
if(!result){
|
|
for(i=0; i<cfg->topic_count; i++){
|
|
mosquitto_subscribe(mosq, NULL, cfg->topics[i], cfg->topic_qos);
|
|
}
|
|
}else{
|
|
if(result && !cfg->quiet){
|
|
fprintf(stderr, "%s\n", mosquitto_connack_string(result));
|
|
}
|
|
}
|
|
}
|
|
|
|
void my_subscribe_callback(struct mosquitto *mosq, void *obj, int mid, int qos_count, const int *granted_qos)
|
|
{
|
|
int i;
|
|
struct mosq_config *cfg;
|
|
|
|
assert(obj);
|
|
cfg = (struct mosq_config *)obj;
|
|
|
|
if(!cfg->quiet) printf("Subscribed (mid: %d): %d", mid, granted_qos[0]);
|
|
for(i=1; i<qos_count; i++){
|
|
if(!cfg->quiet) printf(", %d", granted_qos[i]);
|
|
}
|
|
if(!cfg->quiet) printf("\n");
|
|
}
|
|
|
|
void my_log_callback(struct mosquitto *mosq, void *obj, int level, const char *str)
|
|
{
|
|
printf("%s\n", str);
|
|
}
|
|
|
|
void print_usage(void)
|
|
{
|
|
int major, minor, revision;
|
|
|
|
mosquitto_lib_version(&major, &minor, &revision);
|
|
printf("mosquitto_sub is a simple mqtt client that will subscribe to a single topic and print all messages it receives.\n");
|
|
printf("mosquitto_sub version %s running on libmosquitto %d.%d.%d.\n\n", VERSION, major, minor, revision);
|
|
printf("Usage: mosquitto_sub [-c] [-h host] [-k keepalive] [-p port] [-q qos] [-R] -t topic ...\n");
|
|
printf(" [-1] [-T filter_out]\n");
|
|
printf(" [-A bind_address] [-S]\n");
|
|
printf(" [-i id] [-I id_prefix]\n");
|
|
printf(" [-d] [-N] [--quiet] [-v]\n");
|
|
printf(" [-u username [-P password]]\n");
|
|
printf(" [--will-topic [--will-payload payload] [--will-qos qos] [--will-retain]]\n");
|
|
#ifdef WITH_TLS
|
|
printf(" [{--cafile file | --capath dir} [--cert file] [--key file]\n");
|
|
printf(" [--ciphers ciphers] [--insecure]]\n");
|
|
#ifdef WITH_TLS_PSK
|
|
printf(" [--psk hex-key --psk-identity identity [--ciphers ciphers]]\n");
|
|
#endif
|
|
#endif
|
|
printf(" mosquitto_sub --help\n\n");
|
|
printf(" -1 : disconnect and exit after receiving the first message.\n");
|
|
printf(" -A : bind the outgoing socket to this host/ip address. Use to control which interface\n");
|
|
printf(" the client communicates over.\n");
|
|
printf(" -c : disable 'clean session' (store subscription and pending messages when client disconnects).\n");
|
|
printf(" -d : enable debug messages.\n");
|
|
printf(" -h : mqtt host to connect to. Defaults to localhost.\n");
|
|
printf(" -i : id to use for this client. Defaults to mosquitto_sub_ appended with the process id.\n");
|
|
printf(" -I : define the client id as id_prefix appended with the process id. Useful for when the\n");
|
|
printf(" broker is using the clientid_prefixes option.\n");
|
|
printf(" -k : keep alive in seconds for this client. Defaults to 60.\n");
|
|
printf(" -N : do not add an end of line character when printing the payload.\n");
|
|
printf(" -p : network port to connect to. Defaults to 1883.\n");
|
|
printf(" -q : quality of service level to use for the subscription. Defaults to 0.\n");
|
|
printf(" -R : do not print stale messages (those with retain set).\n");
|
|
printf(" -S : use SRV lookups to determine which host to connect to.\n");
|
|
printf(" -t : mqtt topic to subscribe to. May be repeated multiple times.\n");
|
|
printf(" -u : provide a username (requires MQTT 3.1 broker)\n");
|
|
printf(" -v : print published messages verbosely.\n");
|
|
printf(" -P : provide a password (requires MQTT 3.1 broker)\n");
|
|
printf(" --help : display this message.\n");
|
|
printf(" --quiet : don't print error messages.\n");
|
|
printf(" --will-payload : payload for the client Will, which is sent by the broker in case of\n");
|
|
printf(" unexpected disconnection. If not given and will-topic is set, a zero\n");
|
|
printf(" length message will be sent.\n");
|
|
printf(" --will-qos : QoS level for the client Will.\n");
|
|
printf(" --will-retain : if given, make the client Will retained.\n");
|
|
printf(" --will-topic : the topic on which to publish the client Will.\n");
|
|
#ifdef WITH_TLS
|
|
printf(" --cafile : path to a file containing trusted CA certificates to enable encrypted\n");
|
|
printf(" certificate based communication.\n");
|
|
printf(" --capath : path to a directory containing trusted CA certificates to enable encrypted\n");
|
|
printf(" communication.\n");
|
|
printf(" --cert : client certificate for authentication, if required by server.\n");
|
|
printf(" --key : client private key for authentication, if required by server.\n");
|
|
printf(" --ciphers : openssl compatible list of TLS ciphers to support.\n");
|
|
printf(" --tls-version : TLS protocol version, can be one of tlsv1.2 tlsv1.1 or tlsv1.\n");
|
|
printf(" Defaults to tlsv1.2 if available.\n");
|
|
printf(" --insecure : do not check that the server certificate hostname matches the remote\n");
|
|
printf(" hostname. Using this option means that you cannot be sure that the\n");
|
|
printf(" remote host is the server you wish to connect to and so is insecure.\n");
|
|
printf(" Do not use this option in a production environment.\n");
|
|
#ifdef WITH_TLS_PSK
|
|
printf(" --psk : pre-shared-key in hexadecimal (no leading 0x) to enable TLS-PSK mode.\n");
|
|
printf(" --psk-identity : client identity string for TLS-PSK mode.\n");
|
|
#endif
|
|
#endif
|
|
printf("\nSee http://mosquitto.org/ for more information.\n\n");
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
struct mosq_config cfg;
|
|
struct mosquitto *mosq = NULL;
|
|
int rc;
|
|
|
|
if(client_config_load(&cfg, CLIENT_SUB, argc, argv)){
|
|
print_usage();
|
|
return 1;
|
|
}
|
|
|
|
mosquitto_lib_init();
|
|
|
|
if(client_id_generate(&cfg, "mosqsub")){
|
|
return 1;
|
|
}
|
|
|
|
mosq = mosquitto_new(cfg.id, cfg.clean_session, &cfg);
|
|
if(!mosq){
|
|
switch(errno){
|
|
case ENOMEM:
|
|
if(!cfg.quiet) fprintf(stderr, "Error: Out of memory.\n");
|
|
break;
|
|
case EINVAL:
|
|
if(!cfg.quiet) fprintf(stderr, "Error: Invalid id and/or clean_session.\n");
|
|
break;
|
|
}
|
|
mosquitto_lib_cleanup();
|
|
return 1;
|
|
}
|
|
if(client_opts_set(mosq, &cfg)){
|
|
return 1;
|
|
}
|
|
if(cfg.debug){
|
|
mosquitto_log_callback_set(mosq, my_log_callback);
|
|
mosquitto_subscribe_callback_set(mosq, my_subscribe_callback);
|
|
}
|
|
mosquitto_connect_callback_set(mosq, my_connect_callback);
|
|
mosquitto_message_callback_set(mosq, my_message_callback);
|
|
|
|
rc = client_connect(mosq, &cfg);
|
|
if(rc) return rc;
|
|
|
|
|
|
rc = mosquitto_loop_forever(mosq, -1, 1);
|
|
|
|
mosquitto_destroy(mosq);
|
|
mosquitto_lib_cleanup();
|
|
|
|
if(cfg.oneshot && rc == MOSQ_ERR_NO_CONN){
|
|
rc = 0;
|
|
}
|
|
if(rc){
|
|
fprintf(stderr, "Error: %s\n", mosquitto_strerror(rc));
|
|
}
|
|
return rc;
|
|
}
|
|
|