![]() |
User Manual, Developers Guide and API Documentation |
![]() |
00001 /******************************************************************************* 00002 * This file is part of openWNS (open Wireless Network Simulator) 00003 * _____________________________________________________________________________ 00004 * 00005 * Copyright (C) 2004-2007 00006 * Chair of Communication Networks (ComNets) 00007 * Kopernikusstr. 16, D-52074 Aachen, Germany 00008 * phone: ++49-241-80-27910, 00009 * fax: ++49-241-80-22242 00010 * email: info@openwns.org 00011 * www: http://www.openwns.org 00012 * _____________________________________________________________________________ 00013 * 00014 * openWNS is free software; you can redistribute it and/or modify it under the 00015 * terms of the GNU Lesser General Public License version 2 as published by the 00016 * Free Software Foundation; 00017 * 00018 * openWNS is distributed in the hope that it will be useful, but WITHOUT ANY 00019 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 00020 * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 00021 * details. 00022 * 00023 * You should have received a copy of the GNU Lesser General Public License 00024 * along with this program. If not, see <http://www.gnu.org/licenses/>. 00025 * 00026 ******************************************************************************/ 00027 00028 #include <WNS/logger/SQLiteFormat.hpp> 00029 #include <algorithm> 00030 00031 using namespace wns::logger; 00032 00033 STATIC_FACTORY_REGISTER_WITH_CREATOR(SQLiteFormat, FormatStrategy, "wns.logger.SQLiteFormat", wns::PyConfigViewCreator); 00034 00035 SQLiteFormat::SQLiteFormat(const pyconfig::View&) : 00036 isFirstMessage(true) 00037 {} 00038 00039 std::string 00040 SQLiteFormat::formatMessage(const RawMessage& m) 00041 { 00042 std::stringstream s; 00043 if(this->isFirstMessage == true) 00044 { 00045 s << "CREATE TABLE messages (time REAL, module TEXT, location TEXT, text TEXT);" << std::endl; 00046 s << "PRAGMA SYNCHRONOUS=OFF;" << std::endl; 00047 this->isFirstMessage = false; 00048 } 00049 00050 s << "INSERT INTO messages VALUES (" 00051 << m.time << ", '" 00052 << this->escapeAll(m.module) << "', '" 00053 << this->escapeAll(m.location) << "', '" 00054 << this->escapeAll(m.message) << "');" 00055 << std::endl; 00056 00057 return s.str(); 00058 } 00059 00060 std::string 00061 SQLiteFormat::escapeAll(const std::string& s) 00062 { 00063 std::string res; 00064 for(size_t ii = 0; ii < s.length(); ++ii) 00065 { 00066 std::string character(1, s[ii]); 00067 if(character == "'") 00068 { 00069 // "'" needs to be escaped with "'" in SQLite, funny :) 00070 res.append("'"); 00071 } 00072 res.append(character); 00073 } 00074 return res; 00075 } 00076 00077
1.5.5