async-append: New library to allow asynchronous appending to a log file.
[sliver-openvswitch.git] / lib / async-append-sync.c
1 /* Copyright (c) 2013 Nicira, Inc.
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #include <config.h>
17
18 /* This implementation of the async-append.h interface uses ordinary
19  * synchronous I/O, so it should be portable everywhere. */
20
21 #include "async-append.h"
22
23 #include <stdlib.h>
24 #include <unistd.h>
25
26 #include "util.h"
27
28 struct async_append {
29     int fd;
30 };
31
32 void
33 async_append_enable(void)
34 {
35     /* Nothing to do. */
36 }
37
38 struct async_append *
39 async_append_create(int fd)
40 {
41     struct async_append *ap = xmalloc(sizeof *ap);
42     ap->fd = fd;
43     return ap;
44 }
45
46 void
47 async_append_destroy(struct async_append *ap)
48 {
49     free(ap);
50 }
51
52 void
53 async_append_write(struct async_append *ap, const void *data, size_t size)
54 {
55     ignore(write(ap->fd, data, size));
56 }
57
58 void
59 async_append_flush(struct async_append *ap OVS_UNUSED)
60 {
61     /* Nothing to do. */
62 }