sogo/SOPE/GDLContentStore/GCSFolderType.h
Wolfgang Sourdeau 5b4d9380eb Monotone-Parent: 70da0038473c195e4432eef83ea8e60444efb5e6
Monotone-Revision: 5620876c032aa2a8a213c26557e674045561bd61

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-10-29T14:51:55
Monotone-Branch: ca.inverse.sogo
2007-10-29 14:51:55 +00:00

83 lines
2.5 KiB
Objective-C

/*
Copyright (C) 2004-2005 SKYRIX Software AG
This file is part of OpenGroupware.org.
OGo is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
OGo 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 Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public
License along with OGo; see the file COPYING. If not, write to the
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
#ifndef __GDLContentStore_GCSFolderType_H__
#define __GDLContentStore_GCSFolderType_H__
/*
GCSFolderType
This is the "model" of a folder, it specifies what quick attributes are
available, in which tables it is stored and how it is retrieved.
For now, we only support one 'quick' table (we might want to have multiple
ones in the future).
Note: using the 'folderQualifier' we are actually prepared for 'multiple
folders in a single table' setups. So in case we want to go that
route later, we can still do it :-)
*/
#import <Foundation/NSObject.h>
@class NSString, NSArray, NSDictionary;
@class EOQualifier;
@class NGResourceLocator;
@class GCSFolder, GCSFieldExtractor;
@interface GCSFolderType : NSObject
{
NSString *blobTablePattern; // eg 'SOGo_$folderId$_blob
NSString *quickTablePattern; // eg 'SOGo_$folderId$_quick
NSArray *fields; // GCSFieldInfo objects
NSDictionary *fieldDict; // maps a name to GCSFieldInfo
EOQualifier *folderQualifier; // to further limit the table set
NSString *extractorClassName;
GCSFieldExtractor *extractor;
}
+ (id)folderTypeWithName:(NSString *)_type;
- (id)initWithPropertyList:(id)_plist;
- (id)initWithContentsOfFile:(NSString *)_path;
- (id)initWithFolderTypeName:(NSString *)_typeName;
/* operations */
- (NSString *)blobTableNameForFolder:(GCSFolder *)_folder;
- (NSString *)quickTableNameForFolder:(GCSFolder *)_folder;
/* generating SQL */
- (NSString *)sqlQuickCreateWithTableName:(NSString *)_tabName;
/* quick support */
- (GCSFieldExtractor *)quickExtractor;
/* locator used to find .ocs files */
+ (NGResourceLocator *)resourceLocator;
@end
#endif /* __GDLContentStore_GCSFolderType_H__ */