mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
115 lines
3.6 KiB
C
115 lines
3.6 KiB
C
/*
|
|
* CDE - Common Desktop Environment
|
|
*
|
|
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
|
|
*
|
|
* These libraries and programs are free software; you can
|
|
* redistribute them and/or modify them under the terms of the GNU
|
|
* Lesser General Public License as published by the Free Software
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* These libraries and programs are distributed in the hope that
|
|
* they will be useful, but WITHOUT ANY WARRANTY; without even the
|
|
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU Lesser General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with these libraries and programs; if not, write
|
|
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
|
|
* Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
/* $XConsortium: csmwrite.c /main/2 1996/05/09 03:59:37 drk $ */
|
|
/*
|
|
* COMPONENT_NAME: austext
|
|
*
|
|
* FUNCTIONS: d_csmwrite
|
|
*
|
|
* ORIGINS: 157
|
|
*
|
|
* OBJECT CODE ONLY SOURCE MATERIALS
|
|
*/
|
|
/*-----------------------------------------------------------------------
|
|
csmwrite.c -- db_VISTA current set member field write module.
|
|
|
|
(C) Copyright 1987 by Raima Corporation.
|
|
-----------------------------------------------------------------------*/
|
|
|
|
/* ********************** EDIT HISTORY *******************************
|
|
|
|
SCR DATE INI DESCRIPTION
|
|
----- --------- --- -----------------------------------------------------
|
|
04-Aug-88 RTK MULTI_TASK changes
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include "vista.h"
|
|
#include "dbtype.h"
|
|
|
|
|
|
/* Write data to a field in the current set member
|
|
*/
|
|
int
|
|
d_csmwrite(set, field, data TASK_PARM DBN_PARM)
|
|
int set; /* Set constant */
|
|
long field; /* Field constant */
|
|
CONST char *data; /* Data area to contain field contents */
|
|
TASK_DECL
|
|
DBN_DECL /* database number */
|
|
{
|
|
#ifndef NO_TIMESTAMP
|
|
ULONG timestamp;
|
|
#endif
|
|
int stat, fld, rec;
|
|
char *recp;
|
|
SET_ENTRY *set_ptr;
|
|
RECORD_ENTRY *rec_ptr;
|
|
FIELD_ENTRY *fld_ptr;
|
|
DB_ADDR *cm_ptr;
|
|
|
|
DB_ENTER(DB_ID TASK_ID LOCK_SET(SET_IO));
|
|
|
|
if ((nset_check(set, &set, (SET_ENTRY * *)&set_ptr) != S_OKAY) ||
|
|
(nfld_check(field, &rec, &fld, (RECORD_ENTRY * *)&rec_ptr, (FIELD_ENTRY * *)&fld_ptr) != S_OKAY))
|
|
RETURN( db_status );
|
|
|
|
/* compound keys cannot be updated directly */
|
|
if ( fld_ptr->fd_type == COMKEY )
|
|
RETURN( dberr(S_ISCOMKEY) );
|
|
|
|
/* field used in compound keys cannot be updated directly */
|
|
if ( fld_ptr->fd_flags & COMKEYED )
|
|
RETURN( dberr(S_COMKEY) );
|
|
|
|
/* Make sure we have a current member */
|
|
if ( ! *(cm_ptr = &curr_mem[set]) )
|
|
RETURN( dberr(S_NOCM) );
|
|
|
|
/* Read current member */
|
|
if ( dio_read( *cm_ptr, (char * *)&recp , PGHOLD) != S_OKAY )
|
|
RETURN( db_status );
|
|
|
|
/* check out the field */
|
|
if ( (stat = r_chkfld(fld, fld_ptr, recp, data)) != S_OKAY ) {
|
|
dio_release(*cm_ptr);
|
|
RETURN( db_status = stat );
|
|
}
|
|
/* Put data into record */
|
|
if ( r_pfld(fld, fld_ptr, recp, data, cm_ptr) != S_OKAY )
|
|
RETURN( db_status );
|
|
#ifndef NO_TIMESTAMP
|
|
/* check for timestamp */
|
|
if ( rec_ptr->rt_flags & TIMESTAMPED ) {
|
|
timestamp = dio_pzgetts(rec_ptr->rt_file);
|
|
bytecpy( recp + RECUPTIME, ×tamp, sizeof(LONG));
|
|
}
|
|
#endif
|
|
dio_write(*cm_ptr, NULL, PGFREE);
|
|
#ifndef NO_TIMESTAMP
|
|
if (( db_status == S_OKAY ) && ( rec_ptr->rt_flags & TIMESTAMPED ))
|
|
cm_time[set] = timestamp;
|
|
#endif
|
|
RETURN( db_status );
|
|
}
|
|
/* vpp -nOS2 -dUNIX -nBSD -nVANILLA_BSD -nVMS -nMEMLOCK -nWINDOWS -nFAR_ALLOC -f/usr/users/master/config/nonwin csmwrite.c */
|