Aegis  4.25.D505
/home/archives/aegis/branch.4/branch.25/delta28933.505/libaegis/input/catenate.h
Go to the documentation of this file.
00001 //
00002 //      aegis - project change supervisor
00003 //      Copyright (C) 2002, 2005, 2006, 2008, 2012 Peter Miller
00004 //
00005 //      This program is free software; you can redistribute it and/or modify
00006 //      it under the terms of the GNU General Public License as published by
00007 //      the Free Software Foundation; either version 3 of the License, or
00008 //      (at your option) any later version.
00009 //
00010 //      This program is distributed in the hope that it will be useful,
00011 //      but WITHOUT ANY WARRANTY; without even the implied warranty of
00012 //      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013 //      GNU General Public License for more details.
00014 //
00015 //      You should have received a copy of the GNU General Public License
00016 //      along with this program. If not, see
00017 //      <http://www.gnu.org/licenses/>.
00018 //
00019 
00020 #ifndef LIBAEGIS_INPUT_CATENATE_H
00021 #define LIBAEGIS_INPUT_CATENATE_H
00022 
00023 #include <libaegis/input.h>
00024 
00025 class input_catenate:
00026     public input_ty
00027 {
00028 public:
00032     virtual ~input_catenate();
00033 
00037     input_catenate(input deeper[], size_t ndeeper, bool close_on_close);
00038 
00039     // See base class for documentation.
00040     nstring name();
00041 
00042     // See base class for documentation.
00043     off_t length();
00044 
00045     // See base class for documentation.
00046     void keepalive();
00047 
00048     // See base class for documentation.
00049     ssize_t read_inner(void *data, size_t nbytes);
00050 
00051     // See base class for documentation.
00052     off_t ftell_inner();
00053 
00054     // See base class for documentation.
00055     bool is_remote() const;
00056 
00057 private:
00058     input *deeper;
00059     size_t ndeeper;
00060     bool delete_on_close;
00061     size_t selector;
00062     off_t pos;
00063 
00067     input_catenate();
00068 
00072     input_catenate(const input_catenate &arg);
00073 
00077     input_catenate &operator=(const input_catenate &arg);
00078 };
00079 
00080 #endif // LIBAEGIS_INPUT_CATENATE_H
00081 // vim: set ts=8 sw=4 et :