Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / lib / DtSearch / raima / findco.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 librararies 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: findco.c /main/2 1996/05/09 04:06:00 drk $ */
24 /*
25  *   COMPONENT_NAME: austext
26  *
27  *   FUNCTIONS: d_findco
28  *
29  *   ORIGINS: 157
30  *
31  *   OBJECT CODE ONLY SOURCE MATERIALS
32  */
33 /*-----------------------------------------------------------------------
34    findco.c -- db_VISTA find owner of current record module
35
36    (C) Copyright 1987 by Raima Corp.
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 /* Find owner of current record
51 */
52 d_findco(nset TASK_PARM DBN_PARM)
53 int nset;
54 TASK_DECL
55 DBN_DECL
56 {
57    int set;
58    char mem[MEMPSIZE];
59    DB_ADDR own;
60    SET_ENTRY FAR *set_ptr;
61
62    DB_ENTER(DB_ID TASK_ID LOCK_SET(SET_IO));
63
64    if (nset_check(nset, &set, (SET_ENTRY FAR * FAR *)&set_ptr) != S_OKAY)
65       RETURN( db_status );
66
67    /* Make sure we have a current record */
68    if ( ! curr_rec )
69       RETURN( dberr(S_NOCR) );
70
71    /* Read current record */
72    if ( dio_read(curr_rec, (char FAR * FAR *)&crloc, NOPGHOLD) != S_OKAY )
73       RETURN( db_status );
74    
75    /* Get the member ptr for this set */
76    if ( r_gmem(set, crloc, mem) != S_OKAY )
77       RETURN( db_status );
78
79    /* Extract the owner ptr from the member ptr */
80    bytecpy(&own, mem+MP_OWNER, DB_ADDR_SIZE);
81    if ( ! own )  /* Record not connected to set */
82       RETURN( dberr( S_NOTCON ) );
83
84    /* set the new current owner and member */
85    curr_own[set] = own;
86    curr_mem[set] = curr_rec;
87    curr_rec      = own;
88 #ifndef  NO_TIMESTAMP
89    /* set any timestamps */
90    if ( db_tsrecs ) {
91       d_utscr( &cr_time TASK_PARM );
92       d_utscm(nset, &cm_time[set] TASK_PARM DBN_PARM);
93       co_time[set] = cr_time;
94    }
95    if ( db_tssets )
96       d_utscs(nset, &cs_time[set] TASK_PARM DBN_PARM);
97 #endif
98    RETURN( db_status = S_OKAY );
99 }
100 /* vpp -nOS2 -dUNIX -nBSD -nVANILLA_BSD -nVMS -nMEMLOCK -nWINDOWS -nFAR_ALLOC -f/usr/users/master/config/nonwin findco.c */