12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /*
- * Copyright 2005 - 2016 Zarafa and its licensors
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * 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 Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- #include "SOAPHelpers.h"
- namespace KC {
- void *mime_file_read_open(struct soap *soap, void *handle, const char *id, const char *type, const char *description)
- {
- return handle;
- }
- void mime_file_read_close(struct soap *soap, void *handle)
- {
- if (handle)
- fclose((FILE*)handle);
- }
- size_t mime_file_read(struct soap *soap, void *handle, char *buf, size_t len)
- {
- return fread(buf, 1, len, (FILE*)handle);
- }
- void *mime_file_write_open(struct soap *soap, void *handle, const char *id, const char *type, const char *description, enum soap_mime_encoding encoding)
- {
- auto lpFilename = static_cast<const char *>(handle);
- if (!lpFilename) {
- soap->error = SOAP_EOF;
- soap->errnum = errno;
- return NULL;
- }
- FILE *fHandle = fopen(lpFilename, "wb");
- if (!fHandle) {
- soap->error = SOAP_EOF;
- soap->errnum = errno;
- }
- return (void*)fHandle;
- }
- void mime_file_write_close(struct soap *soap, void *handle)
- {
- fclose((FILE*)handle);
- }
- int mime_file_write(struct soap *soap, void *handle, const char *buf, size_t len)
- {
- size_t nwritten;
- while (len)
- {
- nwritten = fwrite(buf, 1, len, (FILE*)handle);
- if (!nwritten)
- {
- soap->errnum = errno;
- return SOAP_EOF;
- }
- len -= nwritten;
- buf += nwritten;
- }
- return SOAP_OK;
- }
- } /* namespace */
|