/* NSData+MAPIStore.m - this file is part of SOGo * * Copyright (C) 2010 Inverse inc. * * Author: Wolfgang Sourdeau * * This file 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, or (at your option) * any later version. * * This file 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; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #import "NSData+MAPIStore.h" #undef DEBUG #include #include #include @implementation NSData (MAPIStoreDataTypes) + (id) dataWithBinary: (const struct Binary_r *) binData { return [NSData dataWithBytes: binData->lpb length: binData->cb]; } - (struct Binary_r *) asBinaryInMemCtx: (void *) memCtx { struct Binary_r *binary; uint8_t *lpb; binary = talloc_zero (memCtx, struct Binary_r); binary->cb = [self length]; lpb = talloc_array (binary, uint8_t, binary->cb); [self getBytes: lpb]; binary->lpb = lpb; return binary; } + (id) dataWithShortBinary: (const struct SBinary_short *) binData { return [NSData dataWithBytes: binData->lpb length: binData->cb]; } - (struct SBinary_short *) asShortBinaryInMemCtx: (void *) memCtx { struct SBinary_short *binary; uint8_t *lpb; binary = talloc_zero (memCtx, struct SBinary_short); binary->cb = [self length]; lpb = talloc_array (binary, uint8_t, binary->cb); [self getBytes: lpb]; binary->lpb = lpb; return binary; } @end