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
|
/*
* cook - file construction tool
* Copyright (C) 1994, 1997, 2006-2009 Peter Miller
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see
* <http://www.gnu.org/licenses/>.
*/
#include <common/mem.h>
#include <make2cook/stmt.h>
#include <common/trace.h>
stmt_ty *
stmt_alloc(stmt_method_ty *mp)
{
stmt_ty *result;
trace(("stmt_alloc(mp = %p)\n{\n", mp));
result = mem_alloc(mp->size);
result->method = mp;
result->white_space = 0;
string_list_constructor(&result->mdef);
string_list_constructor(&result->cdef);
string_list_constructor(&result->ref);
string_list_constructor(&result->rref);
if (mp->constructor)
mp->constructor(result);
trace(("return %p;\n", result));
trace(("}\n"));
return result;
}
void
stmt_emit(stmt_ty *sp)
{
trace(("stmt_emit(sp = %p)\n{\n", sp));
if (sp->method->emit)
sp->method->emit(sp);
trace(("}\n"));
}
void
stmt_free(stmt_ty *sp)
{
trace(("stmt_free(sp = %p)\n{\n", sp));
if (sp->method->destructor)
sp->method->destructor(sp);
string_list_destructor(&sp->mdef);
string_list_destructor(&sp->cdef);
string_list_destructor(&sp->ref);
string_list_destructor(&sp->rref);
mem_free(sp);
trace(("}\n"));
}
void
stmt_variable_merge(stmt_ty *parent, stmt_ty *child)
{
size_t j;
for (j = 0; j < child->mdef.nstrings; ++j)
string_list_append_unique(&parent->mdef, child->mdef.string[j]);
for (j = 0; j < child->cdef.nstrings; ++j)
string_list_append_unique(&parent->cdef, child->cdef.string[j]);
for (j = 0; j < child->ref.nstrings; ++j)
string_list_append_unique(&parent->ref, child->ref.string[j]);
for (j = 0; j < child->rref.nstrings; ++j)
string_list_append_unique(&parent->rref, child->rref.string[j]);
}
void
stmt_regroup(stmt_ty *sp)
{
trace(("stmt_regroup(sp = %p)\n{\n", sp));
if (sp->method->regroup)
sp->method->regroup(sp);
trace(("}\n"));
}
void
stmt_sort(stmt_ty *sp)
{
trace(("stmt_sort(sp = %p)\n{\n", sp));
if (sp->method->sort)
sp->method->sort(sp);
trace(("}\n"));
}
|