]> err.no Git - sope/blob - sope-appserver/samples/HelloWorld/Main.m
updated svn:ignore properties for my special homegrown problems ;-)
[sope] / sope-appserver / samples / HelloWorld / Main.m
1 /*
2   Copyright (C) 2000-2005 SKYRIX Software AG
3
4   This file is part of SOPE.
5
6   SOPE is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with SOPE; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21
22 #include <NGObjWeb/WOComponent.h>
23
24 @class NSArray;
25
26 @interface Main : WOComponent
27 {
28   NSArray *items;
29   id      item;
30 }
31
32 @end
33
34 #include "common.h"
35
36 @implementation Main
37
38 - (id)initWithContext:(WOContext *)_ctx {
39   if ((self = [super initWithContext:_ctx]) != nil) {
40     NSMutableArray *ma;
41     int i;
42
43     ma = [[NSMutableArray alloc] init];
44     for (i = 0; i < 1000; i++) {
45       char buf[16];
46       NSString *s;
47       
48       sprintf(buf, "%i", i);
49       s = [[NSString alloc] initWithCString:buf];
50       [ma addObject:s];
51       [s release];
52     }
53     self->items = ma;
54   }
55   return self;
56 }
57
58 - (void)dealloc {
59   [self->items release];
60   [self->item  release];
61   [super dealloc];
62 }
63
64 /* accessors */
65
66 - (void)setItem:(id)_item {
67   ASSIGN(self->item, _item);
68 }
69 - (id)item {
70   return self->item;
71 }
72
73 - (NSArray *)list {
74   return self->items;
75 }
76
77 /* response generation */
78
79 - (void)appendToResponse:(WOResponse *)_r inContext:(WOContext *)_ctx {
80   NSDate *s;
81
82   s = [NSDate date];
83   [super appendToResponse:_r inContext:_ctx];
84   printf("duration: %.3f\n", [[NSDate date] timeIntervalSinceDate:s]);
85 }
86
87 @end /* Main */