|
|
| version 1.1.1.1.2.13, 2011/11/24 15:14:08 | version 1.1.1.1.2.22, 2011/12/13 08:43:51 |
|---|---|
| Line 1 | Line 1 |
| #include "global.h" | #include "global.h" |
| #include "rtlm.h" | #include "rtlm.h" |
| #include "mqtt.h" | |
| #include "client.h" | |
| sl_config cfg; | sl_config cfg; |
| sqlite3 *acc, *pub; | |
| FILE *logg; | |
| extern char compiled[], compiledby[], compilehost[]; | |
| static char szCfgName[MAXPATHLEN]; | |
| int Verbose, Kill; | |
| struct tagArgs *args; | |
| static void | |
| Usage(void) | |
| { | |
| printf( " -= MQTT Client =- Publisher/Subscriber from ELWIX\n" | |
| "=== %s@%s === Compiled: %s ===\n\n" | |
| " Syntax: mqtt [options] <connect_to_broker[:port]> [value_for_publish]\n\n" | |
| "\t-p <topic>\t\tPublish topic\n" | |
| "\t-s <topic[|QoS]>\tSubscribe for this topic, if wish add different |QoS to topic\n" | |
| "\t-q <QoS>\t\tQoS level (0-at most 1, 1-at least 1, 2-exactly 1)\n" | |
| "\t-d\t\t\tSend duplicate message\n" | |
| "\t-r\t\t\tRetain message from broker\n" | |
| "\t-c <config>\t\tService config\n" | |
| "\t-f\t\t\t'value_for_publish' is file instead text\n" | |
| "\t-P <port>\t\tDifferent port for connect (default: 1883)\n" | |
| "\t-D\t\t\tDaemon mode\n" | |
| "\t-v\t\t\tVerbose (more -vvv, more verbose)\n" | |
| "\t-h\t\t\tHelp! This screen\n\n", | |
| compiledby, compilehost, compiled); | |
| } | |
| static void | |
| cleanArgs(struct tagArgs * __restrict args) | |
| { | |
| AIT_FREE_VAL(&args->Publish); | |
| AIT_FREE_VAL(&args->Value); | |
| io_freeVars(&args->Subscribes); | |
| } | |
| int | int |
| main(int argc, char **argv) | main(int argc, char **argv) |
| { | { |
| sqlite3 *acc = NULL, *pub = NULL; | char ch, batch = 1, szStr[STRSIZ] = { 0 }; |
| FILE *logg = NULL; | ait_val_t *v, val; |
| int ret = 0; | u_short port = atoi(MQTT_PORT); |
| int sock; | |
| if (LoadConfig("/etc/mqtt.conf", &cfg)) { | if (!(args = malloc(sizeof(struct tagArgs)))) { |
| printf("Error:: Load config #%d - %s\n", cfg_GetErrno(), cfg_GetError()); | printf("Error:: in arguments #%d - %s\n", errno, strerror(errno)); |
| return 1; | return 1; |
| } else if (!(args->Subscribes = io_allocVars(1))) { | |
| printf("Error:: in subscribes array #%d - %s\n", io_GetErrno(), io_GetError()); | |
| free(args); | |
| return 1; | |
| } else | |
| args->free = cleanArgs; | |
| strlcpy(szCfgName, DEFAULT_CONFIG, sizeof szCfgName); | |
| while ((ch = getopt(argc, argv, "P:p:s:q:drc:fDvh")) != -1) | |
| switch (ch) { | |
| case 'P': | |
| port = (u_short) strtol(optarg, NULL, 0); | |
| break; | |
| case 'p': | |
| AIT_FREE_VAL(&args->Publish); | |
| AIT_SET_STR(&args->Publish, optarg); | |
| break; | |
| case 's': | |
| v = malloc(sizeof(ait_val_t)); | |
| if (!v) { | |
| printf("Error:: not enough memory #%d - %s\n", errno, strerror(errno)); | |
| args->free(args); | |
| free(args); | |
| return 1; | |
| } else | |
| AIT_SET_STR(v, optarg); | |
| io_arrayElem(args->Subscribes, io_arraySize(args->Subscribes), (void**) &v); | |
| break; | |
| case 'q': | |
| args->QoS = (char) strtol(optarg, NULL, 0); | |
| if (args->QoS < MQTT_QOS_ONCE || args->QoS > MQTT_QOS_EXACTLY) { | |
| printf("Error:: invalid QoS level %d\n", args->QoS); | |
| args->free(args); | |
| free(args); | |
| return 1; | |
| } | |
| break; | |
| case 'd': | |
| args->Dup++; | |
| break; | |
| case 'r': | |
| args->Retain++; | |
| break; | |
| case 'f': | |
| args->isFile++; | |
| break; | |
| case 'c': | |
| strlcpy(szCfgName, optarg, sizeof szCfgName); | |
| break; | |
| case 'D': | |
| batch = 0; | |
| break; | |
| case 'v': | |
| Verbose++; | |
| break; | |
| case 'h': | |
| default: | |
| args->free(args); | |
| free(args); | |
| Usage(); | |
| return 1; | |
| } | |
| argc -= optind; | |
| argv += optind; | |
| if (!argc) { | |
| printf("Error:: host for connect not found!\n"); | |
| args->free(args); | |
| free(args); | |
| Usage(); | |
| return 1; | |
| } | } |
| if (!mqttLoadRTLM(&cfg, 0)) { | if (argc > 1) |
| printf("Error:: Can't load RTL ACC module\n"); | AIT_SET_STR(&args->Value, argv[1]); |
| UnloadConfig(&cfg); | if (!io_gethostbyname(*argv, port, &args->addr)) { |
| return 2; | printf("Error:: host not connect #%d - %s\n", io_GetErrno(), io_GetError()); |
| args->free(args); | |
| free(args); | |
| Usage(); | |
| return 1; | |
| } | } |
| if (!mqttLoadRTLM(&cfg, 1)) { | VERB(1) printf("Connecting to %s:%d ...\n", io_n2addr(&args->addr, &val), io_n2port(&args->addr)); |
| printf("Error:: Can't load RTL PUB module\n"); | |
| mqttUnloadRTLM(0); | if (LoadConfig(szCfgName, &cfg)) { |
| UnloadConfig(&cfg); | printf("Error:: can't load #%d - %s\n", cfg_GetErrno(), cfg_GetError()); |
| return 2; | args->free(args); |
| free(args); | |
| return 1; | |
| } | } |
| if (!mqttLoadRTLM(&cfg, 2)) { | |
| printf("Error:: Can't load RTL LOG module\n"); | if ((sock = InitClient()) == -1) { |
| mqttUnloadRTLM(1); | args->free(args); |
| mqttUnloadRTLM(0); | free(args); |
| UnloadConfig(&cfg); | |
| return 2; | return 2; |
| } | } |
| acc = call.OpenACC(&cfg); | shutdown(sock, SHUT_RDWR); |
| if (!acc) | close(sock); |
| goto end; | |
| pub = call.OpenPUB(&cfg); | |
| if (!pub) | |
| goto end; | |
| logg = call.OpenLOG(&cfg); | |
| if (!logg) | |
| goto end; | |
| if (mqttMkDir(&cfg)) { | |
| printf("Error:: in statedir #%d - %s\n", errno, strerror(errno)); | |
| goto end; | |
| } | |
| call.LOG(logg, "success!\n"); | |
| if ((ret = call.LoginACC(&cfg, acc, "misho", "test123")) == -1) { | |
| printf("Error:: Authentication problem\n"); | |
| goto end; | |
| } else | |
| call.LOG(logg, "Login: %s\n", ret ? "ALLOW" : "DENIED"); | |
| if ((ret = call.InitSessPUB(&cfg, pub, "misho", "127.0.0.1", 12345)) == -1) { | |
| printf("Error:: Session init problem\n"); | |
| goto end; | |
| } else | |
| call.LOG(logg, "InitSess: %d\n", ret); | |
| if ((ret = call.FiniSessPUB(&cfg, pub, "misho", "127.0._.1%")) == -1) { | |
| printf("Error:: Session fini problem\n"); | |
| goto end; | |
| } else | |
| call.LOG(logg, "FiniSess: %d\n", ret); | |
| end: | |
| call.CloseLOG(logg); | |
| call.ClosePUB(pub); | |
| call.CloseACC(acc); | |
| mqttUnloadRTLM(2); | |
| mqttUnloadRTLM(1); | |
| mqttUnloadRTLM(0); | |
| UnloadConfig(&cfg); | UnloadConfig(&cfg); |
| args->free(args); | |
| free(args); | |
| return 0; | return 0; |
| } | } |