summaryrefslogtreecommitdiff
path: root/src/tet3/apilib/dcancel.c
blob: 4c21de63fb96d1d9ae6257f4bc2c19209ac436be (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
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/*
 *	SCCS: @(#)dcancel.c	1.9 (98/08/28)
 *
 *	UniSoft Ltd., London, England
 *
 * (C) Copyright 1997 X/Open Company Limited
 *
 * All rights reserved.  No part of this source code may be reproduced,
 * stored in a retrieval system, or transmitted, in any form or by any
 * means, electronic, mechanical, photocopying, recording or otherwise,
 * except as stated in the end-user licence agreement, without the prior
 * permission of the copyright owners.
 * A copy of the end-user licence agreement is contained in the file
 * Licence which accompanies this distribution.
 * 
 * X/Open and the 'X' symbol are trademarks of X/Open Company Limited in
 * the UK and other countries.
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#ifndef lint
static char sccsid[] = "@(#)dcancel.c	1.9 (98/08/28) TET3 release 3.3";
#endif

/************************************************************************

SCCS:   	@(#)dcancel.c	1.9 98/08/28 TETware release 3.3
NAME:		dcancel.c
PRODUCT:	TETware
AUTHOR:		Andrew Dingwall, UniSoft Ltd.
DATE CREATED:	June 1997

DESCRIPTION:
	API library functions for cancelling test purposes.

	This version of this file replaces a previous one of the same
	name.
	The API functions provided here perform the same actions as
	those provided in the previous file, but the implementation is
	different.
	Re-implementation of these functions became necessary with the
	introduction of the defined test case interface.

MODIFICATIONS:

	Andrew Dingwall, UniSoft Ltd., July 1998
	Added support for shared API libraries.
 
************************************************************************/

#include <stdio.h>
#include <stdlib.h>
#include "dtmac.h"
#include "bstring.h"
#include "dtetlib.h"
#include "tet_api.h"


#ifdef NEEDsrcFile
static char srcFile[] = __FILE__;	/* file name for error reporting */
#endif


/*
** deletion reason structure
**
** an element in this structure is allocated for each test purpose
** that has been deleted
*/

struct delreason {
	int dr_testnum;		/* absolute test number of deleted TP */
	char *dr_reason;	/* pointer to the deletion reason text */
};

/* the list of deletion reasons itself */
static struct delreason *delreason;
static int ldelreason, ndelreason;


/* static function declarations */
static struct delreason *dralloc PROTOLIST((void));
static struct delreason *drfind PROTOLIST((int));
static void drfree PROTOLIST((struct delreason *));


/*
**	tet_delete() - mark a test purpose as cancelled
*/

TET_IMPORT void tet_delete(testnum, reason)
int testnum;
char *reason;
{
	struct delreason *drp;

	if (testnum <= 0)
		return;

	/*
	** see if this TP is currently deleted -
	**
	** if it isn't and the request is to delete it now, allocate a new
	** delreason structure for this TP and mark it as deleted
	*/
	if ((drp = drfind(testnum)) == (struct delreason *) 0) {
		if (reason) {
			drp = dralloc();
			drp->dr_testnum = testnum;
			drp->dr_reason = reason;
		}
		return;
	}

	/*
	** here when the TP has previously been deleted
	**
	** if the deletion reason is to be changed, do so now;
	** otherwise the TP is to be undeleted so mark the delreason
	** structure as free
	*/
	if (reason)
		drp->dr_reason = reason;
	else
		drfree(drp);
}

/*
**	tet_reason() - return the deletion reason for the specified
**		test purpose
**
**	return (char *) 0 if the test purpose is not marked as cancelled
*/

TET_IMPORT char *tet_reason(testnum)
int testnum;
{
	register struct delreason *drp;

	if (testnum < 0 || (drp = drfind(testnum)) == (struct delreason *) 0)
		return((char *) 0);

	return(drp->dr_reason);
}

/*
**	drfind() - find the delreason element which relates to testnum
**		and return a pointer thereto
**
**	return (struct delreason *) 0 if no such element can be found
*/

static struct delreason *drfind(testnum)
int testnum;
{
	register struct delreason *drp;

	if (delreason)
		for (drp = delreason; drp < delreason + ndelreason; drp++)
			if (drp->dr_testnum == testnum)
				return(drp);

	return((struct delreason *) 0);
}

/*
**	dralloc() - allocate a new delreason element and return a pointer
**		thereto
*/

static struct delreason *dralloc()
{
	register struct delreason *drp;

	/* see if there is a free delreason structure that we can use */
	if ((drp = drfind(-1)) != (struct delreason *) 0)
		return(drp);

	/* no free structures so we must allocate a new one */
	if (BUFCHK((char **) &delreason, &ldelreason, (ndelreason + 1) * sizeof *delreason) < 0)
		tet_exit(EXIT_FAILURE);

	drp = delreason + ndelreason++;
	bzero((char *) drp, sizeof *drp);
	return(drp);
}

/*
**	drfree() - mark a delreason element as free
*/

static void drfree(drp)
struct delreason *drp;
{
	drp->dr_reason = (char *) 0;
	drp->dr_testnum = -1;
}