tt/mini_isam: remove all ancient sccsid blocks
[oweals/cde.git] / cde / lib / tt / mini_isam / isapplmw.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: isapplmw.c /main/3 1995/10/23 11:35:35 rswiston $                                                    */
28 /*
29  * Copyright (c) 1988 by Sun Microsystems, Inc.
30  */
31
32 /*
33  * isapplmw.c
34  *
35  * Description:
36  *      Write Application magic string
37  */
38
39
40 #include "isam_impl.h"
41 #include <sys/file.h>
42 #include <sys/time.h>
43
44 /*
45  * string = isapplmw(isfd)
46  *
47  * Isapplmw() writes an application specific 'magic string' into ISAM
48  * file. The 'file' program (using /etc/magic) may be used to report
49  * this magic string.
50  *
51  */
52
53 int 
54 _isapplmw(int isfd, char *magicstring)
55 {
56     Fab *fab;
57     int                 ret;
58     Fcb                 *fcb;
59     char                cntl_page[CP_NKEYS_OFF];
60
61     /*
62      * Get File Access Block.
63      */
64     if ((fab = _isfd_find(isfd)) == NULL) {
65         _setiserrno2(ENOTOPEN, '9', '0');
66         return (ISERROR);
67     }
68
69     /*
70      * Check that the open mode was ISOUTPUT, or ISINOUT.
71      */
72     if (fab->openmode != OM_OUTPUT && fab->openmode != OM_INOUT) {
73         _setiserrno2(ENOTOPEN, '9', '0');
74         return (ISERROR);
75     }
76
77     /*
78      * Check the length of the magic string
79      */
80     if ((int)strlen(magicstring) > CP_APPLMAGIC_LEN) {
81         _setiserrno2(EBADARG, '9', '0');
82         return (ISERROR);
83     }
84
85     _isam_entryhook();
86
87     /*
88      * Get FCB corresponding to the isfhandle handle.
89      */
90     if ((fcb = _openfcb(&fab->isfhandle, &fab->errcode)) == NULL) {
91         _isam_exithook();
92         return (ISERROR);
93     }
94
95     /* Write the new data */
96     
97     _isseekpg(fcb->datfd, ISCNTLPGOFF);
98     (void)read(fcb->datfd, cntl_page, sizeof(cntl_page));
99     strncpy(cntl_page + CP_APPLMAGIC_OFF, magicstring, CP_APPLMAGIC_LEN);
100     _isseekpg(fcb->datfd, ISCNTLPGOFF);
101     (void)write(fcb->datfd, cntl_page, sizeof(cntl_page));
102
103     _amseterrcode(&fab->errcode, ISOK);
104     _isam_exithook();
105     ret = ISOK;
106
107     _seterr_errcode(&fab->errcode);
108
109     return (ret);                            /* Successful write */
110 }