forked from sysprog21/fibdrv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.c
67 lines (58 loc) · 1.83 KB
/
client.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
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <time.h>
#include <unistd.h>
#define FIB_DEV "/dev/fibonacci"
static inline long long get_nanotime()
{
struct timespec ts;
clock_gettime(CLOCK_REALTIME, &ts);
return ts.tv_sec * 1e9 + ts.tv_nsec;
}
int main()
{
// char buf[1] ;
char read_buf[] = "";
char write_buf[] = "testing writing";
int offset = 100; /* TODO: try test something bigger than the limit */
int fd = open(FIB_DEV, O_RDWR);
FILE *data = fopen("data.txt", "w");
if (fd < 0) {
perror("Failed to open character device");
exit(1);
}
/* for (int i = 0; i <= offset; i++) {
* sz = write(fd, write_buf, strlen(write_buf));
* printf("Writing to " FIB_DEV ", returned the sequence %lld\n", sz);
}*/
write(fd, write_buf, strlen(write_buf));
for (int i = 0; i <= offset; i++) {
lseek(fd, i, SEEK_SET);
long long start = get_nanotime();
long long sz = read(fd, read_buf, 1);
read_buf[sz] = '\0';
long long utime = get_nanotime() - start;
long long ktime = write(fd, write_buf, strlen(write_buf));
fprintf(data, "%d %lld %lld %lld\n", i, ktime, utime, utime - ktime);
printf("Reading from " FIB_DEV
" at offset %d, returned the sequence "
"%s.\n",
i, read_buf);
printf("Writing to " FIB_DEV ", returned the seauence %lld\n", ktime);
}
/*for (int i = offset; i >= 0; i--) {
* lseek(fd, i, SEEK_SET);
* sz = read(fd, read_buf, 1);
read_buf[sz] = '\0';
printf("Reading from " FIB_DEV
" at offset %d, returned the sequence "
* "%s.\n",
* i, read_buf);
}*/
close(fd);
fclose(data);
return 0;
}