Files
microser/mmslib/mmsle/rs_fdele.c
2026-06-15 15:48:16 +08:00

135 lines
4.9 KiB
C

/************************************************************************/
/* SISCO SOFTWARE MODULE HEADER *****************************************/
/************************************************************************/
/* (c) Copyright Systems Integration Specialists Company, Inc., */
/* 1986 - 2001, All Rights Reserved. */
/* */
/* PROPRIETARY AND CONFIDENTIAL */
/* */
/* MODULE NAME : rs_fdelete.c */
/* PRODUCT(S) : MMSEASE, MMSEASE-LITE */
/* */
/* MODULE DESCRIPTION : */
/* This module contains the responder portion of the file delete. */
/* It decodes the file delete request (indication) and encodes */
/* the file delete response. */
/* */
/* GLOBAL FUNCTIONS DEFINED IN THIS MODULE : */
/* */
/* MODIFICATION LOG : */
/* Date Who Rev Comments */
/* -------- --- ------ ------------------------------------------- */
/* 03/11/04 GLB 05 Remove "thisFileName" */
/* 12/20/01 JRB 04 Converted to use ASN1R (re-entrant ASN1) */
/* 09/13/99 MDE 03 Added SD_CONST modifiers */
/* 03/23/99 MDE 02 Changes to decode buffer allocation scheme */
/* 06/09/97 MDE 01 Changed op specific buffer allocation */
/* 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_pfil.h"
#include "asn1defs.h"
/************************************************************************/
/* variables global to the DECODE portion : */
static FDELETE_REQ_INFO *info;
static ST_INT max_fnames;
/************************************************************************/
/* variables global to the ENCODE portion : NONE */
static ST_VOID fdelete_fname_cstr_done (ASN1_DEC_CTXT *aCtx);
/************************************************************************/
/************************************************************************/
/* mms_file_delete_req */
/* This function is called from mmsdec when the opcode for this */
/* operation is decoded. Setup state machine function pointers, etc. */
/* file delete request: decode the file name. */
/************************************************************************/
ST_VOID mms_file_delete_req (ASN1_DEC_CTXT *aCtx)
{
ST_INT req_size;
MLOG_CDEC0 ("File Delete Request");
if (aCtx->asn1r_elmnt_len > MAX_FILE_NAME)
{ /* delete file name is too ST_INT32 */
asn1r_set_dec_err (aCtx, REQ_BAD_VALUE);
return;
}
#if defined(FIXED_DECBUF)
max_fnames = m_sv_max_file_names;
req_size = mmsl_dec_info_size;
#else
max_fnames = (_mmsdec_msglen/2);
if (m_sv_max_file_names && (max_fnames > m_sv_max_file_names))
max_fnames = m_sv_max_file_names;
req_size = sizeof (FDELETE_REQ_INFO) + (max_fnames * sizeof (FILE_NAME));
#endif
/* get storage for request information */
info = (FDELETE_REQ_INFO *) _m_get_dec_buf (aCtx, req_size);
aCtx->asn1r_c_done_fun [aCtx->asn1r_msg_level] = fdelete_fname_cstr_done;
_ms_get_mms_fname (aCtx, (FILE_NAME *)(info + 1), max_fnames, &info->num_of_fname);
}
/************************************************************************/
/* fdelete_fname_cstr_done */
/* file delete request is being decoded: file name list constructor */
/* done was encountered. */
/************************************************************************/
static ST_VOID fdelete_fname_cstr_done (ASN1_DEC_CTXT *aCtx)
{
ST_INT req_size;
/* find actual size for request info */
req_size = sizeof (FDELETE_REQ_INFO)
+ (sizeof (FILE_NAME) * info->num_of_fname);
/* give back unused storage */
_mms_dec_info = (*m_realloc_os_fun) (_mms_dec_info,req_size);
info = (FDELETE_REQ_INFO *) _mms_dec_info;
_ms_set_cs_check (aCtx); /* check for Companion Standard info */
}
#ifndef MMS_LITE
/************************************************************************/
/************************************************************************/
/* mp_fdelete_resp */
/* This function is called from either the application or the virtual */
/* machine to ENCODE the file delete response. */
/************************************************************************/
ST_RET mp_fdelete_resp (MMSREQ_IND *indptr)
{
return (_mms_send_null_resp (indptr,MMSOP_FILE_DELETE));
}
#else
/************************************************************************/
/************************************************************************/
/* mpl_fdelete_resp */
/* This function is called from either the application or the virtual */
/* machine to ENCODE the file delete response. */
/************************************************************************/
ST_RET mpl_fdelete_resp (ST_UINT32 invoke_id)
{
return (_mms_fin_null_resp (invoke_id,MMSOP_FILE_DELETE));
}
#endif