00001 // 00002 // aegis - project change supervisor 00003 // Copyright (C) 2001, 2002, 2005-2008 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_UUDECODE_H 00021 #define LIBAEGIS_INPUT_UUDECODE_H 00022 00023 #include <common/ac/limits.h> 00024 00025 #include <libaegis/input.h> 00026 00031 class input_uudecode: 00032 public input_ty 00033 { 00034 public: 00038 virtual ~input_uudecode(); 00039 00046 input_uudecode(input &deeper); 00047 00048 // See base class for documentation. 00049 nstring name(); 00050 00051 // See base class for documentation. 00052 long length(); 00053 00054 // See base class for documentation. 00055 void keepalive(); 00056 00057 // See base class for documentation. 00058 long read_inner(void *data, size_t nbytes); 00059 00060 // See base class for documentation. 00061 long ftell_inner(); 00062 00063 // See base class for documentation. 00064 bool is_remote() const; 00065 00071 static bool candidate(input &deeper); 00072 00073 private: 00078 input deeper; 00079 00080 long pos; 00081 int state; 00082 char etab[64]; 00083 unsigned char itab[UCHAR_MAX + 1]; 00084 int checksum; 00085 int padding; 00086 00090 input_uudecode(); 00091 00095 input_uudecode(const input_uudecode &arg); 00096 00100 input_uudecode &operator=(const input_uudecode &arg); 00101 }; 00102 00103 inline DEPRECATED bool 00104 input_uudecode_recognise(input ip) 00105 { 00106 return input_uudecode::candidate(ip); 00107 } 00108 00109 #endif // LIBAEGIS_INPUT_UUDECODE_H