aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/server.h
blob: 9107b4c182a72485d46622314176233875aaee14 (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
29
30
31
32
33
34
35
36
#ifndef __SERVER_H__
#define __SERVER_H__

#include "ci_queue.h"
#include "tcp_server.h"
#include "worker_queue.h"

#include <pthread.h>

struct settings {
	const char *port;
};

struct server {
	pthread_mutex_t server_mtx;
	pthread_cond_t server_cv;

	int stopping;

	struct tcp_server tcp_server;

	struct worker_queue worker_queue;
	struct ci_queue ci_queue;

	pthread_t scheduler;
};

int server_create(struct server *, const struct settings *);
void server_destroy(struct server *);

int server_main(struct server *);

int server_new_worker(struct server *, int fd);
int server_ci_run(struct server *, const char *url, const char *rev);

#endif