436 lines
8.5 KiB
C++
436 lines
8.5 KiB
C++
//
|
|
// VMime library (http://www.vmime.org)
|
|
// Copyright (C) 2002-2013 Vincent Richard <vincent@vmime.org>
|
|
//
|
|
// 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 3 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.
|
|
//
|
|
// Linking this library statically or dynamically with other modules is making
|
|
// a combined work based on this library. Thus, the terms and conditions of
|
|
// the GNU General Public License cover the whole combination.
|
|
//
|
|
|
|
#include "vmime/text.hpp"
|
|
|
|
#include "vmime/parserHelpers.hpp"
|
|
#include "vmime/encoding.hpp"
|
|
|
|
|
|
namespace vmime
|
|
{
|
|
|
|
|
|
text::text()
|
|
{
|
|
}
|
|
|
|
|
|
text::text(const text& t)
|
|
: headerFieldValue()
|
|
{
|
|
copyFrom(t);
|
|
}
|
|
|
|
|
|
text::text(const string& t, const charset& ch)
|
|
{
|
|
createFromString(t, ch);
|
|
}
|
|
|
|
|
|
text::text(const string& t)
|
|
{
|
|
createFromString(t, charset::getLocalCharset());
|
|
}
|
|
|
|
|
|
text::text(const word& w)
|
|
{
|
|
appendWord(vmime::create <word>(w));
|
|
}
|
|
|
|
|
|
text::~text()
|
|
{
|
|
removeAllWords();
|
|
}
|
|
|
|
|
|
void text::parseImpl
|
|
(const parsingContext& ctx, const string& buffer, const string::size_type position,
|
|
const string::size_type end, string::size_type* newPosition)
|
|
{
|
|
removeAllWords();
|
|
|
|
string::size_type newPos;
|
|
|
|
const std::vector <ref <word> > words = word::parseMultiple(ctx, buffer, position, end, &newPos);
|
|
|
|
copy_vector(words, m_words);
|
|
|
|
setParsedBounds(position, newPos);
|
|
|
|
if (newPosition)
|
|
*newPosition = newPos;
|
|
}
|
|
|
|
|
|
void text::generateImpl
|
|
(const generationContext& ctx, utility::outputStream& os,
|
|
const string::size_type curLinePos, string::size_type* newLinePos) const
|
|
{
|
|
encodeAndFold(ctx, os, curLinePos, newLinePos, 0);
|
|
}
|
|
|
|
|
|
void text::copyFrom(const component& other)
|
|
{
|
|
const text& t = dynamic_cast <const text&>(other);
|
|
|
|
removeAllWords();
|
|
|
|
for (std::vector <ref <word> >::const_iterator i = t.m_words.begin() ; i != t.m_words.end() ; ++i)
|
|
m_words.push_back(vmime::create <word>(**i));
|
|
}
|
|
|
|
|
|
text& text::operator=(const component& other)
|
|
{
|
|
copyFrom(other);
|
|
return (*this);
|
|
}
|
|
|
|
|
|
text& text::operator=(const text& other)
|
|
{
|
|
copyFrom(other);
|
|
return (*this);
|
|
}
|
|
|
|
|
|
bool text::operator==(const text& t) const
|
|
{
|
|
if (getWordCount() == t.getWordCount())
|
|
{
|
|
bool equal = true;
|
|
|
|
std::vector <ref <word> >::const_iterator i = m_words.begin();
|
|
std::vector <ref <word> >::const_iterator j = t.m_words.begin();
|
|
|
|
for ( ; equal && i != m_words.end() ; ++i, ++j)
|
|
equal = (**i == **j);
|
|
|
|
return (equal);
|
|
}
|
|
|
|
return (false);
|
|
}
|
|
|
|
|
|
bool text::operator!=(const text& t) const
|
|
{
|
|
return !(*this == t);
|
|
}
|
|
|
|
|
|
const string text::getConvertedText(const charset& dest, const charsetConverterOptions& opts) const
|
|
{
|
|
string out;
|
|
|
|
for (std::vector <ref <word> >::const_iterator i = m_words.begin() ; i != m_words.end() ; ++i)
|
|
out += (*i)->getConvertedText(dest, opts);
|
|
|
|
return (out);
|
|
}
|
|
|
|
|
|
void text::appendWord(ref <word> w)
|
|
{
|
|
m_words.push_back(w);
|
|
}
|
|
|
|
|
|
void text::insertWordBefore(const size_t pos, ref <word> w)
|
|
{
|
|
m_words.insert(m_words.begin() + pos, w);
|
|
}
|
|
|
|
|
|
void text::insertWordAfter(const size_t pos, ref <word> w)
|
|
{
|
|
m_words.insert(m_words.begin() + pos + 1, w);
|
|
}
|
|
|
|
|
|
void text::removeWord(const size_t pos)
|
|
{
|
|
const std::vector <ref <word> >::iterator it = m_words.begin() + pos;
|
|
|
|
m_words.erase(it);
|
|
}
|
|
|
|
|
|
void text::removeAllWords()
|
|
{
|
|
m_words.clear();
|
|
}
|
|
|
|
|
|
size_t text::getWordCount() const
|
|
{
|
|
return (m_words.size());
|
|
}
|
|
|
|
|
|
bool text::isEmpty() const
|
|
{
|
|
return (m_words.empty());
|
|
}
|
|
|
|
|
|
const ref <word> text::getWordAt(const size_t pos)
|
|
{
|
|
return (m_words[pos]);
|
|
}
|
|
|
|
|
|
const ref <const word> text::getWordAt(const size_t pos) const
|
|
{
|
|
return (m_words[pos]);
|
|
}
|
|
|
|
|
|
const std::vector <ref <const word> > text::getWordList() const
|
|
{
|
|
std::vector <ref <const word> > list;
|
|
|
|
list.reserve(m_words.size());
|
|
|
|
for (std::vector <ref <word> >::const_iterator it = m_words.begin() ;
|
|
it != m_words.end() ; ++it)
|
|
{
|
|
list.push_back(*it);
|
|
}
|
|
|
|
return (list);
|
|
}
|
|
|
|
|
|
const std::vector <ref <word> > text::getWordList()
|
|
{
|
|
return (m_words);
|
|
}
|
|
|
|
|
|
ref <component> text::clone() const
|
|
{
|
|
return vmime::create <text>(*this);
|
|
}
|
|
|
|
|
|
ref <text> text::newFromString(const string& in, const charset& ch)
|
|
{
|
|
ref <text> t = vmime::create <text>();
|
|
|
|
t->createFromString(in, ch);
|
|
|
|
return t;
|
|
}
|
|
|
|
|
|
void text::createFromString(const string& in, const charset& ch)
|
|
{
|
|
string::size_type asciiCount = 0;
|
|
string::size_type asciiPercent = 0;
|
|
|
|
removeAllWords();
|
|
|
|
// Check whether there is a recommended encoding for this charset.
|
|
// If so, the whole buffer will be encoded. Else, the number of
|
|
// 7-bit (ASCII) bytes in the input will be used to determine if
|
|
// we need to encode the whole buffer.
|
|
encoding recommendedEnc;
|
|
const bool alwaysEncode = ch.getRecommendedEncoding(recommendedEnc);
|
|
|
|
if (!alwaysEncode)
|
|
{
|
|
asciiCount = utility::stringUtils::countASCIIchars(in.begin(), in.end());
|
|
asciiPercent = (in.length() == 0 ? 100 : (100 * asciiCount) / in.length());
|
|
}
|
|
|
|
// If there are "too much" non-ASCII chars, encode everything
|
|
if (alwaysEncode || asciiPercent < 60) // less than 60% ASCII chars
|
|
{
|
|
appendWord(vmime::create <word>(in, ch));
|
|
}
|
|
// Else, only encode words which need it
|
|
else
|
|
{
|
|
bool is8bit = false; // is the current word 8-bit?
|
|
bool prevIs8bit = false; // is previous word 8-bit?
|
|
unsigned int count = 0; // total number of words
|
|
|
|
for (string::size_type end = in.size(), pos = 0, start = 0 ; ; )
|
|
{
|
|
if (pos == end || parserHelpers::isSpace(in[pos]))
|
|
{
|
|
const string chunk(in.begin() + start, in.begin() + pos);
|
|
|
|
if (pos != end)
|
|
++pos;
|
|
|
|
if (is8bit)
|
|
{
|
|
if (count && prevIs8bit)
|
|
{
|
|
// No need to create a new encoded word, just append
|
|
// the current word to the previous one.
|
|
ref <word> w = getWordAt(getWordCount() - 1);
|
|
w->getBuffer() += " " + chunk;
|
|
}
|
|
else
|
|
{
|
|
if (count)
|
|
{
|
|
ref <word> w = getWordAt(getWordCount() - 1);
|
|
w->getBuffer() += ' ';
|
|
}
|
|
|
|
appendWord(vmime::create <word>(chunk, ch));
|
|
|
|
prevIs8bit = true;
|
|
++count;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (count && !prevIs8bit)
|
|
{
|
|
ref <word> w = getWordAt(getWordCount() - 1);
|
|
w->getBuffer() += " " + chunk;
|
|
}
|
|
else
|
|
{
|
|
appendWord(vmime::create <word>
|
|
(chunk, charset(charsets::US_ASCII)));
|
|
|
|
prevIs8bit = false;
|
|
++count;
|
|
}
|
|
}
|
|
|
|
if (pos == end)
|
|
break;
|
|
|
|
is8bit = false;
|
|
start = pos;
|
|
}
|
|
else if (!parserHelpers::isAscii(in[pos]))
|
|
{
|
|
is8bit = true;
|
|
++pos;
|
|
}
|
|
else
|
|
{
|
|
++pos;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void text::encodeAndFold
|
|
(const generationContext& ctx, utility::outputStream& os,
|
|
const string::size_type firstLineOffset, string::size_type* lastLineLength, const int flags) const
|
|
{
|
|
string::size_type curLineLength = firstLineOffset;
|
|
word::generatorState state;
|
|
|
|
for (size_t wi = 0 ; wi < getWordCount() ; ++wi)
|
|
{
|
|
getWordAt(wi)->generate(ctx, os, curLineLength,
|
|
&curLineLength, flags, &state);
|
|
}
|
|
|
|
if (lastLineLength)
|
|
*lastLineLength = curLineLength;
|
|
}
|
|
|
|
|
|
ref <text> text::decodeAndUnfold(const string& in)
|
|
{
|
|
ref <text> t = vmime::create <text>();
|
|
|
|
decodeAndUnfold(parsingContext::getDefaultContext(), in, t.get());
|
|
|
|
return t;
|
|
}
|
|
|
|
|
|
ref <text> text::decodeAndUnfold(const parsingContext& ctx, const string& in)
|
|
{
|
|
ref <text> t = vmime::create <text>();
|
|
|
|
decodeAndUnfold(ctx, in, t.get());
|
|
|
|
return t;
|
|
}
|
|
|
|
|
|
text* text::decodeAndUnfold(const string& in, text* generateInExisting)
|
|
{
|
|
return decodeAndUnfold(parsingContext::getDefaultContext(), in, generateInExisting);
|
|
}
|
|
|
|
|
|
text* text::decodeAndUnfold(const parsingContext& ctx, const string& in, text* generateInExisting)
|
|
{
|
|
text* out = (generateInExisting != NULL) ? generateInExisting : new text();
|
|
|
|
out->removeAllWords();
|
|
|
|
const std::vector <ref <word> > words = word::parseMultiple(ctx, in, 0, in.length(), NULL);
|
|
|
|
copy_vector(words, out->m_words);
|
|
|
|
return (out);
|
|
}
|
|
|
|
|
|
const std::vector <ref <component> > text::getChildComponents()
|
|
{
|
|
std::vector <ref <component> > list;
|
|
|
|
copy_vector(m_words, list);
|
|
|
|
return (list);
|
|
}
|
|
|
|
|
|
const string text::getWholeBuffer() const
|
|
{
|
|
string res;
|
|
|
|
for (std::vector <ref <word> >::const_iterator it = m_words.begin() ;
|
|
it != m_words.end() ; ++it)
|
|
{
|
|
res += (*it)->getBuffer();
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
|
|
} // vmime
|