NEW FILE HEADER / COPYRIGHT FORMAT
[senf.git] / Utils / hexdump.ct
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 hexdump non-inline template implementation */
25
26 //#include "hexdump.ih"
27
28 // Custom includes
29 #include <boost/io/ios_state.hpp>
30 #include <iomanip> 
31
32 //#include "hexdump.mpp"
33 #define prefix_
34 ///////////////////////////////cc.p////////////////////////////////////////
35
36 template <class Iterator>
37 prefix_ void senf::hexdump(Iterator i, Iterator i_end, std::ostream & stream,
38                            unsigned block_size)
39 {
40     boost::io::ios_all_saver ias (stream);
41     unsigned offset (0);
42     std::string ascii;
43     for (; i != i_end; ++i, ++offset) {
44         if ((offset % block_size) == 0) {
45             if (!ascii.empty()) {
46                 stream << "  " << ascii << "\n";
47                 ascii = "";
48             }
49             stream << "  "
50                    << std::hex << std::setw(4) << std::setfill('0')
51                    << offset << ' ';
52         } else if ((offset % block_size) == block_size/2) {
53             stream << " ";
54             ascii += ' ';
55         }
56         stream << ' ' << std::hex << std::setw(2) << std::setfill('0')
57                << unsigned(*i);
58         ascii += (*i >= ' ' && *i < 126) ? *i : '.';
59     }
60     if (!ascii.empty()) {
61         for (; (offset % block_size) != 0; ++offset) {
62             if ((offset % block_size) == block_size/2)
63                 stream << " ";
64             stream << "   ";
65         }
66         stream << "  " << ascii << "\n";
67     }
68 }
69
70 ///////////////////////////////cc.e////////////////////////////////////////
71 #undef prefix_
72 //#include "hexdump.mpp"
73
74  
75 // Local Variables:
76 // mode: c++
77 // fill-column: 100
78 // c-file-style: "senf"
79 // indent-tabs-mode: nil
80 // ispell-local-dictionary: "american"
81 // compile-command: "scons -u test"
82 // comment-column: 40
83 // End: