]> err.no Git - scalable-opengroupware.org/blob - Misc/dbd/DSoTable.m
36df6c9e3dd1f2cecf127fef5aa15e93e3f9c9c0
[scalable-opengroupware.org] / Misc / dbd / DSoTable.m
1 /*
2   Copyright (C) 2004 SKYRIX Software AG
3
4   This file is part of OpenGroupware.org.
5
6   OGo 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   OGo 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 OGo; 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 // $Id$
22
23 #include "DSoTable.h"
24 #include "DSoDatabase.h"
25 #include "common.h"
26
27 @implementation DSoTable
28
29 - (id)initWithName:(NSString *)_name inContainer:(id)_container {
30   if ((self = [super init])) {
31     self->tableName = [_name      copy];
32     self->database  = [_container retain];
33   }
34   return self;
35 }
36
37 - (void)dealloc {
38   [self->database  release];
39   [self->tableName release];
40   [super dealloc];
41 }
42
43 /* accessors */
44
45 - (DSoDatabase *)database {
46   return self->database;
47 }
48 - (NSString *)tableName {
49   return self->tableName;
50 }
51
52 - (NSString *)hostName {
53   return [[self database] hostName];
54 }
55 - (int)port {
56   return [[self database] port];
57 }
58 - (NSString *)databaseName {
59   return [[self database] databaseName];
60 }
61
62 - (id)container {
63   return [self database];
64 }
65 - (NSString *)nameInContainer {
66   return [self tableName];
67 }
68
69 /* support */
70
71 - (EOAdaptor *)adaptorInContext:(WOContext *)_ctx {
72   return [self->database adaptorInContext:_ctx];
73 }
74
75 /* name lookup */
76
77 - (id)lookupName:(NSString *)_key inContext:(id)_ctx acquire:(BOOL)_flag {
78   id obj;
79   
80   /* 
81      Note: acquire:NO - otherwise acquired stuff will override the stuff
82            below!
83   */
84   if ((obj = [super lookupName:_key inContext:_ctx acquire:NO]))
85     return obj;
86
87   // here we need to differentiate between entry-ids and field names
88   // TODO
89   return nil;
90 }
91
92 @end /* DSoTable */