Aegis  4.25.D505
/home/archives/aegis/branch.4/branch.25/delta28933.505/libaegis/input/base64.h
Go to the documentation of this file.
00001 //
00002 //      aegis - project change supervisor
00003 //      Copyright (C) 1999, 2001, 2002, 2005-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_BASE64_H
00021 #define LIBAEGIS_INPUT_BASE64_H
00022 
00023 #include <libaegis/input.h>
00024 
00025 class input_base64:
00026     public input_ty
00027 {
00028 public:
00032     virtual ~input_base64();
00033 
00040     input_base64(input &deeper);
00041 
00042     // See base class for documentation.
00043     nstring name();
00044 
00045     // See base class for documentation.
00046     off_t length();
00047 
00048     // See base class for documentation.
00049     void keepalive();
00050 
00051     // See base class for documentation.
00052     ssize_t read_inner(void *data, size_t nbytes);
00053 
00054     // See base class for documentation.
00055     off_t ftell_inner();
00056 
00057     // See base class for documentation.
00058     bool is_remote() const;
00059 
00060     static bool recognise(input &ip);
00061 
00062 private:
00067     input deeper;
00068 
00069     off_t pos;
00070     int residual_bits;
00071     int residual_value;
00072     bool eof;
00073 
00077     input_base64();
00078 
00082     input_base64(const input_base64 &arg);
00083 
00087     input_base64 &operator=(const input_base64 &arg);
00088 };
00089 
00090 
00091 inline DEPRECATED bool
00092 input_base64_recognise(input &ip)
00093 {
00094     return input_base64::recognise(ip);
00095 }
00096 
00097 #endif // LIBAEGIS_INPUT_BASE64_H
00098 // vim: set ts=8 sw=4 et :