172 lines
6.2 KiB
C
172 lines
6.2 KiB
C
|
|
/************************************************************************/
|
||
|
|
/* SISCO SOFTWARE MODULE HEADER *****************************************/
|
||
|
|
/************************************************************************/
|
||
|
|
/* (c) Copyright Systems Integration Specialists Company, Inc., */
|
||
|
|
/* 1986 - 2001, All Rights Reserved. */
|
||
|
|
/* */
|
||
|
|
/* PROPRIETARY AND CONFIDENTIAL */
|
||
|
|
/* */
|
||
|
|
/* MODULE NAME : rq_delvlist.c */
|
||
|
|
/* PRODUCT(S) : MMSEASE, MMSEASE-LITE */
|
||
|
|
/* */
|
||
|
|
/* MODULE DESCRIPTION : */
|
||
|
|
/* This module contains the requester portion of delete named */
|
||
|
|
/* variable list. It decodes the delete named variable list */
|
||
|
|
/* response (confirm) & encodes the delete named variable list */
|
||
|
|
/* request. */
|
||
|
|
/* */
|
||
|
|
/* GLOBAL FUNCTIONS DEFINED IN THIS MODULE : */
|
||
|
|
/* */
|
||
|
|
/* MODIFICATION LOG : */
|
||
|
|
/* Date Who Rev Comments */
|
||
|
|
/* -------- --- ------ ------------------------------------------- */
|
||
|
|
/* 03/11/04 GLB 06 Remove "thisFileName" */
|
||
|
|
/* 12/20/01 JRB 05 Converted to use ASN1R (re-entrant ASN1) */
|
||
|
|
/* 09/13/99 MDE 04 Added SD_CONST modifiers */
|
||
|
|
/* 03/23/99 MDE 03 Changes to decode buffer allocation scheme */
|
||
|
|
/* 06/15/98 MDE 02 Changes to allow compile under C++ */
|
||
|
|
/* 07/03/97 MDE 01 Op-specific info buffer handling changes */
|
||
|
|
/* 04/02/97 DTL 7.00 MMSEASE 7.0 release. See MODL70.DOC for */
|
||
|
|
/* history. */
|
||
|
|
/************************************************************************/
|
||
|
|
|
||
|
|
#include "glbtypes.h"
|
||
|
|
#include "sysincs.h"
|
||
|
|
|
||
|
|
#include "mmsdefs.h"
|
||
|
|
#include "mms_pvar.h"
|
||
|
|
#include "asn1defs.h"
|
||
|
|
|
||
|
|
/************************************************************************/
|
||
|
|
/* variables global to the DECODE portion : */
|
||
|
|
|
||
|
|
static DELVLIST_RESP_INFO *rsp_info;
|
||
|
|
|
||
|
|
static ST_VOID delvlist_num_matched (ASN1_DEC_CTXT *aCtx);
|
||
|
|
static ST_VOID delvlist_num_deleted (ASN1_DEC_CTXT *aCtx);
|
||
|
|
|
||
|
|
/************************************************************************/
|
||
|
|
/* variables global to the ENCODE portion : NONE */
|
||
|
|
|
||
|
|
|
||
|
|
/************************************************************************/
|
||
|
|
/************************************************************************/
|
||
|
|
/* mms_del_vlist_rsp */
|
||
|
|
/* This function is called from mmsdec when the opcode for this */
|
||
|
|
/* operation is decoded. Setup state machine function pointers, etc. */
|
||
|
|
/************************************************************************/
|
||
|
|
|
||
|
|
ST_VOID mms_del_vlist_rsp (ASN1_DEC_CTXT *aCtx)
|
||
|
|
{
|
||
|
|
MLOG_CDEC0 ("Delete Named Variable List Response");
|
||
|
|
|
||
|
|
/* get storage for request information */
|
||
|
|
rsp_info = (DELVLIST_RESP_INFO *) _m_get_dec_buf (aCtx, sizeof (DELVLIST_RESP_INFO));
|
||
|
|
ASN1R_TAG_ADD (aCtx, CTX, 0, delvlist_num_matched);
|
||
|
|
}
|
||
|
|
|
||
|
|
/************************************************************************/
|
||
|
|
/* delvlist_num_matched */
|
||
|
|
/* Decoding delete named variable list response: number matched was */
|
||
|
|
/* encountered. */
|
||
|
|
/************************************************************************/
|
||
|
|
|
||
|
|
static ST_VOID delvlist_num_matched (ASN1_DEC_CTXT *aCtx)
|
||
|
|
{
|
||
|
|
MLOG_CDEC0 ("delvlist_num_matched");
|
||
|
|
|
||
|
|
if (asn1r_get_u32 (aCtx, &rsp_info->num_matched))
|
||
|
|
asn1r_set_dec_err (aCtx, RESP_BAD_VALUE);
|
||
|
|
else
|
||
|
|
ASN1R_TAG_ADD (aCtx, CTX, 1, delvlist_num_deleted);
|
||
|
|
}
|
||
|
|
|
||
|
|
/************************************************************************/
|
||
|
|
/* delvlist_num_deleted */
|
||
|
|
/* Decoding delete named variable list response: number deleted was */
|
||
|
|
/* encountered. */
|
||
|
|
/************************************************************************/
|
||
|
|
|
||
|
|
static ST_VOID delvlist_num_deleted (ASN1_DEC_CTXT *aCtx)
|
||
|
|
{
|
||
|
|
MLOG_CDEC0 ("delvlist_num_deleted");
|
||
|
|
|
||
|
|
if (asn1r_get_u32 (aCtx, &rsp_info->num_deleted))
|
||
|
|
asn1r_set_dec_err (aCtx, RESP_BAD_VALUE);
|
||
|
|
else
|
||
|
|
{
|
||
|
|
_ms_set_cs_check (aCtx); /* check for Companion Standard info */
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
#ifndef MMS_LITE
|
||
|
|
/************************************************************************/
|
||
|
|
/************************************************************************/
|
||
|
|
/* mp_delvlist */
|
||
|
|
/* Create and send a delete named variable list request. */
|
||
|
|
/************************************************************************/
|
||
|
|
|
||
|
|
MMSREQ_PEND *mp_delvlist (ST_INT chan, DELVLIST_REQ_INFO *info_ptr)
|
||
|
|
{
|
||
|
|
return (_mms_req_send (MMSOP_DEL_VLIST,
|
||
|
|
M_CAST_MK_FUN (_ms_mk_delvlist_req),
|
||
|
|
chan,(ST_CHAR *)info_ptr));
|
||
|
|
}
|
||
|
|
|
||
|
|
#else
|
||
|
|
/************************************************************************/
|
||
|
|
/************************************************************************/
|
||
|
|
/* mpl_delvlist */
|
||
|
|
/* Create a delete named variable list request. */
|
||
|
|
/************************************************************************/
|
||
|
|
|
||
|
|
ST_RET mpl_delvlist (DELVLIST_REQ_INFO *info_ptr)
|
||
|
|
{
|
||
|
|
return (_mms_req_fin (MMSOP_DEL_VLIST,
|
||
|
|
M_CAST_MK_FUN (_ms_mk_delvlist_req),
|
||
|
|
(ST_CHAR *)info_ptr));
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
|
||
|
|
/************************************************************************/
|
||
|
|
/************************************************************************/
|
||
|
|
/* _ms_mk_delvlist_req */
|
||
|
|
/* construct a delete named variable list request */
|
||
|
|
/************************************************************************/
|
||
|
|
|
||
|
|
ST_VOID _ms_mk_delvlist_req (ASN1_ENC_CTXT *aCtx, DELVLIST_REQ_INFO *info_ptr)
|
||
|
|
{
|
||
|
|
ST_INT i;
|
||
|
|
OBJECT_NAME *obj_ptr;
|
||
|
|
|
||
|
|
if (info_ptr->dname_pres)
|
||
|
|
{
|
||
|
|
asn1r_wr_vstr (aCtx, info_ptr->dname); /* write the domain name */
|
||
|
|
asn1r_fin_prim (aCtx, 2,CTX); /* context tag 2 */
|
||
|
|
}
|
||
|
|
|
||
|
|
if (info_ptr->vnames_pres)
|
||
|
|
{
|
||
|
|
asn1r_strt_constr (aCtx); /* start context tag 1 cstr */
|
||
|
|
obj_ptr = (OBJECT_NAME *) (info_ptr + 1);
|
||
|
|
obj_ptr +=info_ptr->num_of_vnames-1;/* point to last variable name */
|
||
|
|
for (i = 0; i < info_ptr->num_of_vnames; i++)
|
||
|
|
{
|
||
|
|
_ms_wr_mms_objname (aCtx, obj_ptr);
|
||
|
|
obj_ptr--;
|
||
|
|
}
|
||
|
|
asn1r_fin_constr (aCtx, 1,CTX,DEF); /* finish context tag 1 cstr */
|
||
|
|
}
|
||
|
|
|
||
|
|
if (info_ptr->scope != 0) /* default is 0-specific */
|
||
|
|
{ /* not the default, so */
|
||
|
|
asn1r_wr_i16 (aCtx, info_ptr->scope); /* write the scope of delete */
|
||
|
|
asn1r_fin_prim (aCtx, 0,CTX); /* context tag 0 */
|
||
|
|
}
|
||
|
|
|
||
|
|
/* write the context specific explicit tag for this opcode. */
|
||
|
|
asn1r_fin_constr (aCtx, MMSOP_DEL_VLIST,CTX,DEF); /* tag = opcode, ctx constr */
|
||
|
|
}
|