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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
/*
* Copyright (C) 2005 Tommi Maekitalo
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* As a special exception, you may use this file as part of a free
* software library without restriction. Specifically, if other files
* instantiate templates or use macros or inline functions from this
* file, or you compile this file and link it with other files to
* produce an executable, this file does not by itself cause the
* resulting executable to be covered by the GNU General Public
* License. This exception does not however invalidate any other
* reasons why the executable file might be covered by the GNU Library
* General Public License.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "tnt/ecppc/scopevar.h"
#include <tnt/stringescaper.h>
#include <iterator>
#include <iostream>
#include <algorithm>
namespace tnt
{
namespace ecppc
{
void Scopevar::get(std::ostream& out, bool linenumbersEnabled) const
{
std::string tag =
_scopeContainer == ecpp::application_container ? "application"
: _scopeContainer == ecpp::thread_container ? "thread"
: _scopeContainer == ecpp::session_container ? "session"
: _scopeContainer == ecpp::secure_session_container ? "securesession"
: _scopeContainer == ecpp::request_container ? "request"
: "param";
std::string macro;
if (_scopeContainer == ecpp::param_container)
{
macro = "TNT_PARAM";
}
else
{
std::string container =
_scopeContainer == ecpp::application_container ? "APPLICATION_"
: _scopeContainer == ecpp::thread_container ? "THREAD_"
: _scopeContainer == ecpp::session_container ? "SESSION_"
: _scopeContainer == ecpp::secure_session_container ? "SECURE_SESSION_"
: _scopeContainer == ecpp::request_container ? "REQUEST_"
: "PARAM_";
std::string key =
_scope == ecpp::shared_scope ? "SHARED_"
: _scope == ecpp::page_scope ? "PAGE_"
: _scope == ecpp::default_scope ? "FILE_"
: _scopeContainer != ecpp::param_container ? "COMPONENT_"
: std::string();
macro = "TNT_" + container + key + "VAR";
}
if (linenumbersEnabled)
out << "#line " << (_myline + 1) << " \"" << _myfile << "\"\n";
std::string t = _type;
if (t.empty())
t = "std::string";
out << " typedef " << t << ' ' << _var << "_type;\n";
if (_type.find(',') == std::string::npos)
{
out << " " << macro << '(' << t << ", " << _var;
if (_scope == ecpp::default_scope)
out << ", " << _myfile;
out << ", (" << _init << ")); "
" // <%" << tag << "> " << t << ' ' << _var;
}
else
{
out << " " << macro << '(' << _var << "_type, " << _var;
if (_scope == ecpp::default_scope)
out << ", " << _myfile;
out << ", (" << _init << ")); "
" // <%" << tag << "> " << _type << ' ' << _var;
}
if (!_init.empty())
{
out << '(';
std::transform(_init.begin(), _init.end(),
std::ostream_iterator<const char*>(out),
stringescaper(false));
out << ')';
}
out << "\n"
" _tnt_ignore_unused<" << _var << "_type>(" << _var << ");\n";
}
}
}
|