⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 filebuf.cpp

📁 vxworks源码源码解读是学习vxworks的最佳途径
💻 CPP
字号:
/* This has been copied from the gnu source tree *//* Make all changes there, not here! */#ifdef __cplusplusextern "C" {#endif#ifndef _N_char __filebuf_o = 0;#elsechar _N_ = 0;#endif#ifdef __cplusplus}#endif#include "vxWorks.h"/* This is part of libio/iostream, providing -*- C++ -*- input/output.Copyright (C) 1993, 1995 Free Software FoundationThis file is part of the GNU IO Library.  This library is freesoftware; you can redistribute it and/or modify it under theterms of the GNU General Public License as published by theFree Software Foundation; either version 2, or (at your option)any later version.This library is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this library; see the file COPYING.  If not, write to the FreeSoftware Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.As a special exception, if you link this library with filescompiled with a GNU compiler to produce an executable, this does not causethe resulting executable to be covered by the GNU General Public License.This exception does not however invalidate any other reasons whythe executable file might be covered by the GNU General Public License.Written by Per Bothner (bothner@cygnus.com). */#include "iostreamP.h"#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <errno.h>#include "builtinbuf.h"/* We replace new by new (nothrow) when exceptions aren't turned on */#ifndef _IO_THROW#include <new>#endifvoid filebuf::init(){  _IO_file_init(this);}filebuf::filebuf(){  _IO_file_init(this);}#if !_IO_UNIFIED_JUMPTABLES/* This is like "new filebuf()", but it uses the _IO_file_jump jumptable,   for eficiency. */filebuf* filebuf::__new(){  filebuf *fb = new filebuf;  _IO_JUMPS(fb) = &_IO_file_jumps;  fb->_vtable() = builtinbuf_vtable;  return fb;}#endiffilebuf::filebuf(int fd){  _IO_file_init(this);  _IO_file_attach(this, fd);}filebuf::filebuf(int fd, char* p, int len){  _IO_file_init(this);  _IO_file_attach(this, fd);  setbuf(p, len);}filebuf::~filebuf(){  if (_IO_file_is_open(this))    {      _IO_do_flush (this);      if (!(xflags() & _IO_DELETE_DONT_CLOSE))	_IO_SYSCLOSE (this);    }}filebuf* filebuf::open(const char *filename, ios::openmode mode, int prot){  if (_IO_file_is_open (this))    return NULL;  int posix_mode;  int read_write;  if (mode & ios::app)    mode |= ios::out;  if ((mode & (ios::in|ios::out)) == (ios::in|ios::out)) {    posix_mode = O_RDWR;    read_write = 0;  }  else if (mode & ios::out)    posix_mode = O_WRONLY, read_write = _IO_NO_READS;  else if (mode & (int)ios::in)    posix_mode = O_RDONLY, read_write = _IO_NO_WRITES;  else    posix_mode = 0, read_write = _IO_NO_READS+_IO_NO_WRITES;  if (mode & ios::binary)    {      mode &= ~ios::binary;#ifdef O_BINARY      /* This is a (mis-)feature of DOS/Windows C libraries. */      posix_mode |= O_BINARY;#endif    }  if ((mode & (int)ios::trunc) || mode == (int)ios::out)    posix_mode |= O_TRUNC;  if (mode & ios::app)    posix_mode |= O_APPEND, read_write |= _IO_IS_APPENDING;  if (!(mode & (int)ios::nocreate) && mode != ios::in)    posix_mode |= O_CREAT;  if (mode & (int)ios::noreplace)    posix_mode |= O_EXCL;  int fd = ::open(filename, posix_mode, prot);  if (fd < 0)    return NULL;  _fileno = fd;  xsetflags(read_write, _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);  if (mode & (ios::ate|ios::app)) {    if (pubseekoff(0, ios::end) == EOF)      return NULL;  }  _IO_link_in(this);  return this;}filebuf* filebuf::open(const char *filename, const char *mode){  return (filebuf*)_IO_file_fopen(this, filename, mode);}filebuf* filebuf::attach(int fd){  return (filebuf*)_IO_file_attach(this, fd);}streambuf* filebuf::setbuf(char* p, int len){  return (streambuf*)_IO_file_setbuf (this, p, len);}int filebuf::doallocate() { return _IO_file_doallocate(this); }int filebuf::overflow(int c){  return _IO_file_overflow(this, c);}int filebuf::underflow(){  return _IO_file_underflow(this);}int filebuf::sync(){  return _IO_file_sync(this);}streampos filebuf::seekoff(streamoff offset, _seek_dir dir, int mode){  return _IO_file_seekoff (this, offset, dir, mode);}filebuf* filebuf::close(){  return (_IO_file_close_it(this) ? (filebuf*)NULL : this);}streamsize filebuf::sys_read(char* buf, streamsize size){  return _IO_file_read(this, buf, size);}streampos filebuf::sys_seek(streamoff offset, _seek_dir dir){  return _IO_file_seek(this, offset, dir);}streamsize filebuf::sys_write(const char *buf, streamsize n){  return _IO_file_write (this, buf, n);}int filebuf::sys_stat(void* st){  return _IO_file_stat (this, st);}int filebuf::sys_close(){  return _IO_file_close (this);}streamsize filebuf::xsputn(const char *s, streamsize n){  return _IO_file_xsputn(this, s, n);}streamsize filebuf::xsgetn(char *s, streamsize n){    // FIXME: OPTIMIZE THIS (specifically, when unbuffered()).    return streambuf::xsgetn(s, n);}// Non-ANSI AT&T-ism:  Default open protection.const int filebuf::openprot = 0644;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -