Homogeneous use of vmime::string.
This commit is contained in:
parent
7ab35173bc
commit
f2211877a9
@ -150,7 +150,7 @@ void component::parseImpl
|
||||
{
|
||||
// This is the default implementation for parsing from an input stream:
|
||||
// actually, we extract the substring and use the "parse from string" implementation
|
||||
const std::string buffer = parser->extract(position, end);
|
||||
const string buffer = parser->extract(position, end);
|
||||
parseImpl(ctx, buffer, 0, buffer.length(), newPosition);
|
||||
|
||||
// Recursivey offset parsed bounds on children
|
||||
|
@ -292,7 +292,7 @@ const char* no_object_found::name() const throw() { return "no_object_found"; }
|
||||
|
||||
no_such_property::~no_such_property() throw() {}
|
||||
no_such_property::no_such_property(const string& name, const exception& other)
|
||||
: exception(std::string("No such property: '") + name + string("'."), other) { }
|
||||
: exception(string("No such property: '") + name + string("'."), other) { }
|
||||
|
||||
exception* no_such_property::clone() const { return new no_such_property(*this); }
|
||||
const char* no_such_property::name() const throw() { return "no_such_property"; }
|
||||
|
@ -1323,7 +1323,7 @@ void IMAPFolder::addMessage(ref <vmime::message> msg, const int flags,
|
||||
|
||||
msg->generate(ossAdapter);
|
||||
|
||||
const std::string& str = oss.str();
|
||||
const string& str = oss.str();
|
||||
utility::inputStreamStringAdapter strAdapter(str);
|
||||
|
||||
addMessage(strAdapter, str.length(), flags, date, progress);
|
||||
|
@ -634,7 +634,7 @@ const string IMAPUtils::dateTime(const vmime::datetime& date)
|
||||
|
||||
// static
|
||||
const string IMAPUtils::buildFetchRequestImpl
|
||||
(const std::string& mode, const std::string& set, const int options)
|
||||
(const string& mode, const string& set, const int options)
|
||||
{
|
||||
// Example:
|
||||
// C: A654 FETCH 2:4 (FLAGS BODY[HEADER.FIELDS (DATE FROM)])
|
||||
|
@ -834,7 +834,7 @@ void maildirFolder::addMessage(ref <vmime::message> msg, const int flags,
|
||||
|
||||
msg->generate(ossAdapter);
|
||||
|
||||
const std::string& str = oss.str();
|
||||
const string& str = oss.str();
|
||||
utility::inputStreamStringAdapter strAdapter(str);
|
||||
|
||||
addMessage(strAdapter, str.length(), flags, date, progress);
|
||||
|
@ -203,7 +203,7 @@ ref <POP3Command> POP3Command::QUIT()
|
||||
|
||||
|
||||
// static
|
||||
ref <POP3Command> POP3Command::createCommand(const std::string& text)
|
||||
ref <POP3Command> POP3Command::createCommand(const string& text)
|
||||
{
|
||||
return vmime::create <POP3Command>(text);
|
||||
}
|
||||
|
@ -40,14 +40,14 @@ namespace net {
|
||||
namespace smtp {
|
||||
|
||||
|
||||
SMTPCommand::SMTPCommand(const std::string& text)
|
||||
SMTPCommand::SMTPCommand(const string& text)
|
||||
: m_text(text)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
// static
|
||||
ref <SMTPCommand> SMTPCommand::EHLO(const std::string& hostname)
|
||||
ref <SMTPCommand> SMTPCommand::EHLO(const string& hostname)
|
||||
{
|
||||
std::ostringstream cmd;
|
||||
cmd.imbue(std::locale::classic());
|
||||
@ -58,7 +58,7 @@ ref <SMTPCommand> SMTPCommand::EHLO(const std::string& hostname)
|
||||
|
||||
|
||||
// static
|
||||
ref <SMTPCommand> SMTPCommand::HELO(const std::string& hostname)
|
||||
ref <SMTPCommand> SMTPCommand::HELO(const string& hostname)
|
||||
{
|
||||
std::ostringstream cmd;
|
||||
cmd.imbue(std::locale::classic());
|
||||
@ -69,7 +69,7 @@ ref <SMTPCommand> SMTPCommand::HELO(const std::string& hostname)
|
||||
|
||||
|
||||
// static
|
||||
ref <SMTPCommand> SMTPCommand::AUTH(const std::string& mechName)
|
||||
ref <SMTPCommand> SMTPCommand::AUTH(const string& mechName)
|
||||
{
|
||||
std::ostringstream cmd;
|
||||
cmd.imbue(std::locale::classic());
|
||||
@ -147,7 +147,7 @@ ref <SMTPCommand> SMTPCommand::QUIT()
|
||||
|
||||
|
||||
// static
|
||||
ref <SMTPCommand> SMTPCommand::createCommand(const std::string& text)
|
||||
ref <SMTPCommand> SMTPCommand::createCommand(const string& text)
|
||||
{
|
||||
return vmime::create <SMTPCommand>(text);
|
||||
}
|
||||
|
@ -290,7 +290,7 @@ void parameter::generateImpl
|
||||
// value is to be generated.
|
||||
|
||||
// A stream for a temporary storage
|
||||
std::string sevenBitBuffer;
|
||||
string sevenBitBuffer;
|
||||
utility::outputStreamStringAdapter sevenBitStream(sevenBitBuffer);
|
||||
|
||||
string::size_type pos = curLinePos;
|
||||
|
@ -131,7 +131,7 @@ void propertySet::parse(const string& props)
|
||||
{
|
||||
value.reserve(50);
|
||||
|
||||
const std::string::value_type quoteChar = *pos;
|
||||
const string::value_type quoteChar = *pos;
|
||||
bool theEnd = false;
|
||||
bool escape = false;
|
||||
|
||||
|
@ -306,7 +306,7 @@ void LFToCRLFFilteredOutputStream::write
|
||||
if (count == 0)
|
||||
return;
|
||||
|
||||
std::string buffer;
|
||||
string buffer;
|
||||
buffer.reserve(count);
|
||||
|
||||
const value_type* pos = data;
|
||||
|
@ -88,7 +88,7 @@ const string parserInputStreamAdapter::extract(const size_type begin, const size
|
||||
|
||||
|
||||
stream::size_type parserInputStreamAdapter::findNext
|
||||
(const std::string& token, const size_type startPosition)
|
||||
(const string& token, const size_type startPosition)
|
||||
{
|
||||
static const unsigned int BUFFER_SIZE = 4096;
|
||||
|
||||
|
@ -143,7 +143,7 @@ public:
|
||||
private:
|
||||
|
||||
static const string buildFetchRequestImpl
|
||||
(const std::string& mode, const std::string& set, const int options);
|
||||
(const string& mode, const string& set, const int options);
|
||||
};
|
||||
|
||||
|
||||
|
@ -59,9 +59,9 @@ class VMIME_EXPORT SMTPCommand : public object
|
||||
|
||||
public:
|
||||
|
||||
static ref <SMTPCommand> HELO(const std::string& hostname);
|
||||
static ref <SMTPCommand> EHLO(const std::string& hostname);
|
||||
static ref <SMTPCommand> AUTH(const std::string& mechName);
|
||||
static ref <SMTPCommand> HELO(const string& hostname);
|
||||
static ref <SMTPCommand> EHLO(const string& hostname);
|
||||
static ref <SMTPCommand> AUTH(const string& mechName);
|
||||
static ref <SMTPCommand> STARTTLS();
|
||||
static ref <SMTPCommand> MAIL(const mailbox& mbox);
|
||||
static ref <SMTPCommand> RCPT(const mailbox& mbox);
|
||||
@ -75,7 +75,7 @@ public:
|
||||
* @param text command text
|
||||
* @return a new SMTPCommand object
|
||||
*/
|
||||
static ref <SMTPCommand> createCommand(const std::string& text);
|
||||
static ref <SMTPCommand> createCommand(const string& text);
|
||||
|
||||
/** Sends this command to the specified socket.
|
||||
*
|
||||
@ -92,12 +92,12 @@ public:
|
||||
|
||||
protected:
|
||||
|
||||
SMTPCommand(const std::string& text);
|
||||
SMTPCommand(const string& text);
|
||||
SMTPCommand(const SMTPCommand&);
|
||||
|
||||
private:
|
||||
|
||||
std::string m_text;
|
||||
string m_text;
|
||||
};
|
||||
|
||||
|
||||
|
@ -341,7 +341,7 @@ private:
|
||||
|
||||
private:
|
||||
|
||||
const std::string m_name;
|
||||
const string m_name;
|
||||
};
|
||||
|
||||
ref <property> find(const string& name) const;
|
||||
|
@ -70,7 +70,7 @@ private:
|
||||
};
|
||||
|
||||
|
||||
typedef std::map <std::string, ref <digestAlgorithmFactory> > MapType;
|
||||
typedef std::map <string, ref <digestAlgorithmFactory> > MapType;
|
||||
MapType m_algos;
|
||||
|
||||
public:
|
||||
|
@ -157,7 +157,7 @@ public:
|
||||
return pos - initialPos;
|
||||
}
|
||||
|
||||
size_type findNext(const std::string& token, const size_type startPosition = 0);
|
||||
size_type findNext(const string& token, const size_type startPosition = 0);
|
||||
|
||||
private:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user