summaryrefslogtreecommitdiff
path: root/src/main.c
blob: d11eeb20558b6e0117b332594c876c2bf8c84b42 (plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include <unistd.h>
#include <threads.h>
#include <stdio.h>
#include <stdint.h>
#include <errno.h>
#include <string.h>

#include <osm/bind.h>
#include <osm/protocol.h>

#include <sys/socket.h>

volatile double temperature = 0;
volatile double humidity = 0;

int _sock_connect(void *data)
{
	int fd = (uintptr_t)data;
	
	OSMInitFrame frame = {0};
	memcpy(frame.header.magic, OSM_MAGIC_INIT, 4);
	frame.header.keylen = 0;
	frame.header.keytype = OSM_KEYTYPE_NONE;

	write(fd, &frame, sizeof(frame));
	printf("Wrote 1!\n");

	double temp = temperature;
	write(fd, &temp, sizeof(temp));
	printf("Wrote 2!\n");
	close(fd);

	printf("Wrote!\n");
	
	return 0;
}

int _temp_poll(void *data)
{
	// struct timespec sleeper = {.tv_sec = 1};
	while(1)
	{
		temperature = 0.1;
		// humidity += 0.1;
		//printf("Hello");
		
		// while(thrd_sleep(&sleeper, NULL))
		// {}
	}
	thrd_exit(0);
}

int main(int argc, char **argv)
{
	int fd = osm_open_onboard(NULL);

	if (fd == -1)
	{
		perror("Error opening socket for osm-thermald");
		return 1;
	}

	thrd_t poll;
	thrd_create(&poll, (thrd_start_t) &_temp_poll, 0);
	thrd_detach(poll);
	
	Vector threads = osm_listen_and_accept(fd, _sock_connect);
	close(fd);

	// Close all threads
	for(unsigned int i = 0; i < threads.count; i++)
	{
		thrd_t *thread = vect_get(&threads, i);
		thrd_join(*thread, NULL);
	}
	
	// Cleanup
	vect_end(&threads);
	thrd_join(poll, NULL);

	return 0;
}