//
// VMime library (http://www.vmime.org)
// Copyright (C) 2002 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/config.hpp"
#if VMIME_HAVE_MESSAGING_FEATURES && VMIME_HAVE_MESSAGING_PROTO_MAILDIR
#include "vmime/net/maildir/maildirMessagePart.hpp"
#include "vmime/net/maildir/maildirMessageStructure.hpp"
namespace vmime {
namespace net {
namespace maildir {
maildirMessagePart::maildirMessagePart(
const shared_ptr <maildirMessagePart>& parent,
const size_t number,
const bodyPart& part
)
: m_parent(parent),
m_header(null),
m_number(number) {
m_headerParsedOffset = part.getHeader()->getParsedOffset();
m_headerParsedLength = part.getHeader()->getParsedLength();
m_bodyParsedOffset = part.getBody()->getParsedOffset();
m_bodyParsedLength = part.getBody()->getParsedLength();
m_size = part.getBody()->getContents()->getLength();
m_mediaType = part.getBody()->getContentType();
auto cdispField = part.getHeader()->ContentDisposition();
if (cdispField) {
m_dispType = dynamic_cast <const contentDisposition&>(*cdispField->getValue());
}
}
maildirMessagePart::~maildirMessagePart() {
}
void maildirMessagePart::initStructure(const bodyPart& part) {
if (part.getBody()->getPartList().size() == 0) {
m_structure = null;
} else {
m_structure = make_shared <maildirMessageStructure>(
dynamicCast <maildirMessagePart>(shared_from_this()), part.getBody()->getPartList()
);
}
}
shared_ptr <const messageStructure> maildirMessagePart::getStructure() const {
if (m_structure) {
return m_structure;
} else {
return maildirMessageStructure::emptyStructure();
}
}
shared_ptr <messageStructure> maildirMessagePart::getStructure() {
if (m_structure) {
return m_structure;
} else {
return maildirMessageStructure::emptyStructure();
}
}
const mediaType& maildirMessagePart::getType() const {
return m_mediaType;
}
const contentDisposition &maildirMessagePart::getDisposition() const {
return m_dispType;
}
size_t maildirMessagePart::getSize() const {
return m_size;
}
size_t maildirMessagePart::getNumber() const {
return m_number;
}
shared_ptr <const header> maildirMessagePart::getHeader() const {
if (!m_header) {
throw exceptions::unfetched_object();
} else {
return m_header;
}
}
header& maildirMessagePart::getOrCreateHeader() {
if (m_header) {
return *m_header;
} else {
return *(m_header = make_shared <header>());
}
}
size_t maildirMessagePart::getHeaderParsedOffset() const {
return m_headerParsedOffset;
}
size_t maildirMessagePart::getHeaderParsedLength() const {
return m_headerParsedLength;
}
size_t maildirMessagePart::getBodyParsedOffset() const {
return m_bodyParsedOffset;
}
size_t maildirMessagePart::getBodyParsedLength() const {
return m_bodyParsedLength;
}
} // maildir
} // net
} // vmime
#endif // VMIME_HAVE_MESSAGING_FEATURES && VMIME_HAVE_MESSAGING_PROTO_MAILDIR