forked from marioskogias/blkin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.c
159 lines (124 loc) · 3.54 KB
/
test.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/*
* In this example we have 2 processes communicating over a unix socket.
* We are going to trace the communication with our library
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include "zipkin_c.h"
#define SOCK_PATH "socket"
struct message {
char actual_message[20];
struct blkin_trace_info trace_info;
};
void process_a()
{
int i;
printf("I am process A: %d\n", getpid());
/*initialize endpoint*/
struct blkin_endpoint endp;
blkin_init_endpoint(&endp, "10.0.0.1", 5000, "service a");
struct blkin_trace trace;
struct blkin_annotation ant;
struct message msg = {.actual_message = "message"};
char ack;
/*create and bind socket*/
int s, s2, t, len;
struct sockaddr_un local, remote;
if ((s = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
perror("socket");
exit(1);
}
local.sun_family = AF_UNIX;
strcpy(local.sun_path, SOCK_PATH);
unlink(local.sun_path);
len = strlen(local.sun_path) + sizeof(local.sun_family);
if (bind(s, (struct sockaddr *)&local, len) == -1) {
perror("bind");
exit(1);
}
if (listen(s, 5) == -1) {
perror("listen");
exit(1);
}
printf("Waiting for a connection...\n");
t = sizeof(remote);
if ((s2 = accept(s, (struct sockaddr *)&remote, &t)) == -1) {
perror("accept");
exit(1);
}
printf("Connected.\n");
for (i=0;i<10;i++) {
/*create trace*/
blkin_init_new_trace(&trace, "process a", &endp);
blkin_init_timestamp_annotation(&ant, "start", &endp);
blkin_record(&trace, &ant);
/*set trace fields to message*/
blkin_set_trace_info(&trace, &msg.trace_info);
/*send*/
send(s2, &msg, sizeof(struct message), 0);
/*wait for ack*/
recv(s2, &ack, 1, 0);
/*create annotation and log*/
blkin_init_timestamp_annotation(&ant, "end", &endp);
blkin_record(&trace, &ant);
}
close(s2);
}
void process_b()
{
int i;
printf("I am process B: %d\n", getpid());
/*initialize endpoint*/
struct blkin_endpoint endp;
blkin_init_endpoint(&endp, "10.0.0.2", 5001, "service b");
struct blkin_trace trace;
struct blkin_annotation ant;
struct message msg;
int s, t, len;
struct sockaddr_un remote;
/*Connect*/
if ((s = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
perror("socket");
exit(1);
}
printf("Trying to connect...\n");
remote.sun_family = AF_UNIX;
strcpy(remote.sun_path, SOCK_PATH);
len = strlen(remote.sun_path) + sizeof(remote.sun_family);
if (connect(s, (struct sockaddr *)&remote, len) == -1) {
perror("connect");
exit(1);
}
printf("Connected.\n");
for (i=0;i<10;i++) {
recv(s, &msg, sizeof(struct message), 0);
/*create child trace*/
blkin_init_child_info(&trace, &msg.trace_info, "process b");
/*create annotation and log*/
blkin_init_timestamp_annotation(&ant, "start", &endp);
blkin_record(&trace, &ant);
/*Process...*/
usleep(10);
printf("Message received %s\n", msg.actual_message);
/*create annotation and log*/
blkin_init_timestamp_annotation(&ant, "end", &endp);
blkin_record(&trace, &ant);
/*send ack*/
send(s, "*", 1, 0);
}
}
int main()
{
if (fork()){
process_a();
exit(0);
}
else{
process_b();
exit(0);
}
}