forked from openchange/openchange
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Import Alan Alvarez work from libmapi++ into trunk
- Add a g++ check in configure.ac: don't call libmapi++ rules if g++ is missing - Add libmapi++ to the build system - Add a patch function to installsamba4.sh: rename private to private_data in samba4 events.h header file - Change #include directives so it uses <libmapi++ ... rather than relative paths.
- Loading branch information
Showing
20 changed files
with
1,743 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
/* | ||
libmapi C++ Wrapper | ||
Attachment Class | ||
Copyright (C) Alan Alvarez 2008. | ||
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, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
|
||
#ifndef LIBMAPIPP__ATTACHMENT_H__ | ||
#define LIBMAPIPP__ATTACHMENT_H__ | ||
|
||
#include <iostream> //for debugging | ||
#include <string> | ||
|
||
#include <libmapi++/clibmapi.h> | ||
#include <libmapi++/message.h> | ||
|
||
namespace libmapipp | ||
{ | ||
class object; | ||
|
||
/// \brief This class represents a message attachment | ||
class attachment : public object { | ||
public: | ||
/** \brief Constructor | ||
* \param mapi_message message this attachment belongs to. | ||
* \param attach_num Attachment Number. | ||
*/ | ||
attachment(message& mapi_message, const uint32_t attach_num) throw(mapi_exception) | ||
: object(mapi_message.get_session(), "attachment"), m_attach_num(attach_num), m_bin_data(NULL), m_data_size(0), m_filename("") | ||
{ | ||
if (OpenAttach(&mapi_message.data(), attach_num, &m_object) != MAPI_E_SUCCESS) | ||
throw mapi_exception(GetLastError(), "attachment::attachment : OpenAttach"); | ||
|
||
property_container properties = get_property_container(); | ||
properties << PR_ATTACH_FILENAME << PR_ATTACH_LONG_FILENAME << PR_ATTACH_SIZE << PR_ATTACH_DATA_BIN << PR_ATTACH_METHOD; | ||
properties.fetch(); | ||
|
||
const char* filename = static_cast<const char*>(properties[PR_ATTACH_LONG_FILENAME]); | ||
if (!filename) { | ||
filename = static_cast<const char*>(properties[PR_ATTACH_FILENAME]); | ||
} | ||
|
||
if (filename) { | ||
m_filename = filename; | ||
} | ||
|
||
m_data_size = *(static_cast<const uint32_t*>(properties[PR_ATTACH_SIZE])); | ||
|
||
const SBinary* attachment_data = static_cast<const SBinary*>(properties[PR_ATTACH_DATA_BIN]); | ||
|
||
// Don't load PR_ATTACH_DATA_BIN if it's embedded in message. | ||
// NOTE: Use RopOpenEmbeddedMessage when it is implemented. | ||
const uint32_t attach_method = *static_cast<const uint32_t*>(properties[PR_ATTACH_METHOD]); | ||
if (attach_method == ATTACH_EMBEDDED_MSG) | ||
return; | ||
|
||
// Get Binary Data. | ||
if (attachment_data) { | ||
m_data_size = attachment_data->cb; | ||
m_bin_data = new uint8_t[m_data_size]; | ||
memcpy(m_bin_data, attachment_data->lpb, attachment_data->cb); | ||
} else { | ||
mapi_object_t obj_stream; | ||
mapi_object_init(&obj_stream); | ||
if (OpenStream(&m_object, PR_ATTACH_DATA_BIN, 0, &obj_stream) != MAPI_E_SUCCESS) | ||
throw mapi_exception(GetLastError(), "attachment::attachment : OpenStream"); | ||
|
||
if (GetStreamSize(&obj_stream, &m_data_size) != MAPI_E_SUCCESS) | ||
throw mapi_exception(GetLastError(), "attachment::attachment : GetStreamSize"); | ||
|
||
m_bin_data = new uint8_t[m_data_size]; | ||
|
||
uint32_t pos = 0; | ||
uint16_t bytes_read = 0; | ||
do { | ||
if (ReadStream(&obj_stream, m_bin_data+pos, 1024, &bytes_read) != MAPI_E_SUCCESS) | ||
throw mapi_exception(GetLastError(), "attachment::attachment : ReadStream"); | ||
|
||
pos += bytes_read; | ||
|
||
} while (bytes_read && pos < m_data_size); | ||
|
||
mapi_object_release(&obj_stream); | ||
} | ||
|
||
} | ||
|
||
/// \brief Get Attachment number. | ||
uint32_t get_num() const { return m_attach_num; } | ||
|
||
const uint8_t* get_data() const { return m_bin_data; } | ||
uint32_t get_data_size() const { return m_data_size; } | ||
std::string get_filename() const { return m_filename; } | ||
|
||
/// Destructor | ||
virtual ~attachment() throw() | ||
{ | ||
if (m_bin_data) delete m_bin_data; | ||
} | ||
|
||
private: | ||
uint32_t m_attach_num; | ||
uint8_t* m_bin_data; // (same as unsigned char* ?) | ||
uint32_t m_data_size; | ||
std::string m_filename; | ||
}; | ||
|
||
} // namespace libmapipp | ||
|
||
#endif //!LIBMAPIPP__ATTACHMENT_H__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
libmapi C++ Wrapper | ||
Copyright (C) Alan Alvarez 2008. | ||
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, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef __CLIBMAPI_H | ||
#define __CLIBMAPI_H | ||
|
||
extern "C" { | ||
#include <libmapi/libmapi.h> | ||
} | ||
|
||
#endif /* ! __CLIBMAPI_H */ |
Oops, something went wrong.