aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/imap/IMAPMessagePart.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/imap/IMAPMessagePart.cpp')
-rw-r--r--src/net/imap/IMAPMessagePart.cpp161
1 files changed, 0 insertions, 161 deletions
diff --git a/src/net/imap/IMAPMessagePart.cpp b/src/net/imap/IMAPMessagePart.cpp
deleted file mode 100644
index eed885dc..00000000
--- a/src/net/imap/IMAPMessagePart.cpp
+++ /dev/null
@@ -1,161 +0,0 @@
-//
-// VMime library (http://www.vmime.org)
-// Copyright (C) 2002-2013 Vincent Richard <[email protected]>
-//
-// 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_IMAP
-
-
-#include "vmime/net/imap/IMAPMessagePart.hpp"
-#include "vmime/net/imap/IMAPMessageStructure.hpp"
-
-
-namespace vmime {
-namespace net {
-namespace imap {
-
-
-IMAPMessagePart::IMAPMessagePart(shared_ptr <IMAPMessagePart> parent, const int number, const IMAPParser::body_type_mpart* mpart)
- : m_parent(parent), m_header(null), m_number(number), m_size(0)
-{
- m_mediaType = vmime::mediaType
- ("multipart", mpart->media_subtype()->value());
-}
-
-
-IMAPMessagePart::IMAPMessagePart(shared_ptr <IMAPMessagePart> parent, const int number, const IMAPParser::body_type_1part* part)
- : m_parent(parent), m_header(null), m_number(number), m_size(0)
-{
- if (part->body_type_text())
- {
- m_mediaType = vmime::mediaType
- ("text", part->body_type_text()->
- media_text()->media_subtype()->value());
-
- m_size = part->body_type_text()->body_fields()->body_fld_octets()->value();
- }
- else if (part->body_type_msg())
- {
- m_mediaType = vmime::mediaType
- ("message", part->body_type_msg()->
- media_message()->media_subtype()->value());
- }
- else
- {
- m_mediaType = vmime::mediaType
- (part->body_type_basic()->media_basic()->media_type()->value(),
- part->body_type_basic()->media_basic()->media_subtype()->value());
-
- m_size = part->body_type_basic()->body_fields()->body_fld_octets()->value();
- }
-
- m_structure = null;
-}
-
-
-shared_ptr <const messageStructure> IMAPMessagePart::getStructure() const
-{
- if (m_structure != NULL)
- return m_structure;
- else
- return IMAPMessageStructure::emptyStructure();
-}
-
-
-shared_ptr <messageStructure> IMAPMessagePart::getStructure()
-{
- if (m_structure != NULL)
- return m_structure;
- else
- return IMAPMessageStructure::emptyStructure();
-}
-
-
-shared_ptr <const IMAPMessagePart> IMAPMessagePart::getParent() const
-{
- return m_parent.lock();
-}
-
-
-const mediaType& IMAPMessagePart::getType() const
-{
- return m_mediaType;
-}
-
-
-size_t IMAPMessagePart::getSize() const
-{
- return m_size;
-}
-
-
-int IMAPMessagePart::getNumber() const
-{
- return m_number;
-}
-
-
-shared_ptr <const header> IMAPMessagePart::getHeader() const
-{
- if (m_header == NULL)
- throw exceptions::unfetched_object();
- else
- return m_header;
-}
-
-
-// static
-shared_ptr <IMAPMessagePart> IMAPMessagePart::create
- (shared_ptr <IMAPMessagePart> parent, const int number, const IMAPParser::body* body)
-{
- if (body->body_type_mpart())
- {
- shared_ptr <IMAPMessagePart> part = make_shared <IMAPMessagePart>(parent, number, body->body_type_mpart());
- part->m_structure = make_shared <IMAPMessageStructure>(part, body->body_type_mpart()->list());
-
- return part;
- }
- else
- {
- return make_shared <IMAPMessagePart>(parent, number, body->body_type_1part());
- }
-}
-
-
-header& IMAPMessagePart::getOrCreateHeader()
-{
- if (m_header != NULL)
- return *m_header;
- else
- return *(m_header = make_shared <header>());
-}
-
-
-} // imap
-} // net
-} // vmime
-
-
-#endif // VMIME_HAVE_MESSAGING_FEATURES && VMIME_HAVE_MESSAGING_PROTO_IMAP
-