aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/storage_sqlite.h
blob: a755f5145a3bd4e4d77d3320816da4bea2da14c8 (plain) (blame)
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
/*
 * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com>
 * This file is part of the "cimple" project.
 * For details, see https://github.com/egor-tensin/cimple.
 * Distributed under the MIT License.
 */

#ifndef __STORAGE_SQLITE_H__
#define __STORAGE_SQLITE_H__

#include "run_queue.h"

struct storage_settings;
struct storage_sqlite_setttings;

struct storage;
struct storage_sqlite;

int storage_sqlite_settings_create(struct storage_settings *, const char *path);
void storage_sqlite_settings_destroy(const struct storage_settings *);

int storage_sqlite_create(struct storage *, const struct storage_settings *);
void storage_sqlite_destroy(struct storage *);

int storage_sqlite_run_create(struct storage *, const char *repo_url, const char *rev);
int storage_sqlite_get_run_queue(struct storage *, struct run_queue *runs);

#endif