]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/language/c/libc/stdio/v2_0/src/common/fseek.cxx
unified MX27, MX25, MX37 trees
[karo-tx-redboot.git] / packages / language / c / libc / stdio / v2_0 / src / common / fseek.cxx
1 //===========================================================================
2 //
3 //      fseek.cxx
4 //
5 //      Implementation of C library file positioning functions as per ANSI 7.9.9
6 //
7 //===========================================================================
8 //####ECOSGPLCOPYRIGHTBEGIN####
9 // -------------------------------------------
10 // This file is part of eCos, the Embedded Configurable Operating System.
11 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
12 //
13 // eCos is free software; you can redistribute it and/or modify it under
14 // the terms of the GNU General Public License as published by the Free
15 // Software Foundation; either version 2 or (at your option) any later version.
16 //
17 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20 // for more details.
21 //
22 // You should have received a copy of the GNU General Public License along
23 // with eCos; if not, write to the Free Software Foundation, Inc.,
24 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 //
26 // As a special exception, if other files instantiate templates or use macros
27 // or inline functions from this file, or you compile this file and link it
28 // with other works to produce a work based on this file, this file does not
29 // by itself cause the resulting work to be covered by the GNU General Public
30 // License. However the source code for this file must still be made available
31 // in accordance with section (3) of the GNU General Public License.
32 //
33 // This exception does not invalidate any other reasons why a work based on
34 // this file might be covered by the GNU General Public License.
35 //
36 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37 // at http://sources.redhat.com/ecos/ecos-license/
38 // -------------------------------------------
39 //####ECOSGPLCOPYRIGHTEND####
40 //===========================================================================
41 //#####DESCRIPTIONBEGIN####
42 //
43 // Author(s):     nickg
44 // Contributors:  
45 // Date:          2000-07-12
46 // Purpose:       Implements ISO C file positioning functions
47 // Description: 
48 // Usage:       
49 //
50 //####DESCRIPTIONEND####
51 //
52 //===========================================================================
53
54 // CONFIGURATION
55
56 #include <pkgconf/libc_stdio.h>   // Configuration header
57
58 #include <cyg/infra/cyg_type.h>     // Common project-wide type definitions
59 #include <cyg/infra/cyg_ass.h>      // Assertion support
60 #include <cyg/infra/cyg_trac.h>     // Tracing support
61 #include <stddef.h>                 // NULL and size_t from compiler
62 #include <errno.h>                  // Error codes
63 #include <stdio.h>                  // header for fseek() etc.
64 #include <cyg/libc/stdio/stdiofiles.hxx> // C library files
65 #include <cyg/libc/stdio/stream.hxx>     // C library streams
66
67 //========================================================================
68
69 // ISO C 7.9.9 File positioning functions
70
71 externC int
72 fgetpos( FILE * stream , fpos_t *pos  ) __THROW
73 {
74     Cyg_StdioStream *real_stream = (Cyg_StdioStream *)stream;
75     Cyg_ErrNo err;
76     int ret = 0;
77     
78     CYG_REPORT_FUNCNAME( "fgetpos" );
79
80     err = real_stream->get_position( pos );
81     
82     if( err != ENOERR )
83     {
84         errno = err;
85         ret = -1;
86     }
87     
88     CYG_REPORT_RETVAL( ret );
89     return ret;
90 }
91
92 externC int
93 fseek( FILE * stream , long int offset , int whence  ) __THROW
94 {
95     Cyg_StdioStream *real_stream = (Cyg_StdioStream *)stream;
96     Cyg_ErrNo err;
97     int ret = 0;
98     
99     CYG_REPORT_FUNCNAME( "fgetpos" );
100
101     err = real_stream->set_position( (fpos_t)offset, whence );
102     
103     if( err != ENOERR )
104     {
105         errno = err;
106         ret = -1;
107     }
108     
109     CYG_REPORT_RETVAL( ret );
110     return ret;
111 }
112
113 externC int
114 fsetpos( FILE * stream , const fpos_t * pos ) __THROW
115 {
116     Cyg_StdioStream *real_stream = (Cyg_StdioStream *)stream;
117     Cyg_ErrNo err;
118     int ret = 0;
119     
120     CYG_REPORT_FUNCNAME( "fgetpos" );
121
122     err = real_stream->set_position( *pos, SEEK_SET );
123     
124     if( err != ENOERR )
125     {
126         errno = err;
127         ret = -1;
128     }
129     
130     CYG_REPORT_RETVAL( ret );
131     return ret;
132 }
133
134 externC long int
135 ftell( FILE * stream  ) __THROW
136 {
137     Cyg_StdioStream *real_stream = (Cyg_StdioStream *)stream;
138     Cyg_ErrNo err;
139     long int ret = 0;
140     fpos_t pos;
141     
142     CYG_REPORT_FUNCNAME( "ftell" );
143
144     err = real_stream->get_position( &pos );
145     
146     if( err != ENOERR )
147     {
148         errno = err;
149         ret = -1;
150     }
151     else ret = pos;
152     
153     CYG_REPORT_RETVAL( ret );
154     return ret;
155 }
156
157 externC void
158 rewind( FILE * stream  ) __THROW
159 {
160     Cyg_StdioStream *real_stream = (Cyg_StdioStream *)stream;    
161     (void)fseek( stream, 0L, SEEK_SET );
162
163     real_stream->set_error( ENOERR );
164 }
165
166
167 // EOF fseek.cxx