public
Description: An OS X application to build a standalone web site as an export from my photo album.
Homepage: http://bleu.west.spy.net/~dustin/projects/photosync/
Clone URL: git://github.com/dustin/photosync.git
Search Repo:
photosync / Photo.m
100644 258 lines (211 sloc) 4.489 kb
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
//
// Photo.m
// PhotoSync
//
// Created by Dustin Sallings on 2005/2/2.
// Copyright 2005 Dustin Sallings. All rights reserved.
//
 
#import "Photo.h"
 
 
@implementation Photo
 
-initWithDict:(NSDictionary *)d
{
  id rv=[super init];
  NSAutoreleasePool *pool=[[NSAutoreleasePool alloc] init];
 
  NSEnumerator *enumerator = [d keyEnumerator];
  id key=nil;
  while((key = [enumerator nextObject]) != nil) {
    [self takeValue: [d objectForKey:key] forKey:key];
  }
 
  NSArray *parts=[taken componentsSeparatedByString:@"-"];
  year=[[parts objectAtIndex:0] intValue];
  month=[[parts objectAtIndex:1] intValue];
  day=[[parts objectAtIndex:2] intValue];
 
  [pool release];
  return rv;
}
 
-(NSComparisonResult)compare:(Photo *)to
{
  return([taken compare:[to taken]]);
}
 
-(NSDictionary *)tokens
{
  NSDictionary *rv=[NSDictionary dictionaryWithObjectsAndKeys:
    [NSString stringWithFormat:@"%d", imgId], @"IMGID",
    taken, @"TAKEN",
    [self keywordString], @"KEYWORDS",
    descr, @"DESCR",
    [NSString stringWithFormat:@"%04d", year], @"YEAR",
    [NSString stringWithFormat:@"%02d", month], @"MONTH",
    nil];
  return rv;
}
 
-(NSString *)keywordString
{
  NSMutableArray *a=[[NSMutableArray alloc]
    initWithCapacity:[keywordStrings count]];
  NSEnumerator *e=[keywordStrings objectEnumerator];
  id ob=nil;
  while(ob = [e nextObject]) {
    [a addObject: ob];
  }
  [a sortUsingSelector:@selector(compare:)];
  NSString *rv=[a componentsJoinedByString:@" "];
  [a release];
  return(rv);
}
 
-(int)year
{
  return year;
}
 
-(int)month
{
  return month;
}
 
-(int)day
{
  return day;
}
 
-(NSSet *)keywordStrings
{
  return(keywordStrings);
}
 
- (void)handleTakeValue:(id)value forUnboundKey:(NSString *)key
{
  NSLog(@"Warning! Taking value (%@) for unknown key (%@)", value, key);
}
 
-(NSString *)description
{
  return([NSString stringWithFormat:@"<Photo id=%d, dims=%@>", imgId,
    [self dims], nil]);
}
 
-(NSString *)dims
{
  return([NSString stringWithFormat:@"%dx%d", width, height, nil]);
}
 
-(void)dealloc
{
  [addedby release];
  [taken release];
  [ts release];
  [descr release];
  [extension release];
  [cat release];
 
  [keywordStrings release];
  [super dealloc];
}
 
-(void)setId:(int)to
{
  imgId=to;
}
 
- (int)imgId {
    return imgId;
}
 
- (void)setImgId:(int)newImgId {
    if (imgId != newImgId) {
        imgId = newImgId;
    }
}
 
- (int)size {
    return size;
}
 
- (void)setSize:(int)newSize {
    if (size != newSize) {
        size = newSize;
    }
}
 
- (int)width {
    return width;
}
 
- (void)setWidth:(int)newWidth {
    if (width != newWidth) {
        width = newWidth;
    }
}
 
- (int)height {
    return height;
}
 
- (void)setHeight:(int)newHeight {
    if (height != newHeight) {
        height = newHeight;
    }
}
 
- (int)tnwidth {
    return tnwidth;
}
 
- (void)setTnwidth:(int)newTnwidth {
    if (tnwidth != newTnwidth) {
        tnwidth = newTnwidth;
    }
}
 
- (int)tnheight {
    return tnheight;
}
 
- (void)setTnheight:(int)newTnheight {
    if (tnheight != newTnheight) {
        tnheight = newTnheight;
    }
}
 
- (NSString *)addedby {
    return [[addedby retain] autorelease];
}
 
- (void)setAddedby:(NSString *)newAddedby {
    if (addedby != newAddedby) {
        [addedby release];
        addedby = [newAddedby copy];
    }
}
 
- (NSString *)taken {
    return [[taken retain] autorelease];
}
 
- (void)setTaken:(NSString *)newTaken {
    if (taken != newTaken) {
        [taken release];
        taken = [newTaken copy];
    }
}
 
- (NSString *)ts {
    return [[ts retain] autorelease];
}
 
- (void)setTs:(NSString *)newTs {
    if (ts != newTs) {
        [ts release];
        ts = [newTs copy];
    }
}
 
- (NSString *)descr {
    return [[descr retain] autorelease];
}
 
- (void)setDescr:(NSString *)newDescr {
    if (descr != newDescr) {
        [descr release];
        descr = [newDescr copy];
    }
}
 
- (NSString *)extension {
    return [[extension retain] autorelease];
}
 
- (void)setExtension:(NSString *)newExtension {
    if (extension != newExtension) {
        [extension release];
        extension = [newExtension copy];
    }
}
 
- (NSString *)cat {
    return [[cat retain] autorelease];
}
 
- (void)setCat:(NSString *)newCat {
    if (cat != newCat) {
        [cat release];
        cat = [newCat copy];
    }
}
 
- (NSSet *)keywords {
    return [[keywordStrings retain] autorelease];
}
 
- (void)setKeywords:(NSSet *)newKeywords {
    if (keywordStrings != newKeywords) {
        [keywordStrings release];
        keywordStrings = [newKeywords copy];
    }
}
 
@end