[go: up one dir, main page]

Menu

[r74]: / main / src / ospstatus.c  Maximize  Restore  History

Download this file

247 lines (216 with data), 7.9 kB

  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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
/**************************************************************************
*** COPYRIGHT (c) 2002 by TransNexus, Inc. ***
*** ***
*** This software is property of TransNexus, Inc. ***
*** This software is freely available under license from TransNexus. ***
*** The license terms and conditions for free use of this software by ***
*** third parties are defined in the OSP Toolkit Software License ***
*** Agreement (LICENSE.txt). Any use of this software by third ***
*** parties, which does not comply with the terms and conditions of the ***
*** OSP Toolkit Software License Agreement is prohibited without ***
*** the prior, express, written consent of TransNexus, Inc. ***
*** ***
*** Thank you for using the OSP ToolKit(TM). Please report any bugs, ***
*** suggestions or feedback to support@transnexus.com ***
*** ***
**************************************************************************/
/*
* ospstatus.c - OSP status functions
*/
#include "osp.h"
#include "osperrno.h"
#include "osplist.h"
#include "ospxmldoc.h"
#include "ospxmlattr.h"
#include "ospxmlelem.h"
#include "ospmsgattr.h"
#include "ospmsgelem.h"
#include "ospmsg.h"
#include "ospstatus.h"
/* */
/*-----------------------------------------------------------------------*
* OSPPStatusNew() - create a new status object
*-----------------------------------------------------------------------*/
OSPTSTATUS * /* returns ptr to status or null */
OSPPStatusNew(void)
{
OSPTSTATUS *ospvStatus = OSPC_OSNULL;
/* try to allocate the memory for the entire object */
OSPM_MALLOC(ospvStatus, OSPTSTATUS,sizeof(*ospvStatus));
if(ospvStatus!=OSPC_OSNULL)
{
/* !!!PS Initialize it */
OSPM_MEMSET(ospvStatus, 0, sizeof(*ospvStatus));
ospvStatus->ospmStatusDesc=OSPC_OSNULL;
}
return(ospvStatus);
}
/* */
/*-----------------------------------------------------------------------*
* OSPPStatusDelete() - destroy a status object
*-----------------------------------------------------------------------*/
void /* no return */
OSPPStatusDelete(
OSPTSTATUS **ospvStatus /* Status to destroy */
)
{
if (*ospvStatus != OSPC_OSNULL)
{
if ((*ospvStatus)->ospmStatusDesc != OSPC_OSNULL )
{
OSPM_FREE((*ospvStatus)->ospmStatusDesc);
(*ospvStatus)->ospmStatusDesc = OSPC_OSNULL;
}
OSPM_FREE(*ospvStatus);
*ospvStatus = OSPC_OSNULL;
}
}
/* */
/*-----------------------------------------------------------------------*
* OSPPStatusSetDesc() - set the status description
*-----------------------------------------------------------------------*/
void /* no return */
OSPPStatusSetDesc(
OSPTSTATUS *ospvStatus, /* Status to set */
unsigned char *ospvDesc
)
{
if (ospvStatus != OSPC_OSNULL)
{
if (ospvStatus->ospmStatusDesc != OSPC_OSNULL)
{
OSPM_FREE(ospvStatus->ospmStatusDesc);
ospvStatus->ospmStatusDesc = OSPC_OSNULL;
}
OSPM_MALLOC(ospvStatus->ospmStatusDesc, unsigned char,
strlen((const char *)ospvDesc)+1);
if (ospvStatus->ospmStatusDesc != OSPC_OSNULL)
{
OSPM_MEMCPY((ospvStatus->ospmStatusDesc),
(const char *)(ospvDesc), strlen((const char *)ospvDesc)+1);
ospvStatus->ospmHasDesc = OSPC_TRUE;
}
}
return;
}
#ifdef OSPC_DEBUG
/* */
/*-----------------------------------------------------------------------*
* OSPPStatusHasCode() - is the status code populated
*-----------------------------------------------------------------------*/
unsigned /* return 1 or 0 */
OSPPStatusHasCode(
OSPTSTATUS *ospvStatus /* Status to check */
)
{
unsigned hascode = OSPC_FALSE;
if (ospvStatus != OSPC_OSNULL)
{
hascode=ospvStatus->ospmHasCode;
}
return hascode;
}
/* */
/*-----------------------------------------------------------------------*
* OSPPStatusGetCode() - get the status code
*-----------------------------------------------------------------------*/
unsigned /* return code */
OSPPStatusGetCode(
OSPTSTATUS *ospvStatus /* Status to get */
)
{
unsigned statuscode = 0;
if((ospvStatus != OSPC_OSNULL)&&(ospvStatus->ospmHasCode))
{
statuscode = ospvStatus->ospmStatusCode;
}
return statuscode;
}
#endif /* OSPC_DEBUG */
/* */
/*-----------------------------------------------------------------------*
* OSPPStatusFromElement() - create a status from an XML element
*-----------------------------------------------------------------------*/
unsigned /* returns error code */
OSPPStatusFromElement(
OSPTXMLELEM *ospvElem, /* input is XML element */
OSPTSTATUS **ospvStatus /* where to put status pointer */
)
{
unsigned ospvErrCode = OSPC_ERR_NO_ERROR;
OSPTXMLELEM *elem = OSPC_OSNULL;
unsigned long temp = 0;
if (ospvElem == OSPC_OSNULL)
{
ospvErrCode = OSPC_ERR_XML_NO_ELEMENT;
}
if (ospvStatus == OSPC_OSNULL)
{
ospvErrCode = OSPC_ERR_DATA_NO_STATUS;
}
#if 0
assert(OSPPMsgGetElemPart(OSPPXMLElemGetName(ospvElem)) ==ospeElemStatus);
#endif
/* create the Status structure */
if (ospvErrCode == OSPC_ERR_NO_ERROR)
{
*ospvStatus = OSPPStatusNew();
if (*ospvStatus == OSPC_OSNULL)
{
ospvErrCode = OSPC_ERR_DATA_NO_STATUS;
}
}
if (ospvErrCode == OSPC_ERR_NO_ERROR)
{
/*
* The Status element should consist of several child
* elements. We'll run through what's there and pick out
* the information we need. First, though, let's zero out
* the values that we expect to find.
*/
for ( elem = (OSPTXMLELEM *)OSPPXMLElemFirstChild(ospvElem);
(elem != (OSPTXMLELEM *)OSPC_OSNULL) && (ospvErrCode == OSPC_ERR_NO_ERROR);
elem = (OSPTXMLELEM *)OSPPXMLElemNextChild(ospvElem, elem) )
{
switch (OSPPMsgGetElemPart(OSPPXMLElemGetName(elem)))
{
case ospeElemCode:
ospvErrCode = OSPPMsgCodeFromElement(elem, &temp);
OSPPStatusSetCode(*ospvStatus, temp);
break;
case ospeElemDesc:
OSPPStatusSetDesc(*ospvStatus, (unsigned char *)OSPPXMLElemGetValue(elem));
break;
default:
/*
* This is an element we don't understand. If it's
* critical, then we have to report an error.
* Otherwise we can ignore it.
*/
if (OSPPMsgElemIsCritical(elem))
{
ospvErrCode = OSPC_ERR_XML_BAD_ELEMENT;
}
break;
}
}
}
return ospvErrCode;
}
/* */
/*-----------------------------------------------------------------------*
* OSPPStatusSetCode() - set the status code
*-----------------------------------------------------------------------*/
void /* no return */
OSPPStatusSetCode(
OSPTSTATUS *ospvStatus, /* Status to set */
unsigned ospvCode
)
{
if (ospvStatus != OSPC_OSNULL)
{
ospvStatus->ospmStatusCode = ospvCode;
ospvStatus->ospmHasCode=1;
}
return;
}