Merge branch 'cde-fixups-1' of ssh://git.code.sf.net/p/cdesktopenv/code into cde...
[oweals/cde.git] / cde / lib / DtSearch / raima / csmwrite.c
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these libraries and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: csmwrite.c /main/2 1996/05/09 03:59:37 drk $ */
24 /*
25  *   COMPONENT_NAME: austext
26  *
27  *   FUNCTIONS: d_csmwrite
28  *
29  *   ORIGINS: 157
30  *
31  *   OBJECT CODE ONLY SOURCE MATERIALS
32  */
33 /*-----------------------------------------------------------------------
34    csmwrite.c -- db_VISTA current set member field write module.
35
36    (C) Copyright 1987 by Raima Corporation.
37 -----------------------------------------------------------------------*/
38
39 /* ********************** EDIT HISTORY *******************************
40
41  SCR    DATE    INI                   DESCRIPTION
42 ----- --------- --- -----------------------------------------------------
43       04-Aug-88 RTK MULTI_TASK changes
44 */
45
46 #include <stdio.h>
47 #include "vista.h"
48 #include "dbtype.h"
49
50
51 /* Write data to a field in the current set member
52 */
53 int
54 d_csmwrite(set, field, data TASK_PARM DBN_PARM)
55 int set;    /* Set constant */
56 long field; /* Field constant */
57 CONST char FAR *data; /* Data area to contain field contents */
58 TASK_DECL
59 DBN_DECL    /* database number */
60 {
61 #ifndef  NO_TIMESTAMP
62    ULONG timestamp;
63 #endif
64    int stat, fld, rec;
65    char FAR *recp;
66    SET_ENTRY FAR *set_ptr;
67    RECORD_ENTRY FAR *rec_ptr;
68    FIELD_ENTRY FAR *fld_ptr;
69    DB_ADDR FAR *cm_ptr;
70
71    DB_ENTER(DB_ID TASK_ID LOCK_SET(SET_IO));
72
73    if ((nset_check(set, &set, (SET_ENTRY FAR * FAR *)&set_ptr) != S_OKAY) ||
74        (nfld_check(field, &rec, &fld, (RECORD_ENTRY FAR * FAR *)&rec_ptr, (FIELD_ENTRY FAR * FAR *)&fld_ptr) != S_OKAY))
75       RETURN( db_status );
76
77    /* compound keys cannot be updated directly */
78    if ( fld_ptr->fd_type == COMKEY )
79       RETURN( dberr(S_ISCOMKEY) );
80
81    /* field used in compound keys cannot be updated directly */
82    if ( fld_ptr->fd_flags & COMKEYED )
83       RETURN( dberr(S_COMKEY) );
84
85    /* Make sure we have a current member */
86    if ( ! *(cm_ptr = &curr_mem[set]) )
87       RETURN( dberr(S_NOCM) );
88
89    /* Read current member */
90    if ( dio_read( *cm_ptr, (char FAR * FAR *)&recp , PGHOLD) != S_OKAY )
91       RETURN( db_status );
92   
93    /* check out the field */
94    if ( (stat = r_chkfld(fld, fld_ptr, recp, data)) != S_OKAY ) {
95       dio_release(*cm_ptr);
96       RETURN( db_status = stat );
97    }
98    /* Put data into record */
99    if ( r_pfld(fld, fld_ptr, recp, data, cm_ptr) != S_OKAY )
100       RETURN( db_status );
101 #ifndef  NO_TIMESTAMP
102    /* check for timestamp */
103    if ( rec_ptr->rt_flags & TIMESTAMPED ) {
104       timestamp = dio_pzgetts(rec_ptr->rt_file);
105       bytecpy( recp + RECUPTIME, &timestamp, sizeof(LONG));
106    }
107 #endif
108    dio_write(*cm_ptr, NULL, PGFREE);
109 #ifndef  NO_TIMESTAMP
110    if (( db_status == S_OKAY ) && ( rec_ptr->rt_flags & TIMESTAMPED ))
111       cm_time[set] = timestamp;
112 #endif
113    RETURN( db_status );
114 }
115 /* vpp -nOS2 -dUNIX -nBSD -nVANILLA_BSD -nVMS -nMEMLOCK -nWINDOWS -nFAR_ALLOC -f/usr/users/master/config/nonwin csmwrite.c */