aboutsummaryrefslogtreecommitdiff
path: root/vcal.c
blob: fa0649e6ffc2ed01c12ae402c1b4f2323a31672b (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
83
84
85
86
87
#include "vcal.h"

#include <string.h>

// INIT_F(vcomponent, const char* type, const char* filename) {
vcomponent::vcomponent (const char* type, const char* filename) {

	// INIT(TRIE(content_line), &this->clines);
	// INIT(VECT(vcomponent), &this->components);

	this->filename = NULL;
	if (filename != NULL) {
		this->filename = (char*) calloc(sizeof(*filename), strlen(filename) + 1);
		strcpy(this->filename, filename);
	}

	this->type = (char*) calloc(sizeof(*type), strlen(type) + 1);
	strcpy(this->type, type);

	this->parent = NULL;
}

content_line* get_property (vcomponent* ev, const char* key) {
	size_t len = strlen(key) + 1;
	char* cpy = (char*) (calloc(sizeof(*cpy), len));
	strncpy (cpy, key, len);

	// content_line* ret = GET(TRIE(content_line))(&ev->clines, cpy);
	content_line* ret = ev->clines.get(cpy);

	free (cpy);
	return ret;
}

// FREE_F(vcomponent) {
vcomponent::~vcomponent () {
	if (this->filename != NULL) free(this->filename);
	free(this->type);

	// if (FREE(TRIE(content_line))(&self->clines) != 0) {
	// 	fprintf(stderr, "Error freeing vcomponent belonging to file \n %s \n",
	// 			self->filename);
	// }

	// FREE(VECT(vcomponent))(&self->components);
}

int PUSH(vcomponent)(vcomponent* parent, vcomponent* child) {
	// return PUSH(VECT(vcomponent))(&parent->components, child);
	return parent->components.push(child);
}

int DEEP_COPY(vcomponent)(vcomponent* a, vcomponent* b) {
	(void) a;
	(void) b;
	ERR("Deep copy not implemented for vcomponent");
	return -1;
}

content_line::content_line (strbuf* key, strbuf* val) {
	this->key = key;
	this->push_value(val);
}

void vcomponent:: push_kv (strbuf* key, strbuf* val) {
	auto cl = new content_line (key, val);
	this->clines.push(key->mem, cl);
}

#if 0
FMT_F(vcomponent) {
	int seek = 0;

	for (int i = 0; i < 40; i++) fmtf("_");

	seek += sprintf(buf + seek, _YELLOW);
	seek += sprintf(buf + seek, "\nVComponet (Type := %s)\n", self->type); 
	seek += sprintf(buf + seek, _RESET);
	// seek += FMT(TRIE(content_line))(&self->clines, buf + seek);
	seek += sprintf(buf + seek, "\nComponents:\n");
	FOR(VECT, vcomponent, comp, &self->components) {
		seek += FMT(vcomponent)(comp, buf + seek);
	}

	return seek;
}
#endif