blob: 4615fc8074fb2f2217e6ccaeb826ace3a6c7388f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
//
// MCOIMAPNamespace.m
// mailcore2
//
// Created by DINH Viêt Hoà on 3/23/13.
// Copyright (c) 2013 MailCore. All rights reserved.
//
#import "MCOIMAPNamespace.h"
#include "MCIMAP.h"
#import "MCOUtils.h"
@implementation MCOIMAPNamespace {
mailcore::IMAPNamespace * _nativeNamespace;
}
#define nativeType mailcore::IMAPNamespace
+ (void) load
{
MCORegisterClass(self, &typeid(nativeType));
}
- (id) copyWithZone:(NSZone *)zone
{
nativeType * nativeObject = (nativeType *) [self mco_mcObject]->copy();
id result = [[self class] mco_objectWithMCObject:nativeObject];
MC_SAFE_RELEASE(nativeObject);
return [result retain];
}
+ (NSObject *) mco_objectWithMCObject:(mailcore::Object *)object
{
mailcore::IMAPNamespace * ns = (mailcore::IMAPNamespace *) object;
return [[[self alloc] initWithMCNamespace:ns] autorelease];
}
- (id) init
{
mailcore::IMAPNamespace * ns = new mailcore::IMAPNamespace();
self = [self initWithMCNamespace:ns];
ns->release();
return self;
}
- (id) initWithMCNamespace:(mailcore::IMAPNamespace *)ns
{
self = [super init];
_nativeNamespace = ns;
_nativeNamespace->retain();
return self;
}
- (void) dealloc
{
MC_SAFE_RELEASE(_nativeNamespace);
[super dealloc];
}
- (mailcore::Object *) mco_mcObject
{
return _nativeNamespace;
}
- (NSString *) description
{
return MCO_OBJC_BRIDGE_GET(description);
}
+ (MCOIMAPNamespace *) namespaceWithPrefix:(NSString *)prefix delimiter:(char)delimiter
{
return MCO_TO_OBJC(mailcore::IMAPNamespace::namespaceWithPrefix([prefix mco_mcString], delimiter));
}
- (NSString *) mainPrefix
{
return MCO_OBJC_BRIDGE_GET(mainPrefix);
}
- (char) mainDelimiter
{
return MCO_NATIVE_INSTANCE->mainDelimiter();
}
- (NSArray *) prefixes
{
return MCO_OBJC_BRIDGE_GET(mainPrefix);
}
- (NSString *) pathForComponents:(NSArray *)components
{
mailcore::Array * mcComponents = MCO_FROM_OBJC(mailcore::Array, components);
return MCO_TO_OBJC(MCO_NATIVE_INSTANCE->pathForComponents(mcComponents));
}
- (NSString *) pathForComponents:(NSArray *)components prefix:(NSString *)prefix
{
mailcore::Array * mcComponents = MCO_FROM_OBJC(mailcore::Array, components);
return MCO_TO_OBJC(MCO_NATIVE_INSTANCE->pathForComponentsAndPrefix(mcComponents, [prefix mco_mcString]));
}
- (NSArray *) componentsFromPath:(NSString *)path
{
return MCO_TO_OBJC(MCO_NATIVE_INSTANCE->componentsFromPath([path mco_mcString]));
}
- (BOOL) containsFolderPath:(NSString *)path
{
return MCO_NATIVE_INSTANCE->containsFolderPath([path mco_mcString]);
}
@end
|