configure: create some convenience AC_SUBST's for the global includes
[oweals/cde.git] / cde / lib / tt / mini_isam / isaddprimary.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 /*%%  (c) Copyright 1993, 1994 Hewlett-Packard Company                   */
24 /*%%  (c) Copyright 1993, 1994 International Business Machines Corp.     */
25 /*%%  (c) Copyright 1993, 1994 Sun Microsystems, Inc.                    */
26 /*%%  (c) Copyright 1993, 1994 Novell, Inc.                              */
27 /*%%  $XConsortium: isaddprimary.c /main/3 1995/10/23 11:33:35 rswiston $                                                        */
28 /* @(#)isaddprimary.c   1.7 93/09/07
29  * Copyright (c) 1988 by Sun Microsystems, Inc.
30  */
31
32 /*
33  * isaddprimary.c
34  *
35  * Description:
36  *      Add secondary index to ISAM file
37  */
38
39
40 #include "isam_impl.h"
41 #include <sys/time.h>
42
43 Static int _am_addprimary();
44
45
46 /*
47  * err = isaddprimary(isfd, keydesc)
48  *
49  * Isaddprimary() is used to add primary index to ISAM file. 
50  *
51  * This call is not part of the X/OPEN sprec.
52  *
53  * Errors:
54  *      EBADKEY error in keydesc        
55  *      EDUPL   there are duplicate keys and the keydesc does not allow
56  *              duplicate keys
57  *      EKEXISTS key with the same key descriptor already exists
58  *      EKEXISTS the ISAM file already has a primary index.
59  *      ENOTEXCL ISAM file is not open in exclusive mode
60  *      ENOTOPEN the ISAM file is not open in ISINOUT mode.
61  *      EACCES  Cannot create index file because of UNIX error.
62  */
63
64 int 
65 isaddprimary(int isfd, struct keydesc *keydesc)
66 {
67     Fab *fab;
68     int                 ret;
69
70     /*
71      * Get File Access Block.
72      */
73     if ((fab = _isfd_find(isfd)) == NULL) {
74         _setiserrno2(ENOTOPEN, '9', '0');
75         return (ISERROR);
76     }
77
78     /*
79      * Check that the open mode was ISOUTPUT
80      */
81     if (fab->openmode != OM_INOUT) {
82         _setiserrno2(ENOTOPEN, '9', '0');
83         return (ISERROR);
84     }
85
86     ret = _am_addprimary(fab, keydesc);
87     _seterr_errcode(&fab->errcode);
88
89     return (ret);                            /* Successful write */
90 }
91
92 Static int _am_addprimary(Fab *fab, struct keydesc *keydesc)
93 {
94     return (_amaddprimary(&fab->isfhandle, keydesc, &fab->errcode));
95 }