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
|
#define _FILE_OFFSET_BITS 64
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/statvfs.h>
#include "../../src/include/cephfs/libcephfs.h"
#define MB64 (1<<26)
int main(int argc, const char **argv)
{
struct ceph_mount_info *cmount;
int ret, fd, len;
char buf[1024];
if (argc < 3) {
fprintf(stderr, "usage: ./%s <conf> <file>\n", argv[0]);
exit(1);
}
ret = ceph_create(&cmount, NULL);
if (ret) {
fprintf(stderr, "ceph_create=%d\n", ret);
exit(1);
}
ret = ceph_conf_read_file(cmount, argv[1]);
if (ret) {
fprintf(stderr, "ceph_conf_read_file=%d\n", ret);
exit(1);
}
ret = ceph_conf_parse_argv(cmount, argc, argv);
if (ret) {
fprintf(stderr, "ceph_conf_parse_argv=%d\n", ret);
exit(1);
}
ret = ceph_mount(cmount, NULL);
if (ret) {
fprintf(stderr, "ceph_mount=%d\n", ret);
exit(1);
}
ret = ceph_chdir(cmount, "/");
if (ret) {
fprintf(stderr, "ceph_chdir=%d\n", ret);
exit(1);
}
fd = ceph_open(cmount, argv[2], O_CREAT|O_TRUNC|O_RDWR, 0777);
if (fd < 0) {
fprintf(stderr, "ceph_open=%d\n", fd);
exit(1);
}
memset(buf, 'a', sizeof(buf));
len = ceph_write(cmount, fd, buf, sizeof(buf), 0);
fprintf(stdout, "wrote %d bytes\n", len);
ceph_shutdown(cmount);
return 0;
}
|