Compare commits

...

2 Commits

Author SHA1 Message Date
chloe 0f31d51743 core: Add blob + data stream abstraction
A blob is a piece of data of variable length that belongs in a blob list
while a data stream is a buffer used to move data between blobs among
other things.

Signed-off-by: Chloe M. <chloe@mirocom.org>
2026-04-30 09:50:12 -04:00
chloe 433ab624ad build: fix up Makefile
Signed-off-by: Chloe M. <chloe@mirocom.org>
2026-04-30 09:49:06 -04:00
5 changed files with 163 additions and 1 deletions
+5 -1
View File
@@ -19,8 +19,12 @@ all: blobchain
.PHONY: blobchain .PHONY: blobchain
blobchain: $(OFILES) blobchain: $(OFILES)
$(CC) $< -o $@ $(CC) $^ -o $@
-include $(DFILES) -include $(DFILES)
%.o: %.c %.o: %.c
$(CC) -c $< $(CFLAGS) -o $@ $(CC) -c $< $(CFLAGS) -o $@
.PHONY: clean
clean:
rm -f $(OFILES) $(DFILES)
+48
View File
@@ -0,0 +1,48 @@
/*
* Copyright (c) 2026, Chloe M.
* Provided under the BSD-3 clause
*/
#include <errno.h>
#include "blobchain/blob.h"
#include "blobchain/memlib.h"
int
blob_list_init(struct blob_list *lp)
{
if (lp == NULL) {
errno = -EINVAL;
return -1;
}
lp->count = 0;
lp->head = NULL;
lp->tail = NULL;
return 0;
}
int
blob_list_append(struct blob_list *lp, struct blob *blob)
{
if (lp == NULL || blob == NULL) {
errno = -EINVAL;
return -1;
}
/* Create a head if needed */
if (lp->head == NULL) {
lp->head = blob;
}
/* Append the blob to the list */
if (lp->tail == NULL) {
lp->tail = blob;
} else {
lp->tail->next = blob;
lp->tail = blob;
}
++lp->count;
return 0;
return 0;
}
+25
View File
@@ -0,0 +1,25 @@
/*
* Copyright (c) 2026, Chloe M.
* Provided under the BSD-3 clause
*/
#include <string.h>
#include "blobchain/blob.h"
#include "blobchain/memlib.h"
struct blob *
blob_allocate(struct data_stream *stmp)
{
struct blob *bp;
bp = xmalloc(sizeof(*bp));
bp->length = (stmp != NULL) ? stmp->length : 0;
if (stmp == NULL) {
bp->data = NULL;
} else {
bp->data = xmalloc(stmp->length);
memcpy(bp->data, stmp->data, stmp->length);
}
return bp;
}
+63
View File
@@ -0,0 +1,63 @@
/*
* Copyright (c) 2026, Chloe M.
* Provided under the BSD-3 clause
*/
#ifndef BLOBCHAIN_BLOB_H
#define BLOBCHAIN_BLOB_H 1
#include <stdint.h>
#include <stddef.h>
#include "blobchain/stream.h"
/*
* Represents a single blob of data
*
* @data: Buffer containing blob data
* @length: Length of blob
* @next: Next blob
*/
struct blob {
void *data;
size_t length;
struct blob *next;
};
/*
* Represents a list of data blobs
*
* @head: List head
* @tail: List tail
* @count: Number of blobs present
*/
struct blob_list {
struct blob *head;
struct blob *tail;
size_t count;
};
/*
* Allocate memory for a new blob descriptor
*
* @stmp: Stream pointer to copy data from [NULLable]
*/
struct blob *blob_allocate(struct data_stream *stmp);
/*
* Add a blob to a list
*
* @lp: Blob list pointer
* @blob: Blob to add
*
* Returns zero on success
*/
int blob_list_append(struct blob_list *lp, struct blob *blob);
/*
* Initialize a list of blobs
*
* @lp: Bloblist pointer
*/
int blob_list_init(struct blob_list *lp);
#endif /* !BLOBCHAIN_BLOB_H */
+22
View File
@@ -0,0 +1,22 @@
/*
* Copyright (c) 2026, Chloe M.
* Provided under the BSD-3 clause
*/
#ifndef BLOBCHAIN_STREAM_H
#define BLOBCHAIN_STREAM_H 1
#include <stddef.h>
/*
* Represents a data stream
*
* @data: Data buffer
* @length: Number of bytes in data buffer
*/
struct data_stream {
void *data;
size_t length;
};
#endif /* !BLOBCHAIN_STREAM_H */