[go: up one dir, main page]

File: function.c

package info (click to toggle)
cook 2.25-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 7,816 kB
  • ctags: 4,036
  • sloc: ansic: 50,692; sh: 13,734; makefile: 4,528; yacc: 3,168; perl: 224; awk: 219
file content (155 lines) | stat: -rw-r--r-- 3,285 bytes parent folder | download | duplicates (4)
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*
 *	cook - file construction tool
 *	Copyright (C) 1997, 1999 Peter Miller;
 *	All rights reserved.
 *
 *	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 2 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, write to the Free Software
 *	Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
 *
 * MANIFEST: functions to manipulate function IDs
 */

#include <id/function.h>
#include <id/private.h>
#include <opcode/context.h>
#include <opcode/list.h>
#include <trace.h>


typedef struct id_function_ty id_function_ty;
struct id_function_ty
{
	id_ty		inherited;
	opcode_list_ty	*value;
};


/*
 * NAME
 *	destructor
 *
 * SYNOPSIS
 *	void destructor(id_ty *);
 *
 * DESCRIPTION
 *	The destructor function is used to release the resources held by
 *	an ID instance.
 */

static void destructor _((id_ty *));

static void
destructor(idp)
	id_ty		*idp;
{
	id_function_ty	*this;

	trace(("id_function::destructor(idp = %08lX)\n{\n"/*}*/, (long)idp));
	this = (id_function_ty *)idp;
	opcode_list_delete(this->value);
	trace((/*{*/"}\n"));
}


/*
 * NAME
 *	interpret
 *
 * SYNOPSIS
 *	int interpret(id_ty *);
 *
 * DESCRIPTION
 *	The interpret function is used to evaluate an ID instance (there
 *	are several types).  The arguments to the interpretation are not to
 *	be changed, the results are only to be appended (not
 *	constructor'ed first).
 *
 * RETURNS
 *	int; 0 on success, -1 on error.
 */

static int interpret _((id_ty *, opcode_context_ty *,
	const struct expr_position_ty *));

static int
interpret(idp, ocp, pp)
	id_ty		*idp;
	opcode_context_ty *ocp;
	const struct expr_position_ty *pp;
{
	id_function_ty	*this;

	trace(("id_function::evaluate(idp = %08lX)\n{\n"/*}*/, (long)idp));
	this = (id_function_ty *)idp;
	opcode_context_call(ocp, this->value);
	trace((/*{*/"}\n"));
	return 0;
}


/*
 * NAME
 *	method
 *
 * DESCRIPTION
 *	The method function describes this ID class.
 *
 * CAVEAT
 *	This symbol is not to be exported from this file (its name is
 *	not unique).
 */

static id_method_ty method =
{
	"function",
	sizeof(id_function_ty),
	destructor,
	interpret,
	interpret, /* script */
};


/*
 * NAME
 *	id_function_new
 *
 * SYNOPSIS
 *	void id_function_new(void);
 *
 * DESCRIPTION
 *	The id_function_new function is used to create a new instance of
 *	a function ID's value.  The given value is copied.
 *
 * RETURNS
 *	id_ty *; a pointer to a ID instance is dynamic memory.
 *
 * CAVEAT
 *	Use id_instance_delete when you are done with it.
 */

id_ty *
id_function_new(olp)
	opcode_list_ty	*olp;
{
	id_ty		*idp;
	id_function_ty	*this;

	trace(("id_function::new()\n{\n"/*}*/));
	idp = id_instance_new(&method);
	this = (id_function_ty *)idp;
	this->value = olp;
	trace(("return %08lX;\n", (long)idp));
	trace((/*{*/"}\n"));
	return idp;
}