/* Copyright (c) 2006 Benhur Stein This file is part of Pajé. Pajé 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 of the License, or (at your option) any later version. Pajé 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 Pajé; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _EntityChunk_h_ #define _EntityChunk_h_ // // EntityChunk // // contains entities of a type in a container in a slice of time // (this is an abstract class, concrete subclasses are in PajeSimulator) // // Author: Edmar Pessoa Araújo Neto // #include #include "PajeEntity.h" #include "PajeType.h" #include "PajeContainer.h" @interface EntityChunk : NSObject { PajeContainer *container; PajeEntityType *entityType; NSDate *startTime; NSDate *endTime; } - (id)initWithEntityType:(PajeEntityType *)type container:(PajeContainer *)pc; - (void)dealloc; /* * Accessors */ - (PajeContainer *)container; - (PajeEntityType *)entityType; - (void)setStartTime:(NSDate *)time; - (NSDate *)startTime; - (void)setEndTime:(NSDate *)time; - (NSDate *)endTime; /* * entity enumerators */ // only entities that finish inside the chunk's time boundaries - (NSEnumerator *)enumeratorOfAllCompleteEntities; - (NSEnumerator *)enumeratorOfCompleteEntitiesAfterTime:(NSDate *)time; // all entities, including those that finish after the chunk's endTime - (NSEnumerator *)enumeratorOfAllEntities; - (NSEnumerator *)enumeratorOfEntitiesBeforeTime:(NSDate *)time; - (NSEnumerator *)enumeratorOfEntitiesFromTime:(NSDate *)sliceStartTime toTime:(NSDate *)sliceEndTime; // filter method for enumerator - (id)filterEntity:(PajeEntity *)entity laterThan:(NSDate *)time; @end #endif