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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <precomp.h>
#include <s2_dsapi/tk_xml.hxx>
// NOT FULLY DEFINED SERVICES
#include <s2_dsapi/tokintpr.hxx>
using csi::dsapi::Tok_XmlConst;
using csi::dsapi::Tok_XmlLink_Tag;
using csi::dsapi::Tok_XmlFormat_Tag;
lux::EnumValueMap G_aTok_XmlConst_EV_TokenId_Values;
Tok_XmlConst::EV_TokenId ev_consts_none(Tok_XmlConst::e_none,"");
Tok_XmlConst::EV_TokenId ev_e_true(Tok_XmlConst::e_true,"true");
Tok_XmlConst::EV_TokenId ev_e_false(Tok_XmlConst::e_false,"false");
Tok_XmlConst::EV_TokenId ev_e_null(Tok_XmlConst::e_null,"NULL");
Tok_XmlConst::EV_TokenId ev_e_void(Tok_XmlConst::e_void,"void");
lux::EnumValueMap G_aTok_XmlLink_Tag_EV_TokenId_Values;
Tok_XmlLink_Tag::EV_TokenId ev_linktags_none(Tok_XmlLink_Tag::e_none,"");
Tok_XmlLink_Tag::EV_TokenId ev_e_const(Tok_XmlLink_Tag::e_const,"const");
Tok_XmlLink_Tag::EV_TokenId ev_member(Tok_XmlLink_Tag::member,"member");
Tok_XmlLink_Tag::EV_TokenId ev_type(Tok_XmlLink_Tag::type,"type");
lux::EnumValueMap G_aTok_XmlFormat_Tag_EV_TokenId_Values;
Tok_XmlFormat_Tag::EV_TokenId ev_formattags_none(Tok_XmlFormat_Tag::e_none,"");
Tok_XmlFormat_Tag::EV_TokenId ev_code(Tok_XmlFormat_Tag::code,"code");
Tok_XmlFormat_Tag::EV_TokenId ev_listing(Tok_XmlFormat_Tag::listing,"listing");
Tok_XmlFormat_Tag::EV_TokenId ev_atom(Tok_XmlFormat_Tag::atom,"code");
namespace lux
{
template<> EnumValueMap &
Enum<Tok_XmlConst::E_TokenId>::Values_() { return G_aTok_XmlConst_EV_TokenId_Values; }
template<> EnumValueMap &
Enum<Tok_XmlLink_Tag::E_TokenId>::Values_() { return G_aTok_XmlLink_Tag_EV_TokenId_Values; }
template<> EnumValueMap &
Enum<Tok_XmlFormat_Tag::E_TokenId>::Values_() { return G_aTok_XmlFormat_Tag_EV_TokenId_Values; }
} // namespace lux
namespace csi
{
namespace dsapi
{
void
Tok_XmlConst::Trigger( TokenInterpreter & io_rInterpreter ) const
{
io_rInterpreter.Process_XmlConst(*this);
}
const char *
Tok_XmlConst::Text() const
{
return eTag.Text();
}
void
Tok_XmlLink_BeginTag::Trigger( TokenInterpreter & io_rInterpreter ) const
{
io_rInterpreter.Process_XmlLink_BeginTag(*this);
}
const char *
Tok_XmlLink_BeginTag::Text() const
{
static StreamStr ret(120);
ret.seekp(0);
if (sScope.length() > 0)
{
ret << "<"
<< eTag.Text()
<< " scope=\""
<< sScope
<< "\">";
}
else
{
ret << "<"
<< eTag.Text()
<< ">";
}
return ret.c_str();
}
void
Tok_XmlLink_EndTag::Trigger( TokenInterpreter & io_rInterpreter ) const
{
io_rInterpreter.Process_XmlLink_EndTag(*this);
}
const char *
Tok_XmlLink_EndTag::Text() const
{
static StreamStr ret(120);
ret.seekp(0);
ret << "</"
<< eTag.Text()
<< ">";
return ret.c_str();
}
void
Tok_XmlFormat_BeginTag::Trigger( TokenInterpreter & io_rInterpreter ) const
{
io_rInterpreter.Process_XmlFormat_BeginTag(*this);
}
const char *
Tok_XmlFormat_BeginTag::Text() const
{
static StreamStr ret(120);
ret.seekp(0);
ret << "<"
<< eTag.Text()
<< ">";
return ret.c_str();
}
void
Tok_XmlFormat_EndTag::Trigger( TokenInterpreter & io_rInterpreter ) const
{
io_rInterpreter.Process_XmlFormat_EndTag(*this);
}
const char *
Tok_XmlFormat_EndTag::Text() const
{
static StreamStr ret(120);
ret.seekp(0);
ret << "</"
<< eTag.Text()
<< ">";
return ret.c_str();
}
} // namespace dsapi
} // namespace csi
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|