00001 // 00002 // aegis - project change supervisor 00003 // Copyright (C) 1999, 2002, 2005, 2006, 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_OUTPUT_CPIO_CHILD2_H 00021 #define LIBAEGIS_OUTPUT_CPIO_CHILD2_H 00022 00023 #include <common/ac/time.h> 00024 00025 #include <libaegis/output/memory.h> 00026 00027 class output_memory_ty; // forward 00028 00034 class output_cpio_child2: 00035 public output 00036 { 00037 public: 00041 virtual ~output_cpio_child2(); 00042 00043 private: 00054 output_cpio_child2(const output::pointer &deeper, const nstring &name, 00055 time_t mtime); 00056 00057 public: 00068 static pointer create(const output::pointer &deeper, const nstring &name, 00069 time_t mtime); 00070 00071 protected: 00072 // See base class for documentation. 00073 nstring filename() const ; 00074 00075 // See base class for documentation. 00076 const char *type_name() const; 00077 00078 // See base class for documentation. 00079 long ftell_inner() const; 00080 00081 // See base class for documentation. 00082 void write_inner(const void *data, size_t length); 00083 00084 // See base class for documentation. 00085 void end_of_line_inner(); 00086 00087 // See base class for documentation. 00088 void flush_inner(); 00089 00090 private: 00095 output::pointer deeper; 00096 00101 nstring name; 00102 00107 output_memory::mpointer buffer; 00108 00113 time_t mtime; 00114 00118 output_cpio_child2(); 00119 00123 output_cpio_child2(const output_cpio_child2 &); 00124 00128 output_cpio_child2 &operator=(const output_cpio_child2 &); 00129 }; 00130 00131 #endif // LIBAEGIS_OUTPUT_CPIO_CHILD2_H