Utils/Console: Implement command node return value support
[senf.git] / Utils / Logger / FileTarget.cc
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief FileTarget non-inline non-template implementation */
25
26 #include "FileTarget.hh"
27 //#include "FileTarget.ih"
28
29 // Custom includes
30 #include "../Console/Console.hh"
31
32 //#include "FileTarget.mpp"
33 #define prefix_
34 ///////////////////////////////cc.p////////////////////////////////////////
35
36 prefix_ senf::log::FileTarget::FileTarget(std::string const & file)
37     : ofstream_t(file.c_str(), std::ofstream::app), IOStreamTarget(file, ofstream_t::member), 
38       file_(file)
39 {
40     consoleDir().add( "reopen", senf::membind(
41                           static_cast<void (FileTarget::*)()>(&FileTarget::reopen),
42                           this))
43         .doc("Reopen logfile");
44     consoleDir().add("reopen", senf::membind(
45                          static_cast<void (FileTarget::*)(std::string const &)>(&FileTarget::reopen),
46                          this))
47         .arg("filename","new filename")
48         .overloadDoc("Reopen logfile under new name");
49 }
50
51 prefix_ void senf::log::FileTarget::reopen()
52 {
53     ofstream_t::member.close();
54     ofstream_t::member.open(file_.c_str(), std::ofstream::app);
55 }
56
57 prefix_ void senf::log::FileTarget::reopen(std::string const & file)
58 {
59     file_ = file;
60     reopen();
61     // Rename console directory
62     console::DirectoryNode::ptr parent (consoleDir().node().parent());
63     if (parent)
64         parent->add(file, consoleDir().node().unlink());
65 }
66
67 prefix_ senf::log::FileTarget::RegisterConsole::RegisterConsole()
68 {
69     detail::TargetRegistry::instance().consoleDir().add("file-target",&RegisterConsole::create)
70         .arg("filename", "name of logfile")
71         .doc("Create new file target.");
72 }
73
74 prefix_ boost::shared_ptr<senf::console::DirectoryNode>
75 senf::log::FileTarget::RegisterConsole::create(std::string const & filename)
76 {
77     std::auto_ptr<Target> tp (new FileTarget(filename));
78     Target & target (*tp.get());
79     detail::TargetRegistry::instance().dynamicTarget(tp);
80     return target.consoleDir().node().thisptr();
81 }
82
83 ///////////////////////////////cc.e////////////////////////////////////////
84 #undef prefix_
85 //#include "FileTarget.mpp"
86
87 \f
88 // Local Variables:
89 // mode: c++
90 // fill-column: 100
91 // comment-column: 40
92 // c-file-style: "senf"
93 // indent-tabs-mode: nil
94 // ispell-local-dictionary: "american"
95 // compile-command: "scons -u test"
96 // End: