diff -r 000000000000 -r f979ecb2b13e calendarengines/versit2/src/ICalFreeBusy.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/calendarengines/versit2/src/ICalFreeBusy.cpp Tue Feb 02 10:12:19 2010 +0200 @@ -0,0 +1,167 @@ +/* +* Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Implements the definition of CICalFreeBusy. It deals with FreeBusy attribute of a calendar event. +* +*/ + + + +// Class include. +#include "ICalFreeBusy.h" // CICalFreeBusy + +//debug +#include "calendarengines_debug.h" + +// User includes +#include "ICalKeyWords.h" // Literals + +/** +Static factory construction +@return A new CICalFreeBusy +@internalTechnology +*/ +CICalFreeBusy* CICalFreeBusy::NewLC(TICalMethod aMethod) + { + TRACE_ENTRY_POINT; + + CICalFreeBusy* self = new (ELeave) CICalFreeBusy; + CleanupStack::PushL(self); + self->ConstructL(aMethod); + + TRACE_EXIT_POINT; + return self; + } + +/** +Destructor +@internalTechnology +*/ +CICalFreeBusy::~CICalFreeBusy() + { + TRACE_ENTRY_POINT; + TRACE_EXIT_POINT; + } + +/** +Constructor +@internalTechnology +*/ +CICalFreeBusy::CICalFreeBusy() + { + TRACE_ENTRY_POINT; + + iComponentType = EICalFreeBusy; + + TRACE_EXIT_POINT; + } + +/** +Internal construction +@internalTechnology +*/ +void CICalFreeBusy::ConstructL(TICalMethod aMethod) + { + TRACE_ENTRY_POINT; + + iMethod = aMethod; + switch(iMethod) + { + case EMethodNone: + iComponentMethodBitMask = EMaskFreeBusyNone; + break; + case EMethodPublish: + iComponentMethodBitMask = EMaskFreeBusyPublish; + break; + case EMethodRequest: + iComponentMethodBitMask = EMaskFreeBusyRequest; + break; + case EMethodReply: + iComponentMethodBitMask = EMaskFreeBusyReply; + break; + default: + // This is invalid should we leave? + iComponentMethodBitMask = 0; + break; + } + + TRACE_EXIT_POINT; + } + +/** +Checks that the iCalendar specification allows this calendar component to +contain the property aName +@param aName the name of the property to validate +@return ETrue if the property is valid for this component, otherwise EFalse +@internalTechnology +*/ +TBool CICalFreeBusy::ValidatePropertyImpl(const TDesC& aName) const + { + TRACE_ENTRY_POINT; + + if ((aName.CompareF(KICalContact) == 0) || (aName.CompareF(KICalDtstart) == 0) || + (aName.CompareF(KICalDtend) == 0) || (aName.CompareF(KICalDuration) == 0) || + (aName.CompareF(KICalDtstamp) == 0) || (aName.CompareF(KICalOrganizer) == 0) || + (aName.CompareF(KICalUid) == 0) || (aName.CompareF(KICalUrl) == 0)) + { + // 0..1 CONTACT + // 0..1 DTSTART + // 0..1 DTEND + // 0..1 DURATION + // 0..1 DTSTAMP + // 0..1 ORGANIZER + // 0..1 UID + // 0..1 URL + TRACE_EXIT_POINT; + return (FindProperty(aName) == NULL); + } + else if ((aName.CompareF(KICalAttendee) == 0) || (aName.CompareF(KICalComment) == 0) || + (aName.CompareF(KICalFreebusy) == 0) || (aName.CompareF(KICalRequeststatus) == 0)) + { + // 0..* ATTENDEE + // 0..* COMMENT + // 0..* FREEBUSY + // 0..* REQUEST-STATUS + TRACE_EXIT_POINT; + return ETrue; + } + + if ((aName.Length() >= 2) && (aName.Left(2).CompareF(KICalXProperty) == 0)) + { + // 0..* X-[anything] + TRACE_EXIT_POINT; + return ETrue; + } + + // If we got this far we didn't match any of the possible property names + TRACE_EXIT_POINT; + return EFalse; + } + +/** +Checks that the iCalendar specification allows this calendar component to +contain a nested component of type aType. +@param aType the type of component to validate. +@return ETrue if the component is a valid child for this component, otherwise +EFalse. +@internalTechnology +*/ +TBool CICalFreeBusy::ValidateComponent(TICalComponentType /*aType*/) const + { + TRACE_ENTRY_POINT; + TRACE_EXIT_POINT; + // VFREEBUSY cannot contain other components. + return EFalse; + } + +// End of File