mirror of
https://gitlab.com/manzerbredes/ina260-zmq-publisher.git
synced 2025-04-06 03:46:25 +02:00
Minor changes
This commit is contained in:
parent
29ff963194
commit
55d9cd7567
1 changed files with 9 additions and 9 deletions
18
src/logger.c
18
src/logger.c
|
@ -29,7 +29,7 @@ void sighandler(int signo){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void *publish(void *publisher);
|
void *publisher(void *zmq_publisher);
|
||||||
|
|
||||||
typedef struct queue {
|
typedef struct queue {
|
||||||
int size;
|
int size;
|
||||||
|
@ -75,11 +75,11 @@ int main (int argc, char *argv [])
|
||||||
}
|
}
|
||||||
|
|
||||||
//----- Prepare our context and publisher
|
//----- Prepare our context and publisher
|
||||||
void *context = zmq_ctx_new ();
|
void *zmq_context = zmq_ctx_new ();
|
||||||
void *publisher = zmq_socket (context, ZMQ_PUB);
|
void *zmq_publisher = zmq_socket (zmq_context, ZMQ_PUB);
|
||||||
char bindto[STATIC_LEN];
|
char bindto[STATIC_LEN];
|
||||||
sprintf(bindto,"tcp://%s:%d",__ip,__port);
|
sprintf(bindto,"tcp://%s:%d",__ip,__port);
|
||||||
int rc = zmq_connect (publisher, bindto);
|
int rc = zmq_connect (zmq_publisher, bindto);
|
||||||
if(rc!=0){
|
if(rc!=0){
|
||||||
printf("Failed to connect to %s\n",bindto);
|
printf("Failed to connect to %s\n",bindto);
|
||||||
exit(1);
|
exit(1);
|
||||||
|
@ -104,7 +104,7 @@ int main (int argc, char *argv [])
|
||||||
for(int i=0;i<MAX_QUEUES;i++){
|
for(int i=0;i<MAX_QUEUES;i++){
|
||||||
queues[queue_id].issending=0;
|
queues[queue_id].issending=0;
|
||||||
}
|
}
|
||||||
pthread_create(&zmq_thread, NULL, publish, publisher);
|
pthread_create(&zmq_thread, NULL, publisher, zmq_publisher);
|
||||||
|
|
||||||
while(!__stop){
|
while(!__stop){
|
||||||
interval=INTERVAL(__loginterval);
|
interval=INTERVAL(__loginterval);
|
||||||
|
@ -144,18 +144,18 @@ int main (int argc, char *argv [])
|
||||||
|
|
||||||
fclose(regptr);
|
fclose(regptr);
|
||||||
pthread_join(zmq_thread, NULL);
|
pthread_join(zmq_thread, NULL);
|
||||||
zmq_close (publisher);
|
zmq_close (zmq_publisher);
|
||||||
zmq_ctx_destroy (context);
|
zmq_ctx_destroy (zmq_context);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void *publish(void *publisher){
|
void *publisher(void *zmq_publisher){
|
||||||
int queue_id=0;
|
int queue_id=0;
|
||||||
while(!__stop){
|
while(!__stop){
|
||||||
if(queues[queue_id].issending){
|
if(queues[queue_id].issending){
|
||||||
printf("Publishing...");
|
printf("Publishing...");
|
||||||
zmq_send(publisher,queues[queue_id].msg,queues[queue_id].size,0);
|
zmq_send(zmq_publisher,queues[queue_id].msg,queues[queue_id].size,0);
|
||||||
queues[queue_id].issending=0;
|
queues[queue_id].issending=0;
|
||||||
printf("done\n");
|
printf("done\n");
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue