Monotone-Parent: c4fe19a1a6dc722f667408c4597a414722b94c7d

Monotone-Revision: 17ec96618b492fe585dfeb02ba266111e8b0c4fd

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-12-13T16:42:52
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2010-12-13 16:42:52 +00:00
parent 946ad356a7
commit b1a420e4e7
3 changed files with 109 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2010-12-13 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/NSValue+MAPIStore.[hm]: new category module for
returning native MAPI types.
* OpenChange/SOGoMAPIFSFolder.[hm]: new class module that
implements a SOGoFolder subclass that stores and retrives data
to/and from the file system in the form of a plist.

View File

@ -0,0 +1,37 @@
/* NSValue+MAPIStore.h - this file is part of SOGo
*
* Copyright (C) 2010 Inverse inc.
*
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
*
* 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.
*/
#ifndef NSVALUE_MAPISTORE_H
#define NSVALUE_MAPISTORE_H
#import <Foundation/NSValue.h>
@interface NSNumber (MAPIStoreDataTypes)
- (uint8_t *) asBooleanInMemCtx: (void *) memCtx;
- (uint16_t *) asShortInMemCtx: (void *) memCtx;
- (uint32_t *) asLongInMemCtx: (void *) memCtx;
- (uint64_t *) asDoubleInMemCtx: (void *) memCtx;
@end
#endif /* NSVALUE_MAPISTORE_H */

View File

@ -0,0 +1,69 @@
/* NSValue+MAPIStore.m - this file is part of SOGo
*
* Copyright (C) 2010 Inverse inc.
*
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
*
* 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.
*/
#include <talloc.h>
#import "NSValue+MAPIStore.h"
@implementation NSNumber (MAPIStoreDataTypes)
- (uint8_t *) asBooleanInMemCtx: (void *) memCtx
{
uint8_t *value;
value = talloc (memCtx, uint8_t);
*value = [self boolValue];
return value;
}
- (uint16_t *) asShortInMemCtx: (void *) memCtx
{
uint16_t *value;
value = talloc (memCtx, uint16_t);
*value = [self shortValue];
return value;
}
- (uint32_t *) asLongInMemCtx: (void *) memCtx
{
uint32_t *value;
value = talloc (memCtx, uint32_t);
*value = [self longValue];
return value;
}
- (uint64_t *) asDoubleInMemCtx: (void *) memCtx
{
uint64_t *value;
value = talloc (memCtx, uint64_t);
*value = [self doubleValue];
return value;
}
@end