forked from apaffenholz/PolyViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PolymakeObject.m
151 lines (105 loc) · 5.13 KB
/
PolymakeObject.m
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/***********************************************************************
* Created by Andreas Paffenholz on 04/18/12.
* Copyright 2012-2014 by Andreas Paffenholz.
* 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 2, or (at your option) any
* later version: http://www.gnu.org/licenses/gpl.txt.
* 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.
*
* PolymakeObject.m
* PolyViewer
**************************************************************************/
#import "PolymakeObject.h"
@implementation PolymakeObject
@synthesize objectType = _objectType;
@synthesize filename = _filename;
@synthesize name = _name;
@synthesize description = _description;
@synthesize credits = _creditsDict;
@synthesize rootPerl = _rootPerlNode;
/***************************************************************************
* init
***************************************************************************/
- (id)init {
if ( self = [super init] ) {
_filename = nil;
_name = nil;
_description = nil;
_creditsDict = nil;
_rootPerlNode = nil;
}
return self;
}
/***************************************************************************
* init with a file
***************************************************************************/
- (id)initObjectWithURL:(NSURL *)input {
if ( self = [super init] ) {
// libpolymake initialize polymake object
PolymakeObjectWrapper * temp = [[PolymakeObjectWrapper alloc ] initWithPolymakeObject:[input path]];
if ( temp != nil ) {
_rootPerlNode = [[PropertyNode alloc] initWithObject:[temp retain]];
// determine the object type of the given object
// this is stored as an attribute of the root node
_objectType = [NSString stringWithString:[[_rootPerlNode polyObj] getObjectType]];
// check whether the polymake object has a name
// as the type this would be an attribute of the root
_name = [NSString stringWithString:[[_rootPerlNode polyObj] getObjectName]];
// check whether the polytope has a description
// this is stored in a property directly below the root
_description = [NSString stringWithString:[[_rootPerlNode polyObj] getObjectDescription]];
NSMutableArray * creditLabels = [NSMutableArray array];
NSMutableArray * creditStrings = [NSMutableArray array];
_creditsDict = [NSDictionary dictionaryWithObjects:creditStrings forKeys:creditLabels];
// apparently we have to retain this
[_creditsDict retain];
// keep the input filename
_filename = [input retain];
} else {
self = nil;
}
[temp release];
}
return self;
}
- (id)retrieveFromDatabase:(NSString *)database andCollection:(NSString *)collection withID:(NSString *)ID {
NSLog(@"[PolymakeObject retrieveFromDatabase andCollection withProperties] called");
if ( self = [super init] ) {
// libpolymake initialize polymake object
_rootPerlNode = [[[PropertyNode alloc]
initWithObject:[[PolymakeObjectWrapper alloc]
initWithPolymakeObjectFromDatabase:database andCollection:collection withID:ID]] retain];
// determine the object type of the given object
// this is stored as an attribute of the root node
_objectType = [NSString stringWithString:[[_rootPerlNode polyObj] getObjectType]];
// check whether the polymake object has a name
// as the type this would be an attribute of the root
_name = [NSString stringWithString:[[_rootPerlNode polyObj] getObjectName]];
// check whether the polytope has a description
// this is stored in a property directly below the root
_description = [NSString stringWithString:[[_rootPerlNode polyObj] getObjectDescription]];
NSMutableArray * creditLabels = [NSMutableArray array];
NSMutableArray * creditStrings = [NSMutableArray array];
_creditsDict = [NSDictionary dictionaryWithObjects:creditStrings forKeys:creditLabels];
// apparently we have to retain this
[_creditsDict retain];
_filename = nil;
}
return self;
NSLog(@"[PolymakeObject retrieveFromDatabase andCollection withProperties] returning");
return YES;
}
/***************************************************************************
* dealloc
***************************************************************************/
- (void) dealloc {
[_rootPerlNode release];
[_filename release];
[_creditsDict release];
[super dealloc];
}
@end