1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
// Cyphesis Online RPG Server and AI Engine
// Copyright (C) 2006 Alistair Riddoch
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software Foundation,
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
// $Id: debug.cpp,v 1.4 2007-07-17 02:26:43 alriddoch Exp $
#include "debug.h"
#include <Atlas/Message/Element.h>
#include <iostream>
using Atlas::Message::Element;
using Atlas::Message::MapType;
using Atlas::Message::ListType;
static void output(const Element & item, int depth)
{
switch (item.getType()) {
case Element::TYPE_INT:
std::cout << item.Int();
break;
case Element::TYPE_FLOAT:
std::cout << item.Float();
break;
case Element::TYPE_STRING:
std::cout << "\"" << item.String() << "\"";
break;
case Element::TYPE_LIST:
{
std::cout << "[ ";
ListType::const_iterator I = item.List().begin();
ListType::const_iterator Iend = item.List().end();
for(; I != Iend; ++I) {
output(*I, depth + 1);
std::cout << " ";
}
std::cout << "]";
}
break;
case Element::TYPE_MAP:
{
std::cout << "{" << std::endl << std::flush;
MapType::const_iterator I = item.Map().begin();
MapType::const_iterator Iend = item.Map().end();
for(; I != Iend; ++I) {
std::cout << std::string((depth + 1) * 4, ' ') << I->first << ": ";
output(I->second, depth + 1);
std::cout << std::endl;
}
std::cout << std::string(depth * 4, ' ') << "}";
std::cout << std::endl;
}
break;
default:
std::cout << "(\?\?\?)";
break;
}
}
template <>
void debug_dump<MapType>(const MapType & map)
{
output(map, 0);
}
template <>
void debug_dump<ListType>(const ListType & list)
{
output(list, 0);
}
|