The eighth batch
[alt-git.git] / reftable / blocksource.c
blobeeed254ba9c2da51177eb7ed81fbf16d17ba183b
1 /*
2 Copyright 2020 Google LLC
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file or at
6 https://developers.google.com/open-source/licenses/bsd
7 */
9 #include "system.h"
11 #include "basics.h"
12 #include "blocksource.h"
13 #include "reftable-blocksource.h"
14 #include "reftable-error.h"
16 static void strbuf_return_block(void *b, struct reftable_block *dest)
18 if (dest->len)
19 memset(dest->data, 0xff, dest->len);
20 reftable_free(dest->data);
23 static void strbuf_close(void *b)
27 static int strbuf_read_block(void *v, struct reftable_block *dest, uint64_t off,
28 uint32_t size)
30 struct strbuf *b = v;
31 assert(off + size <= b->len);
32 REFTABLE_CALLOC_ARRAY(dest->data, size);
33 memcpy(dest->data, b->buf + off, size);
34 dest->len = size;
35 return size;
38 static uint64_t strbuf_size(void *b)
40 return ((struct strbuf *)b)->len;
43 static struct reftable_block_source_vtable strbuf_vtable = {
44 .size = &strbuf_size,
45 .read_block = &strbuf_read_block,
46 .return_block = &strbuf_return_block,
47 .close = &strbuf_close,
50 void block_source_from_strbuf(struct reftable_block_source *bs,
51 struct strbuf *buf)
53 assert(!bs->ops);
54 bs->ops = &strbuf_vtable;
55 bs->arg = buf;
58 static void malloc_return_block(void *b, struct reftable_block *dest)
60 if (dest->len)
61 memset(dest->data, 0xff, dest->len);
62 reftable_free(dest->data);
65 static struct reftable_block_source_vtable malloc_vtable = {
66 .return_block = &malloc_return_block,
69 static struct reftable_block_source malloc_block_source_instance = {
70 .ops = &malloc_vtable,
73 struct reftable_block_source malloc_block_source(void)
75 return malloc_block_source_instance;
78 struct file_block_source {
79 uint64_t size;
80 unsigned char *data;
83 static uint64_t file_size(void *b)
85 return ((struct file_block_source *)b)->size;
88 static void file_return_block(void *b, struct reftable_block *dest)
92 static void file_close(void *v)
94 struct file_block_source *b = v;
95 munmap(b->data, b->size);
96 reftable_free(b);
99 static int file_read_block(void *v, struct reftable_block *dest, uint64_t off,
100 uint32_t size)
102 struct file_block_source *b = v;
103 assert(off + size <= b->size);
104 dest->data = b->data + off;
105 dest->len = size;
106 return size;
109 static struct reftable_block_source_vtable file_vtable = {
110 .size = &file_size,
111 .read_block = &file_read_block,
112 .return_block = &file_return_block,
113 .close = &file_close,
116 int reftable_block_source_from_file(struct reftable_block_source *bs,
117 const char *name)
119 struct file_block_source *p;
120 struct stat st;
121 int fd;
123 fd = open(name, O_RDONLY);
124 if (fd < 0) {
125 if (errno == ENOENT)
126 return REFTABLE_NOT_EXIST_ERROR;
127 return -1;
130 if (fstat(fd, &st) < 0) {
131 close(fd);
132 return REFTABLE_IO_ERROR;
135 REFTABLE_CALLOC_ARRAY(p, 1);
136 p->size = st.st_size;
137 p->data = xmmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
138 close(fd);
140 assert(!bs->ops);
141 bs->ops = &file_vtable;
142 bs->arg = p;
143 return 0;