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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/*
* Copyright (c) 2017-2019 Cisco and/or its affiliates.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* \file cache.c
* \brief Implementation of face cache.
*
* The cache is currently implemented as a list so as not to worry about
* platform-specific implementations (eg missing functions in BSD libC for
* search.h).
*/
#include <math.h> // log2
#include <string.h> // memmove
#include "cache.h"
#define FACE_CACHE_MAX_SIZE_LOG_INIT 0
face_cache_t *
face_cache_create()
{
face_cache_t * face_cache = malloc(sizeof(face_cache_t));
if (!face_cache)
goto ERR_MALLOC;
face_cache->max_size_log = FACE_CACHE_MAX_SIZE_LOG_INIT;
#if(FACE_CACHE_MAX_SIZE_LOG_INIT == 0)
face_cache->faces = NULL;
#else
face_cache->faces = malloc((1 << face_cache->max_size_log) * sizeof(face_t*));
if (!face_cache->faces)
goto ERR_ARRAY:
#endif
face_cache->size = 0;
return face_cache;
#if(FACE_CACHE_MAX_SIZE_LOG_INIT != 0)
ERR_ARRAY:
free(face_cache);
#endif
ERR_MALLOC:
return NULL;
}
void
face_cache_free(face_cache_t * face_cache)
{
free(face_cache->faces);
free(face_cache);
}
face_t *
face_cache_add(face_cache_t * face_cache, face_t * face)
{
/* Ensure sufficient space for next addition */
size_t new_size_log = (face_cache->size > 0) ? log2(face_cache->size) + 1 : 0;
if (new_size_log > face_cache->max_size_log) {
face_cache->max_size_log = new_size_log;
face_cache->faces = realloc(face_cache->faces, (1 << new_size_log) * sizeof(face_t*));
}
if (!face_cache->faces)
goto ERR_REALLOC;
face_cache->faces[face_cache->size++] = face;
return face;
ERR_REALLOC:
return NULL;
}
int face_cache_search(face_cache_t * face_cache, face_t * face, face_cmp_t face_cmp)
{
for (int i = 0; i < face_cache->size; i++)
if (face_cmp(face, face_cache->faces[i]))
return i;
return -1;
}
/* Remove a single occurrence */
face_t *
face_cache_remove(face_cache_t * face_cache, face_t * face)
{
int pos = face_cache_search(face_cache, face, face_cmp);
if (pos < 0)
return NULL;
/* No need to move memory if last item is removed */
if (pos < face_cache->size)
memmove(face_cache->faces+pos, face_cache->faces+pos+1, face_cache->size - pos);
face_cache->size--;
return face;
}
/* TODO : remove by ... */
face_t *
face_cache_get_by_id(face_cache_t * face_cache, int id)
{
return NULL;
}
void
face_cache_dump(face_cache_t * face_cache)
{
}
|