Hash :
ba400836
Author :
Thomas de Grivel
Date :
2023-10-19T13:04:03
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 128
/* c3
* Copyright 2022,2023 kmx.io <contact@kmx.io>
*
* Permission is hereby granted to use this software granted the above
* copyright notice and this permission paragraph are included in all
* copies and substantial portions of this software.
*
* THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
* PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
* AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
* THIS SOFTWARE.
*/
#include <assert.h>
#include <stdlib.h>
#include "buf.h"
#include "buf_inspect.h"
#include "env.h"
#include "facts_cursor.h"
#include "facts_spec.h"
#include "facts_with.h"
#include "facts_with_cursor.h"
void facts_with_cursor_clean (s_facts_with_cursor *cursor)
{
uw i = 0;
assert(cursor);
while (i < cursor->facts_count) {
if (cursor->levels[i].spec) {
free(cursor->levels[i].spec);
facts_cursor_clean(&cursor->levels[i].cursor);
}
i++;
}
free(cursor->levels);
free(cursor->spec);
if (pthread_mutex_destroy(&cursor->mutex))
errx(1, "facts_with_cursor_clean: pthread_mutex_destroy");
}
s_fact * facts_with_cursor_next (s_facts_with_cursor *cursor)
{
s_fact *fact = NULL;
s_facts_with_cursor_level *level;
p_facts_spec parent_spec;
assert(cursor);
if (pthread_mutex_lock(&cursor->mutex))
errx(1, "facts_with_cursor_next: pthread_mutex_lock");
if (! cursor->facts_count)
goto ko;
if (cursor->level == cursor->facts_count) {
level = &cursor->levels[cursor->facts_count - 1];
#ifdef DEBUG_FACTS
buf_write_1(&g_c3_env.err, "[debug] cursor->level=");
buf_inspect_uw(&g_c3_env.err, &cursor->level);
buf_write_1(&g_c3_env.err, " level->spec=");
buf_inspect_facts_spec(&g_c3_env.err, level->spec);
buf_write_1(&g_c3_env.err, " ");
buf_inspect_fact(&g_c3_env.err, level->fact);
#endif
level->fact = facts_cursor_next(&level->cursor);
#ifdef DEBUG_FACTS
buf_write_1(&g_c3_env.err, " -> ");
buf_inspect_fact(&g_c3_env.err, level->fact);
buf_write_1(&g_c3_env.err, "\n");
buf_flush(&g_c3_env.err);
#endif
if (level->fact) {
if (pthread_mutex_unlock(&cursor->mutex))
errx(1, "facts_with_cursor_next: pthread_mutex_unlock");
return level->fact;
}
free(level->spec);
level->spec = NULL;
cursor->level--;
if (! cursor->level) {
cursor->facts_count = 0;
goto ko;
}
cursor->level--;
}
while (cursor->level < cursor->facts_count) {
level = &cursor->levels[cursor->level];
if (! level->spec) {
if (cursor->level)
parent_spec = cursor->levels[cursor->level - 1].spec + 4;
else
parent_spec = cursor->spec;
level->spec = facts_spec_new_expand(parent_spec);
facts_with_tags(cursor->facts, &level->cursor,
level->spec[0], level->spec[1],
level->spec[2]);
}
#ifdef DEBUG_FACTS
buf_write_1(&g_c3_env.err, "[debug] cursor->level=");
buf_inspect_uw(&g_c3_env.err, &cursor->level);
buf_write_1(&g_c3_env.err, " level->spec=");
buf_inspect_facts_spec(&g_c3_env.err, level->spec);
buf_write_1(&g_c3_env.err, " ");
buf_inspect_fact(&g_c3_env.err, level->fact);
#endif
fact = facts_cursor_next(&level->cursor);
level->fact = fact;
#ifdef DEBUG_FACTS
buf_write_1(&g_c3_env.err, " -> ");
buf_inspect_fact(&g_c3_env.err, level->fact);
buf_write_1(&g_c3_env.err, "\n");
buf_flush(&g_c3_env.err);
#endif
if (fact) {
cursor->level++;
continue;
}
free(level->spec);
level->spec = NULL;
if (! cursor->level) {
cursor->facts_count = 0;
goto ko;
}
cursor->level--;
}
if (pthread_mutex_unlock(&cursor->mutex))
errx(1, "facts_with_cursor_next: pthread_mutex_unlock");
return fact;
ko:
if (pthread_mutex_unlock(&cursor->mutex))
errx(1, "facts_with_cursor_next: pthread_mutex_unlock");
return NULL;
}