gecko-dev/calendar/libxpical/oeICalImpl.cpp

1312 строки
37 KiB
C++
Исходник Обычный вид История

2001-11-07 23:29:04 +03:00
/* ***** BEGIN LICENSE BLOCK *****
2001-11-07 22:18:46 +03:00
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
2001-11-07 23:29:04 +03:00
* The Original Code is OEone Calendar Code, released October 31st, 2001.
2001-11-07 22:18:46 +03:00
*
* The Initial Developer of the Original Code is
* OEone Corporation.
2001-11-07 23:29:04 +03:00
* Portions created by the Initial Developer are Copyright (C) 2001
* the Initial Developer. All Rights Reserved.
2001-11-07 22:18:46 +03:00
*
2001-11-07 23:29:04 +03:00
* Contributor(s): Mostafa Hosseini <mostafah@oeone.com>
2001-11-07 22:18:46 +03:00
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
2001-11-07 23:29:04 +03:00
* ***** END LICENSE BLOCK ***** */
2001-11-07 22:18:46 +03:00
2001-11-22 22:15:20 +03:00
#ifndef WIN32
2001-11-07 22:18:46 +03:00
#include <unistd.h>
2001-11-22 22:15:20 +03:00
#endif
2001-11-07 22:18:46 +03:00
#define __cplusplus__ 1
2001-12-21 01:16:08 +03:00
#include <vector>
2001-11-07 22:18:46 +03:00
#include "oeICalImpl.h"
#include "oeICalEventImpl.h"
#include "nsMemory.h"
2001-12-21 01:16:08 +03:00
#include "stdlib.h"
#include "nsCOMPtr.h"
#include "nsISimpleEnumerator.h"
2001-11-07 22:18:46 +03:00
extern "C" {
#include "icalss.h"
}
2001-12-21 01:16:08 +03:00
icaltimetype ConvertFromPrtime( PRTime indate );
PRTime ConvertToPrtime ( icaltimetype indate );
2001-12-21 01:16:08 +03:00
/* event enumerator */
class
2001-12-21 01:16:08 +03:00
oeEventEnumerator : public nsISimpleEnumerator
{
public:
oeEventEnumerator();
virtual ~oeEventEnumerator();
// nsISupports interface
NS_DECL_ISUPPORTS
// nsISimpleEnumerator interface
NS_DECL_NSISIMPLEENUMERATOR
NS_IMETHOD Init( oeIICal* iCal );
NS_IMETHOD AddEventId( PRInt32 id );
2001-11-07 22:18:46 +03:00
2001-12-21 01:16:08 +03:00
private:
PRUint32 mCurrentIndex;
std::vector<PRInt32> mIdVector;
2001-12-21 01:16:08 +03:00
nsCOMPtr<oeIICal> mICal;
};
2001-11-07 22:18:46 +03:00
2001-12-21 01:16:08 +03:00
oeEventEnumerator::oeEventEnumerator( )
:
mCurrentIndex( 0 )
2001-11-07 22:18:46 +03:00
{
2001-12-21 01:16:08 +03:00
NS_INIT_REFCNT();
}
oeEventEnumerator::~oeEventEnumerator()
{
}
NS_IMPL_ISUPPORTS1(oeEventEnumerator, nsISimpleEnumerator)
NS_IMETHODIMP
oeEventEnumerator::HasMoreElements(PRBool *result)
{
if( mCurrentIndex >= mIdVector.size() )
{
*result = PR_FALSE;
}
else
{
*result = PR_TRUE;
}
return NS_OK;
}
NS_IMETHODIMP
oeEventEnumerator::GetNext(nsISupports **_retval)
{
if( mCurrentIndex >= mIdVector.size() )
{
*_retval = nsnull;
}
else
{
PRInt32 eventId = mIdVector[ mCurrentIndex ];
oeIICalEvent* event;
nsresult rv = mICal->FetchEvent( eventId, &event);
if( NS_FAILED( rv ) )
return rv;
*_retval = event;
++mCurrentIndex;
}
return NS_OK;
}
NS_IMETHODIMP
oeEventEnumerator::AddEventId(PRInt32 id)
{
mIdVector.push_back( id );
return NS_OK;
}
NS_IMETHODIMP
oeEventEnumerator::Init(oeIICal* iCal)
{
mICal = iCal;
return NS_OK;
}
/* date enumerator */
oeDateEnumerator::oeDateEnumerator( )
:
mCurrentIndex( 0 )
{
NS_INIT_REFCNT();
2001-11-07 22:18:46 +03:00
}
2001-12-21 01:16:08 +03:00
oeDateEnumerator::~oeDateEnumerator()
{
}
NS_IMPL_ISUPPORTS1(oeDateEnumerator, nsISimpleEnumerator)
NS_IMETHODIMP
oeDateEnumerator::HasMoreElements(PRBool *result)
{
if( mCurrentIndex >= mIdVector.size() )
{
*result = PR_FALSE;
}
else
{
*result = PR_TRUE;
}
return NS_OK;
}
NS_IMETHODIMP
oeDateEnumerator::GetNext(nsISupports **_retval)
{
if( mCurrentIndex >= mIdVector.size() )
{
*_retval = nsnull;
}
else
{
nsresult rv;
nsCOMPtr<nsISupportsPRTime> nsPRTime = do_CreateInstance( NS_SUPPORTS_PRTIME_CONTRACTID , &rv);
if( NS_FAILED( rv ) ) {
2002-01-04 22:27:45 +03:00
*_retval = nsnull;
return rv;
}
nsISupportsPRTime* date;
rv = nsPRTime->QueryInterface(NS_GET_IID(nsISupportsPRTime), (void **)&date);
if( NS_FAILED( rv ) ) {
2002-01-04 22:27:45 +03:00
*_retval = nsnull;
return rv;
}
date->SetData( mIdVector[ mCurrentIndex ] );
*_retval = date;
++mCurrentIndex;
}
return NS_OK;
}
2001-12-21 01:16:08 +03:00
NS_IMETHODIMP
oeDateEnumerator::AddDate(PRTime date)
{
mIdVector.push_back( date );
return NS_OK;
}
2001-11-07 22:18:46 +03:00
//////////////////////////////////////////////////
// ICal Factory
//////////////////////////////////////////////////
nsresult
NS_NewICal( oeIICal** inst )
{
NS_PRECONDITION(inst != nsnull, "null ptr");
if (! inst)
return NS_ERROR_NULL_POINTER;
*inst = new oeICalImpl();
if (! *inst)
return NS_ERROR_OUT_OF_MEMORY;
NS_ADDREF(*inst);
return NS_OK;
}
oeICalImpl::oeICalImpl()
{
2001-12-21 01:16:08 +03:00
#ifdef ICAL_DEBUG
printf( "oeICalImpl::oeICalImpl()\n" );
#endif
2001-11-07 22:18:46 +03:00
NS_INIT_REFCNT();
2001-12-21 01:16:08 +03:00
m_batchMode = false;
nsresult rv;
nsCOMPtr<nsITimer> alarmtimer = do_CreateInstance("@mozilla.org/timer;1", &rv);
alarmtimer->QueryInterface(NS_GET_IID(nsITimer), (void **)&m_alarmtimer);
if( NS_FAILED( rv ) )
2002-01-04 22:27:45 +03:00
m_alarmtimer = nsnull;
2001-12-21 01:16:08 +03:00
else
2002-01-04 22:27:45 +03:00
m_alarmtimer->Init( nsnull, this, 0, NS_PRIORITY_NORMAL, NS_TYPE_ONE_SHOT );
2001-11-07 22:18:46 +03:00
}
oeICalImpl::~oeICalImpl()
{
2001-12-21 01:16:08 +03:00
#ifdef ICAL_DEBUG
printf( "oeICalImpl::~oeICalImpl()\n" );
#endif
for( int i=0; i<m_observerlist.size(); i++ ) {
m_observerlist[i]->Release();
}
if( m_alarmtimer && ( m_alarmtimer->GetDelay() != 0 ) )
m_alarmtimer->Cancel();
2001-11-07 22:18:46 +03:00
}
/**
* NS_IMPL_ISUPPORTS1 expands to a simple implementation of the nsISupports
* interface. This includes a proper implementation of AddRef, Release,
* and QueryInterface. If this class supported more interfaces than just
* nsISupports,
* you could use NS_IMPL_ADDREF() and NS_IMPL_RELEASE() to take care of the
* simple stuff, but you would have to create QueryInterface on your own.
* nsSampleFactory.cpp is an example of this approach.
* Notice that the second parameter to the macro is the static IID accessor
* method, and NOT the #defined IID.
*/
NS_IMPL_ISUPPORTS1(oeICalImpl, oeIICal);
/**
*
* Test
*
* DESCRIPTION: An exported XPCOM function used by the tester program to make sure
* all main internal functions are working properly
* PARAMETERS:
* None
*
* RETURN
* None
*/
NS_IMETHODIMP
oeICalImpl::Test(void)
{
2001-12-21 01:16:08 +03:00
#ifdef ICAL_DEBUG
printf( "oeICalImpl::Test()\n" );
#endif
2001-11-07 22:18:46 +03:00
icalfileset *stream;
icalcomponent *icalcalendar,*icalevent;
struct icaltimetype start, end;
char uidstr[10]="900000000";
2001-12-21 01:16:08 +03:00
char icalrawcalendarstr[] = "BEGIN:VCALENDAR\n\
BEGIN:VEVENT\n\
UID:900000000\n\
END:VEVENT\n\
END:VCALENDAR\n\
";
2001-11-07 22:18:46 +03:00
stream = icalfileset_new(serveraddr);
assert(stream != 0);
icalcalendar = icalparser_parse_string(icalrawcalendarstr);
assert(icalcalendar != 0);
icalevent = icalcomponent_get_first_component(icalcalendar,ICAL_VEVENT_COMPONENT);
assert(icalevent != 0);
icalproperty *uid = icalproperty_new_uid( uidstr );
icalcomponent_add_property( icalevent, uid );
icalproperty *title = icalproperty_new_summary( "Lunch time" );
icalcomponent_add_property( icalevent, title );
icalproperty *description = icalproperty_new_description( "Will be out for one hour" );
icalcomponent_add_property( icalevent, description );
icalproperty *location = icalproperty_new_location( "Restaurant" );
icalcomponent_add_property( icalevent, location );
icalproperty *category = icalproperty_new_categories( "Personal" );
icalcomponent_add_property( icalevent, category );
2001-12-21 01:16:08 +03:00
icalproperty *classp = icalproperty_new_class( ICAL_CLASS_PRIVATE );
2001-11-07 22:18:46 +03:00
icalcomponent_add_property( icalevent, classp );
start.year = 2001; start.month = 8; start.day = 15;
start.hour = 12; start.minute = 24; start.second = 0;
start.is_utc = false; start.is_date = false;
end.year = 2001; end.month = 8; end.day = 15;
end.hour = 13; end.minute = 24; end.second = 0;
end.is_utc = false; end.is_date = false;
icalproperty *dtstart = icalproperty_new_dtstart( start );
icalproperty *dtend = icalproperty_new_dtend( end );
icalcomponent_add_property( icalevent, dtstart );
icalcomponent_add_property( icalevent, dtend );
//
icalproperty *xprop = icalproperty_new_x( "TRUE" );
icalparameter *xpar = icalparameter_new_member( "AllDay" ); //NOTE: new_member is used because new_x didn't work
// Better to be changed to new_x when problem is solved
icalproperty_add_parameter( xprop, xpar );
icalcomponent_add_property( icalevent, xprop );
//
xprop = icalproperty_new_x( "FALSE" );
xpar = icalparameter_new_member( "Alarm" );
icalproperty_add_parameter( xprop, xpar );
icalcomponent_add_property( icalevent, xprop );
//
xprop = icalproperty_new_x( "FALSE" );
xpar = icalparameter_new_member( "AlarmWentOff" );
icalproperty_add_parameter( xprop, xpar );
icalcomponent_add_property( icalevent, xprop );
//
xprop = icalproperty_new_x( "5" );
xpar = icalparameter_new_member( "AlarmLength" );
icalproperty_add_parameter( xprop, xpar );
icalcomponent_add_property( icalevent, xprop );
//
xprop = icalproperty_new_x( "mostafah@oeone.com" );
xpar = icalparameter_new_member( "AlarmEmailAddres" );
icalproperty_add_parameter( xprop, xpar );
icalcomponent_add_property( icalevent, xprop );
//
xprop = icalproperty_new_x( "mostafah@oeone.com" );
xpar = icalparameter_new_member( "InviteEmailAddres" );
icalproperty_add_parameter( xprop, xpar );
icalcomponent_add_property( icalevent, xprop );
//
xprop = icalproperty_new_x( "5" );
xpar = icalparameter_new_member( "SnoozeTime" );
icalproperty_add_parameter( xprop, xpar );
icalcomponent_add_property( icalevent, xprop );
//
xprop = icalproperty_new_x( "0" );
xpar = icalparameter_new_member( "RecurType" );
icalproperty_add_parameter( xprop, xpar );
icalcomponent_add_property( icalevent, xprop );
//
xprop = icalproperty_new_x( "0" );
xpar = icalparameter_new_member( "RecurInterval" );
icalproperty_add_parameter( xprop, xpar );
icalcomponent_add_property( icalevent, xprop );
//
xprop = icalproperty_new_x( "days" );
xpar = icalparameter_new_member( "RepeatUnits" );
icalproperty_add_parameter( xprop, xpar );
icalcomponent_add_property( icalevent, xprop );
//
xprop = icalproperty_new_x( "FALSE" );
xpar = icalparameter_new_member( "RepeatForever" );
icalproperty_add_parameter( xprop, xpar );
icalcomponent_add_property( icalevent, xprop );
//
2001-12-21 01:16:08 +03:00
struct icaltriggertype trig;
icalcomponent *valarm = icalcomponent_new_valarm();
trig.time.year = trig.time.month = trig.time.day = trig.time.hour = trig.time.minute = trig.time.second = 0;
trig.duration.is_neg = true;
trig.duration.days = trig.duration.weeks = trig.duration.hours = trig.duration.seconds = 0;
trig.duration.minutes = 1;
xprop = icalproperty_new_trigger( trig );
icalcomponent_add_property( valarm, xprop );
icalcomponent_add_component( icalevent, valarm );
2001-11-07 22:18:46 +03:00
icalfileset_add_component(stream,icalcalendar);
icalfileset_commit(stream);
#ifdef ICAL_DEBUG
2001-11-07 22:18:46 +03:00
printf("Appended Event\n");
#endif
2001-11-07 22:18:46 +03:00
icalcomponent *fetchedcal = icalfileset_fetch( stream, uidstr );
assert( fetchedcal != 0 );
icalcomponent *fetchedevent = icalcomponent_get_first_component( fetchedcal,ICAL_VEVENT_COMPONENT);
assert( fetchedevent != 0 );
#ifdef ICAL_DEBUG
2001-11-07 22:18:46 +03:00
printf("Fetched Event\n");
#endif
2001-11-07 22:18:46 +03:00
icalproperty *tmpprop;
//
tmpprop = icalcomponent_get_first_property( fetchedevent, ICAL_UID_PROPERTY );
assert( tmpprop != 0 );
#ifdef ICAL_DEBUG
printf("id: %s\n", icalproperty_get_uid( tmpprop ) );
#endif
2001-11-07 22:18:46 +03:00
//
tmpprop = icalcomponent_get_first_property( fetchedevent, ICAL_SUMMARY_PROPERTY );
assert( tmpprop != 0 );
#ifdef ICAL_DEBUG
printf("Title: %s\n", icalproperty_get_summary( tmpprop ) );
#endif
2001-11-07 22:18:46 +03:00
//
tmpprop = icalcomponent_get_first_property( fetchedevent, ICAL_CATEGORIES_PROPERTY );
assert( tmpprop != 0 );
#ifdef ICAL_DEBUG
printf("Category: %s\n", icalproperty_get_categories( tmpprop ) );
#endif
2001-11-07 22:18:46 +03:00
//
tmpprop = icalcomponent_get_first_property( fetchedevent, ICAL_DESCRIPTION_PROPERTY );
assert( tmpprop != 0 );
#ifdef ICAL_DEBUG
printf("Description: %s\n", icalproperty_get_description( tmpprop ) );
#endif
2001-11-07 22:18:46 +03:00
//
tmpprop = icalcomponent_get_first_property( fetchedevent, ICAL_LOCATION_PROPERTY );
assert( tmpprop != 0 );
#ifdef ICAL_DEBUG
printf("Location: %s\n", icalproperty_get_location( tmpprop ) );
#endif
2001-11-07 22:18:46 +03:00
//
tmpprop = icalcomponent_get_first_property( fetchedevent, ICAL_CLASS_PROPERTY );
assert( tmpprop != 0 );
#ifdef ICAL_DEBUG
printf("Class: %s\n", (icalproperty_get_class( tmpprop ) == ICAL_CLASS_PUBLIC) ? "PUBLIC" : "PRIVATE" );
#endif
2001-11-07 22:18:46 +03:00
//
tmpprop = icalcomponent_get_first_property( fetchedevent, ICAL_DTSTART_PROPERTY );
assert( tmpprop != 0 );
start = icalproperty_get_dtstart( tmpprop );
#ifdef ICAL_DEBUG
2001-11-07 22:18:46 +03:00
printf("Start: %d-%d-%d %d:%d\n", start.year, start.month, start.day, start.hour, start.minute );
#endif
2001-11-07 22:18:46 +03:00
//
tmpprop = icalcomponent_get_first_property( fetchedevent, ICAL_DTEND_PROPERTY );
assert( tmpprop != 0 );
end = icalproperty_get_dtstart( tmpprop );
#ifdef ICAL_DEBUG
2001-11-07 22:18:46 +03:00
printf("End: %d-%d-%d %d:%d\n", end.year, end.month, end.day, end.hour, end.minute );
#endif
2001-11-07 22:18:46 +03:00
//
for( tmpprop = icalcomponent_get_first_property( fetchedevent, ICAL_X_PROPERTY );
tmpprop != 0 ;
tmpprop = icalcomponent_get_next_property( fetchedevent, ICAL_X_PROPERTY ) ) {
icalparameter *tmppar = icalproperty_get_first_parameter( tmpprop, ICAL_MEMBER_PARAMETER );
#ifdef ICAL_DEBUG
2001-11-07 22:18:46 +03:00
printf("%s: %s\n", icalparameter_get_member( tmppar ), icalproperty_get_value_as_string( tmpprop ) );
#endif
2001-11-07 22:18:46 +03:00
}
icalcomponent *newcomp = icalcomponent_new_clone( fetchedcal );
assert( newcomp != 0 );
icalcomponent *newevent = icalcomponent_get_first_component( newcomp, ICAL_VEVENT_COMPONENT );
assert( newevent != 0 );
tmpprop = icalcomponent_get_first_property( newevent, ICAL_SUMMARY_PROPERTY );
assert( tmpprop != 0 );
icalproperty_set_summary( tmpprop, "LUNCH AND LEARN TIME" );
// icalfileset_modify( stream, fetchedcal, newcomp );
icalfileset_remove_component( stream, fetchedcal );
icalfileset_add_component( stream, newcomp );
icalcomponent_free( fetchedcal );
//
icalfileset_commit(stream);
#ifdef ICAL_DEBUG
2001-11-07 22:18:46 +03:00
printf("Event updated\n");
printf( "New Title: %s\n", icalproperty_get_summary( tmpprop ) );
#endif
2001-11-07 22:18:46 +03:00
fetchedcal = icalfileset_fetch( stream, uidstr );
assert( fetchedcal != 0 );
icalfileset_remove_component( stream, fetchedcal );
#ifdef ICAL_DEBUG
2001-11-07 22:18:46 +03:00
printf("Removed Event\n");
#endif
2001-11-07 22:18:46 +03:00
icalfileset_free(stream);
return NS_OK;
}
/**
*
* SetServer
*
* DESCRIPTION: Sets the Calendar address string of the server.
* PARAMETERS:
* str - The calendar address string
*
* RETURN
* None
*/
NS_IMETHODIMP
oeICalImpl::SetServer( const char *str ) {
#ifdef ICAL_DEBUG
2001-12-21 01:16:08 +03:00
printf( "oeICalImpl::SetServer(%s)\n", str );
2001-11-07 22:18:46 +03:00
#endif
strcpy( serveraddr, str );
2001-12-21 01:16:08 +03:00
icalfileset *stream;
stream = icalfileset_new(serveraddr);
assert(stream != 0);
icalcomponent *comp;
for( comp = icalfileset_get_first_component( stream );
comp != 0;
comp = icalfileset_get_next_component( stream ) ) {
nsresult rv;
oeICalEventImpl *icalevent;
if( NS_FAILED( rv = NS_NewICalEvent((oeIICalEvent**) &icalevent ))) {
return rv;
}
icalevent->ParseIcalComponent( comp );
m_eventlist.Add( icalevent );
}
icalfileset_free(stream);
for( int i=0; i<m_observerlist.size(); i++ ) {
m_observerlist[i]->OnLoad();
}
SetupAlarmManager();
return NS_OK;
}
/* attribute boolean batchMode; */
NS_IMETHODIMP oeICalImpl::GetBatchMode(PRBool *aBatchMode)
{
*aBatchMode = m_batchMode;
return NS_OK;
}
NS_IMETHODIMP oeICalImpl::SetBatchMode(PRBool aBatchMode)
{
bool newBatchMode = aBatchMode;
if( m_batchMode != newBatchMode )
{
m_batchMode = aBatchMode;
for( int i=0; i<m_observerlist.size(); i++ )
{
if( m_batchMode )
m_observerlist[i]->OnStartBatch();
else
m_observerlist[i]->OnEndBatch();
}
}
return NS_OK;
2001-11-07 22:18:46 +03:00
}
2001-12-21 01:16:08 +03:00
2001-11-07 22:18:46 +03:00
/**
*
* AddEvent
*
* DESCRIPTION: Adds an event
*
* PARAMETERS:
* icalcalendar - The XPCOM component representing an event
* retid - Place to store the returned id
*
* RETURN
* None
*/
2001-12-21 01:16:08 +03:00
NS_IMETHODIMP oeICalImpl::AddEvent(oeIICalEvent *icalevent, PRInt32 *retid)
2001-11-07 22:18:46 +03:00
{
#ifdef ICAL_DEBUG
2001-12-21 01:16:08 +03:00
printf( "oeICalImpl::AddEvent()\n" );
2001-11-07 22:18:46 +03:00
#endif
2001-12-21 01:16:08 +03:00
unsigned long newid;
2001-11-07 22:18:46 +03:00
icalfileset *stream;
icalcomponent *vcalendar,*fetchedcal;
char uidstr[10];
*retid = 0;
stream = icalfileset_new(serveraddr);
assert(stream != 0);
do {
2001-12-21 01:16:08 +03:00
newid = 900000000 + ((rand()%0x4ff) << 16) + rand()%0xFFFF;
sprintf( uidstr, "%lu", newid );
2001-11-07 22:18:46 +03:00
} while ( (fetchedcal = icalfileset_fetch( stream, uidstr )) != 0 );
2001-12-21 01:16:08 +03:00
((oeICalEventImpl *)icalevent)->SetId( newid );
vcalendar = ((oeICalEventImpl *)icalevent)->AsIcalComponent();
icalfileset_add_component( stream, vcalendar );
*retid = newid;
2001-11-07 22:18:46 +03:00
icalfileset_commit( stream );
icalfileset_free( stream );
2001-12-21 01:16:08 +03:00
icalevent->AddRef();
m_eventlist.Add( icalevent );
for( int i=0; i<m_observerlist.size(); i++ ) {
m_observerlist[i]->OnAddItem( icalevent );
}
SetupAlarmManager();
2001-11-07 22:18:46 +03:00
return NS_OK;
}
/**
*
2001-12-21 01:16:08 +03:00
* ModifyEvent
2001-11-07 22:18:46 +03:00
*
* DESCRIPTION: Updates an event
*
* PARAMETERS:
* icalcalendar - The XPCOM component representing an event
* retid - Place to store the returned id
*
* RETURN
* None
*/
2001-12-21 01:16:08 +03:00
NS_IMETHODIMP oeICalImpl::ModifyEvent(oeIICalEvent *icalevent, PRInt32 *retid)
2001-11-07 22:18:46 +03:00
{
#ifdef ICAL_DEBUG
2001-12-21 01:16:08 +03:00
printf( "oeICalImpl::ModifyEvent()\n" );
2001-11-07 22:18:46 +03:00
#endif
unsigned long id;
icalfileset *stream;
2001-12-21 01:16:08 +03:00
icalcomponent *vcalendar;
2001-11-07 22:18:46 +03:00
char uidstr[10];
stream = icalfileset_new(serveraddr);
assert(stream != 0);
2001-12-21 01:16:08 +03:00
((oeICalEventImpl *)icalevent)->GetId( (PRUint32 *)&id );
vcalendar = ((oeICalEventImpl *)icalevent)->AsIcalComponent();
2001-11-07 22:18:46 +03:00
sprintf( uidstr, "%lu", id );
2001-12-21 01:16:08 +03:00
2001-11-07 22:18:46 +03:00
icalcomponent *fetchedcal = icalfileset_fetch( stream, uidstr );
2001-12-21 01:16:08 +03:00
oeICalEventImpl *oldevent;
2001-11-07 22:18:46 +03:00
if( fetchedcal ) {
icalfileset_remove_component( stream, fetchedcal );
2001-12-21 01:16:08 +03:00
nsresult rv;
if( NS_FAILED( rv = NS_NewICalEvent((oeIICalEvent**) &oldevent ))) {
return rv;
}
oldevent->ParseIcalComponent( fetchedcal );
2001-11-07 22:18:46 +03:00
icalcomponent_free( fetchedcal );
}
2001-12-21 01:16:08 +03:00
icalfileset_add_component( stream, vcalendar );
2001-11-07 22:18:46 +03:00
*retid = id;
icalfileset_commit( stream );
icalfileset_free(stream);
2001-12-21 01:16:08 +03:00
for( int i=0; i<m_observerlist.size(); i++ ) {
m_observerlist[i]->OnModifyItem( icalevent, oldevent );
}
oldevent->Release();
SetupAlarmManager();
2001-11-07 22:18:46 +03:00
return NS_OK;
}
/**
*
* FetchEvent
*
* DESCRIPTION: Fetches an event
*
* PARAMETERS:
* ev - Place to store the XPCOM representation of the fetched event
* id - Id of the event to fetch
*
* RETURN
* None
*/
NS_IMETHODIMP oeICalImpl::FetchEvent(PRInt32 id, oeIICalEvent **ev)
{
2001-12-21 01:16:08 +03:00
#ifdef ICAL_DEBUG_ALL
printf( "oeICalImpl::FetchEvent()\n" );
2001-11-07 22:18:46 +03:00
#endif
2001-12-21 01:16:08 +03:00
oeIICalEvent* event = m_eventlist.GetEventById( id );
2002-01-04 22:27:45 +03:00
if( event != nsnull ) {
2001-12-21 01:16:08 +03:00
event->AddRef();
2001-11-07 22:18:46 +03:00
}
2001-12-21 01:16:08 +03:00
*ev = event;
2001-11-07 22:18:46 +03:00
return NS_OK;
}
/**
*
2001-12-21 01:16:08 +03:00
* DeleteEvent
2001-11-07 22:18:46 +03:00
*
2001-12-21 01:16:08 +03:00
* DESCRIPTION: Deletes an event
2001-11-07 22:18:46 +03:00
*
* PARAMETERS:
2001-12-21 01:16:08 +03:00
* id - Id of the event to delete
2001-11-07 22:18:46 +03:00
*
* RETURN
* None
*/
NS_IMETHODIMP
2001-12-21 01:16:08 +03:00
oeICalImpl::DeleteEvent( PRInt32 id )
2001-11-07 22:18:46 +03:00
{
#ifdef ICAL_DEBUG
2001-12-21 01:16:08 +03:00
printf( "oeICalImpl::DeleteEvent( %lu )\n", id );
2001-11-07 22:18:46 +03:00
#endif
icalfileset *stream;
2001-12-21 01:16:08 +03:00
char uidstr[10];
2001-11-07 22:18:46 +03:00
stream = icalfileset_new(serveraddr);
assert(stream != 0);
2001-12-21 01:16:08 +03:00
sprintf( uidstr, "%lu", id );
icalcomponent *fetchedcal = icalfileset_fetch( stream, uidstr );
2001-11-07 22:18:46 +03:00
2001-12-21 01:16:08 +03:00
if( fetchedcal == 0 ) {
icalfileset_free(stream);
#ifdef ICAL_DEBUG
printf( "WARNING Event not found.\n" );
#endif
return NS_OK;
}
icalfileset_remove_component( stream, fetchedcal );
icalcomponent_free( fetchedcal );
icalfileset_commit( stream );
icalfileset_free(stream);
oeIICalEvent *icalevent;
FetchEvent( id , &icalevent );
2001-11-07 22:18:46 +03:00
2001-12-21 01:16:08 +03:00
m_eventlist.Remove( id );
for( int i=0; i<m_observerlist.size(); i++ ) {
m_observerlist[i]->OnDeleteItem( icalevent );
}
2001-11-07 22:18:46 +03:00
2001-12-21 01:16:08 +03:00
icalevent->Release();
2001-11-07 22:18:46 +03:00
2001-12-21 01:16:08 +03:00
SetupAlarmManager();
return NS_OK;
}
NS_IMETHODIMP
oeICalImpl::GetAllEvents(nsISimpleEnumerator **resultList )
{
#ifdef ICAL_DEBUG_ALL
printf( "oeICalImpl::GetAllEvents()\n" );
#endif
nsCOMPtr<oeEventEnumerator> eventEnum = new oeEventEnumerator();
if (!eventEnum)
return NS_ERROR_OUT_OF_MEMORY;
eventEnum->Init( this );
EventList *tmplistptr = &m_eventlist;
while( tmplistptr ) {
if( tmplistptr->event ) {
PRUint32 tmpid;
tmplistptr->event->GetId( &tmpid );
eventEnum->AddEventId( tmpid );
}
tmplistptr = tmplistptr->next;
2001-11-07 22:18:46 +03:00
}
2001-12-21 01:16:08 +03:00
// bump ref count
return eventEnum->QueryInterface(NS_GET_IID(nsISimpleEnumerator), (void **)resultList);
2001-11-07 22:18:46 +03:00
}
NS_IMETHODIMP
2001-12-21 01:16:08 +03:00
oeICalImpl::SearchBySQL( const char *sqlstr, nsISimpleEnumerator **resultList )
2001-11-07 22:18:46 +03:00
{
#ifdef ICAL_DEBUG
2001-12-21 01:16:08 +03:00
printf( "oeICalImpl::SearchBySQL()\n" );
2001-11-07 22:18:46 +03:00
#endif
icalgauge* gauge;
icalfileset *stream;
2001-12-21 01:16:08 +03:00
nsCOMPtr<oeEventEnumerator> eventEnum = new oeEventEnumerator( );
if (!eventEnum)
return NS_ERROR_OUT_OF_MEMORY;
eventEnum->Init( this );
2001-11-07 22:18:46 +03:00
stream = icalfileset_new(serveraddr);
assert(stream != 0);
gauge = icalgauge_new_from_sql( (char *)sqlstr );
assert( gauge != 0 );
icalfileset_select( stream, gauge );
icalcomponent *comp;
for( comp = icalfileset_get_first_component( stream );
comp != 0;
comp = icalfileset_get_next_component( stream ) ) {
icalcomponent *vevent = icalcomponent_get_first_component( comp, ICAL_VEVENT_COMPONENT );
assert( vevent != 0);
icalproperty *prop = icalcomponent_get_first_property( vevent, ICAL_UID_PROPERTY );
assert( prop != 0);
eventEnum->AddEventId( atol( icalproperty_get_uid( prop ) ) );
2001-11-07 22:18:46 +03:00
}
icalfileset_free(stream);
2001-12-21 01:16:08 +03:00
// bump ref count
return eventEnum->QueryInterface(NS_GET_IID(nsISimpleEnumerator), (void **)resultList);
2001-11-07 22:18:46 +03:00
}
NS_IMETHODIMP
2001-12-21 01:16:08 +03:00
oeICalImpl::GetEventsForMonth( PRTime datems, nsISimpleEnumerator **datelist, nsISimpleEnumerator **eventlist ) {
2001-11-07 22:18:46 +03:00
#ifdef ICAL_DEBUG
2001-12-21 01:16:08 +03:00
printf( "oeICalImpl::GetEventsForMonth()\n" );
#endif
struct icaltimetype checkdate = ConvertFromPrtime( datems );
checkdate.day = 1;
checkdate.hour = 0;
checkdate.minute = 0;
checkdate.second = 0;
icaltime_adjust( &checkdate, 0, 0 , 0, -1 );
#ifdef ICAL_DEBUG_ALL
printf( "CHECKDATE: %s\n" , icaltime_as_ctime( checkdate ) );
#endif
PRTime checkdateinms = ConvertToPrtime( checkdate );
2001-12-21 01:16:08 +03:00
struct icaltimetype checkenddate = ConvertFromPrtime( datems );
checkenddate.month++;
checkenddate.day = 1;
checkenddate.hour = 0;
checkenddate.minute = 0;
checkenddate.second = 0;
checkenddate = icaltime_normalize( checkenddate );
#ifdef ICAL_DEBUG_ALL
printf( "CHECKENDDATE: %s\n" , icaltime_as_ctime( checkenddate ) );
#endif
PRTime checkenddateinms = ConvertToPrtime( checkenddate );
2001-12-21 01:16:08 +03:00
return GetEventsForRange(checkdateinms ,checkenddateinms ,datelist ,eventlist );
}
NS_IMETHODIMP
oeICalImpl::GetEventsForWeek( PRTime datems, nsISimpleEnumerator **datelist, nsISimpleEnumerator **eventlist ) {
#ifdef ICAL_DEBUG
printf( "oeICalImpl::GetEventsForWeek()\n" );
#endif
struct icaltimetype checkdate = ConvertFromPrtime( datems );
checkdate.hour = 0;
checkdate.minute = 0;
checkdate.second = 0;
icaltime_adjust( &checkdate, 0, 0 , 0, -1 );
PRTime checkdateinms = ConvertToPrtime( checkdate );
2001-12-21 01:16:08 +03:00
struct icaltimetype checkenddate = ConvertFromPrtime( datems );
checkenddate.hour = 0;
checkenddate.minute = 0;
checkenddate.second = 0;
icaltime_adjust( &checkenddate, 7, 0 , 0, 0 );
PRTime checkenddateinms = ConvertToPrtime( checkenddate );
2001-12-21 01:16:08 +03:00
return GetEventsForRange(checkdateinms ,checkenddateinms ,datelist ,eventlist );
}
NS_IMETHODIMP
oeICalImpl::GetEventsForDay( PRTime datems, nsISimpleEnumerator **datelist, nsISimpleEnumerator **eventlist ) {
#ifdef ICAL_DEBUG
printf( "oeICalImpl::GetEventsForDay()\n" );
#endif
struct icaltimetype checkdate = ConvertFromPrtime( datems );
checkdate.hour = 0;
checkdate.minute = 0;
checkdate.second = 0;
icaltime_adjust( &checkdate, 0, 0, 0, -1 );
PRTime checkdateinms = ConvertToPrtime( checkdate );
2001-12-21 01:16:08 +03:00
struct icaltimetype checkenddate = ConvertFromPrtime( datems );
checkenddate.hour = 0;
checkenddate.minute = 0;
checkenddate.second = 0;
icaltime_adjust( &checkenddate, 1, 0, 0, 0 );
PRTime checkenddateinms = ConvertToPrtime( checkenddate );
2001-12-21 01:16:08 +03:00
return GetEventsForRange(checkdateinms ,checkenddateinms ,datelist ,eventlist );
}
NS_IMETHODIMP
oeICalImpl::GetEventsForRange( PRTime checkdateinms, PRTime checkenddateinms, nsISimpleEnumerator **datelist, nsISimpleEnumerator **eventlist ) {
#ifdef ICAL_DEBUG_ALL
printf( "oeICalImpl::GetEventsForRange()\n" );
2001-11-07 22:18:46 +03:00
#endif
2001-12-21 01:16:08 +03:00
nsCOMPtr<oeEventEnumerator> eventEnum = new oeEventEnumerator( );
2001-11-07 22:18:46 +03:00
2001-12-21 01:16:08 +03:00
if (!eventEnum)
return NS_ERROR_OUT_OF_MEMORY;
2001-11-07 22:18:46 +03:00
2001-12-21 01:16:08 +03:00
nsCOMPtr<oeDateEnumerator> dateEnum = new oeDateEnumerator( );
2001-11-07 22:18:46 +03:00
2001-12-21 01:16:08 +03:00
if (!dateEnum)
return NS_ERROR_OUT_OF_MEMORY;
eventEnum->Init( this );
EventList *tmplistptr = &m_eventlist;
int i=0;
while( tmplistptr ) {
if( tmplistptr->event ) {
oeIICalEvent* tmpevent = tmplistptr->event;
PRBool isvalid;
PRTime checkdateloop = checkdateinms;
tmpevent->GetNextRecurrence( checkdateloop, &checkdateloop, &isvalid );
while( isvalid && LL_CMP( checkdateloop, <, checkenddateinms ) ) {
2001-12-21 01:16:08 +03:00
PRUint32 tmpid;
tmpevent->GetId( &tmpid );
eventEnum->AddEventId( tmpid );
dateEnum->AddDate( checkdateloop );
tmpevent->GetNextRecurrence( checkdateloop, &checkdateloop, &isvalid );
}
}
tmplistptr = tmplistptr->next;
i++;
2001-11-07 22:18:46 +03:00
}
2001-12-21 01:16:08 +03:00
eventEnum->QueryInterface(NS_GET_IID(nsISimpleEnumerator), (void **)eventlist);
dateEnum->QueryInterface(NS_GET_IID(nsISimpleEnumerator), (void **)datelist);
return NS_OK;
}
NS_IMETHODIMP
oeICalImpl::GetNextNEvents( PRTime datems, PRInt32 maxcount, nsISimpleEnumerator **datelist, nsISimpleEnumerator **eventlist ) {
#ifdef ICAL_DEBUG
printf( "oeICalImpl::GetNextNEvents()\n" );
#endif
2001-11-07 22:18:46 +03:00
2001-12-21 01:16:08 +03:00
nsCOMPtr<oeEventEnumerator> eventEnum = new oeEventEnumerator( );
if (!eventEnum)
return NS_ERROR_OUT_OF_MEMORY;
nsCOMPtr<oeDateEnumerator> dateEnum = new oeDateEnumerator( );
if (!dateEnum)
return NS_ERROR_OUT_OF_MEMORY;
eventEnum->Init( this );
struct icaltimetype checkdate = ConvertFromPrtime( datems );
checkdate.hour = 0;
checkdate.minute = 0;
checkdate.second = 0;
icaltime_adjust( &checkdate, 0, 0, 0, -1 );
PRTime checkdateinms = ConvertToPrtime( checkdate );
2001-12-21 01:16:08 +03:00
EventList *tmplistptr = &m_eventlist;
int i=0,count=0;
while( tmplistptr ) {
if( tmplistptr->event ) {
oeIICalEvent* tmpevent = tmplistptr->event;
PRBool isvalid;
PRTime checkdateloop = checkdateinms;
tmpevent->GetNextRecurrence( checkdateloop, &checkdateloop, &isvalid );
while( isvalid ) {
PRUint32 tmpid;
tmpevent->GetId( &tmpid );
eventEnum->AddEventId( tmpid );
dateEnum->AddDate( checkdateloop );
count++;
if( count == maxcount )
break;
tmpevent->GetNextRecurrence( checkdateloop, &checkdateloop, &isvalid );
}
}
tmplistptr = tmplistptr->next;
i++;
}
eventEnum->QueryInterface(NS_GET_IID(nsISimpleEnumerator), (void **)eventlist);
dateEnum->QueryInterface(NS_GET_IID(nsISimpleEnumerator), (void **)datelist);
return NS_OK;
}
NS_IMETHODIMP
oeICalImpl::AddObserver(oeIICalObserver *observer)
{
#ifdef ICAL_DEBUG
printf( "oeICalImpl::AddObserver()\n" );
#endif
if( observer ) {
observer->AddRef();
m_observerlist.push_back( observer );
observer->OnLoad();
}
return NS_OK;
}
void AlarmTimerCallback(nsITimer *aTimer, void *aClosure)
{
#ifdef ICAL_DEBUG
printf( "AlarmTimerCallback\n" );
#endif
oeICalImpl *icallib = (oeICalImpl *)aClosure;
icallib->SetupAlarmManager();
}
void oeICalImpl::SetupAlarmManager() {
#ifdef ICAL_DEBUG
printf( "oeICalImpl::SetupAlarmManager()\n" );
#endif
PRTime todayinms = PR_Now();
PRInt64 usecpermsec;
LL_I2L( usecpermsec, PR_USEC_PER_MSEC );
LL_DIV( todayinms, todayinms, usecpermsec );
2001-12-21 01:16:08 +03:00
icaltimetype now = ConvertFromPrtime( todayinms );
icaltimetype nextalarm = icaltime_null_time();
EventList *tmplistptr = &m_eventlist;
while( tmplistptr ) {
oeICalEventImpl *event = (oeICalEventImpl *)(tmplistptr->event);
if( event ) {
icaltimetype begin=icaltime_null_time();
begin.year = 1970; begin.month=1; begin.day=1;
icaltimetype alarmtime = begin;
do {
alarmtime = event->GetNextAlarmTime( alarmtime );
if( icaltime_is_null_time( alarmtime ) )
break;
if( icaltime_compare( alarmtime, now ) <= 0 ) {
#ifdef ICAL_DEBUG
2001-12-21 01:16:08 +03:00
printf( "ALARM WENT OFF: %s\n", icaltime_as_ctime( alarmtime ) );
#endif
2001-12-21 01:16:08 +03:00
for( int i=0; i<m_observerlist.size(); i++ ) {
m_observerlist[i]->OnAlarm( event );
}
}
else {
if( icaltime_is_null_time( nextalarm ) )
nextalarm = alarmtime;
else if( icaltime_compare( nextalarm, alarmtime ) > 0 )
nextalarm = alarmtime;
break;
}
} while ( 1 );
}
tmplistptr = tmplistptr->next;
}
if( m_alarmtimer && ( m_alarmtimer->GetDelay() != 0 ) )
m_alarmtimer->Cancel();
if( !icaltime_is_null_time( nextalarm ) ) {
#ifdef ICAL_DEBUG
2001-12-21 01:16:08 +03:00
printf( "NEXT ALARM IS: %s\n", icaltime_as_ctime( nextalarm ) );
#endif
2001-12-21 01:16:08 +03:00
time_t timediff = icaltime_as_timet( nextalarm ) - icaltime_as_timet( now );
m_alarmtimer->Init( AlarmTimerCallback, this, timediff*1000, NS_PRIORITY_NORMAL, NS_TYPE_ONE_SHOT );
}
2001-11-07 22:18:46 +03:00
}
/**
*
* SnoozeEvent
*
* DESCRIPTION: Deactivates an alarm of an event
*
* PARAMETERS:
* id - Id of the event to deactivet its alarm
*
* RETURN
* None
*/
2001-12-21 01:16:08 +03:00
/*
2001-11-07 22:18:46 +03:00
NS_IMETHODIMP
oeICalImpl::SnoozeEvent( PRInt32 id )
{
2001-12-21 01:16:08 +03:00
cal_open(serveraddr, 0);
2001-11-07 22:18:46 +03:00
if( 0 ) {
printf("cal_open() failed - SnoozeEvent\n");
return 0;
}
if (!cal_snooze(id)) {
printf("cal_snooze() failed\n");
return 0;
}
cal_close(0);
if ( 0 ) {
printf("cal_close() failed\n");
return 0;
}
2001-12-21 01:16:08 +03:00
2001-11-07 22:18:46 +03:00
return NS_OK;
}
2001-12-21 01:16:08 +03:00
*/
2001-11-07 22:18:46 +03:00
2001-12-21 01:16:08 +03:00
/*
2001-11-07 22:18:46 +03:00
void GetNextRecurrence( icalcomponent *vevent, PRInt16 year, PRInt16 month, PRInt16 day, struct icaldurationtype before, char *aRetVal ) {
struct icaltimetype start, estart, next;
struct icalrecurrencetype recur;
icalrecur_iterator* ritr;
start.year = year; start.month = month; start.day = day;
start.hour = 0; start.minute = 0; start.second = 0;
icalproperty *dtstart = icalcomponent_get_first_property( vevent, ICAL_DTSTART_PROPERTY );
if( dtstart != 0 ) {
estart = icalproperty_get_dtstart( dtstart );
start.hour = estart.hour; start.minute = estart.minute; start.second = estart.second;
}
aRetVal[0]= 0;
icalproperty *prop = icalcomponent_get_first_property( vevent, ICAL_RRULE_PROPERTY );
if ( prop != 0) {
recur = icalproperty_get_rrule(prop);
ritr = icalrecur_iterator_new(recur,estart);
for(next = icalrecur_iterator_next(ritr);
!icaltime_is_null_time(next);
next = icalrecur_iterator_next(ritr)){
struct icaltimetype tmpnext = icaltime_add( next, before );
if( icaltime_compare( tmpnext , start ) >= 0 ) {
sprintf( aRetVal, "%04d%02d%02dT%02d%02d%02d" , next.year, next.month, next.day, next.hour, next.minute, next.second );
break;
}
}
}
2001-12-21 01:16:08 +03:00
}*/
2001-11-07 22:18:46 +03:00
/**
*
* SearchAlarm
*
* DESCRIPTION: Searches for events having active alarms
*
* PARAMETERS:
* whenstr - String representation of the date-time reference of the alarm
* resultstr - Place to store the string representation of the id list
*
* RETURN
* None
*/
2001-12-21 01:16:08 +03:00
/*
2001-11-07 22:18:46 +03:00
NS_IMETHODIMP
oeICalImpl::SearchAlarm( PRInt16 startyear, PRInt16 startmonth, PRInt16 startday,
PRInt16 starthour, PRInt16 startmin,
2001-12-21 01:16:08 +03:00
nsISimpleEnumerator **resultList )
2001-11-07 22:18:46 +03:00
{
#ifdef ICAL_DEBUG
2001-12-21 01:16:08 +03:00
printf( "oeICalImpl::SearchAlarm()\n" );
2001-11-07 22:18:46 +03:00
#endif
icalfileset *stream;
icaltimetype check,checkend;
icaldurationtype checkduration;
icalproperty *prop;
2001-12-21 01:16:08 +03:00
nsCOMPtr<oeEventEnumerator> eventEnum = new oeEventEnumerator( );
if (!eventEnum)
return NS_ERROR_OUT_OF_MEMORY;
eventEnum->Init( this );
2001-11-07 22:18:46 +03:00
check.year = startyear; check.month = startmonth; check.day = startday;
check.hour = starthour; check.minute = startmin; check.second = 0;
printf( "CHECK: %d-%d-%d %d:%d:%d\n", check.year, check.month, check.day, check.hour, check.minute, check.second );
checkduration.is_neg = false;
checkduration.weeks = checkduration.days = checkduration.minutes = checkduration.seconds = 0;
checkduration.hours = 24;
checkend = icaltime_add( check, checkduration );
printf( "CHECKEND: %d-%d-%d %d:%d:%d\n", checkend.year, checkend.month, checkend.day, checkend.hour, checkend.minute, checkend.second );
stream = icalfileset_new(serveraddr);
assert(stream != 0);
icalcomponent *comp;
for( comp = icalfileset_get_first_component( stream );
comp != 0;
comp = icalfileset_get_next_component( stream ) ) {
icalcomponent *vevent = icalcomponent_get_first_component( comp, ICAL_VEVENT_COMPONENT );
assert( vevent != 0);
icalcomponent *valarm = icalcomponent_get_first_component( vevent, ICAL_VALARM_COMPONENT );
if( valarm ){
struct icaltimetype start;
//get duration
prop = icalcomponent_get_first_property( valarm, ICAL_TRIGGER_PROPERTY );
assert( prop != 0);
struct icaltriggertype trig;
trig = icalproperty_get_trigger( prop );
prop = icalcomponent_get_first_property( vevent, ICAL_RRULE_PROPERTY );
if ( prop != 0) {
char result[80];
GetNextRecurrence( vevent, check.year, check.month, check.day , trig.duration, result );
start = icaltime_from_string( result );
printf( "RECUR START: %d-%d-%d %d:%d:%d\n", start.year, start.month, start.day, start.hour, start.minute, start.second );
} else {
//get dtstart
prop = icalcomponent_get_first_property( vevent, ICAL_DTSTART_PROPERTY );
assert( prop != 0);
start = icalproperty_get_dtstart( prop );
printf( "START: %d-%d-%d %d:%d:%d\n", start.year, start.month, start.day, start.hour, start.minute, start.second );
}
start = icaltime_add( start, trig.duration );
printf( "TRIGGER: %d-%d-%d %d:%d:%d\n", start.year, start.month, start.day, start.hour, start.minute, start.second );
if( icaltime_compare( start, check ) >= 0 && icaltime_compare( start, checkend ) < 0 ) {
prop = icalcomponent_get_first_property( vevent, ICAL_UID_PROPERTY );
assert( prop != 0);
2001-12-21 01:16:08 +03:00
eventEnum->AddEventId( atol( icalproperty_get_value_as_string( prop ) ) );
2001-11-07 22:18:46 +03:00
}
}
}
icalfileset_free(stream);
2001-12-21 01:16:08 +03:00
// bump ref count
return eventEnum->QueryInterface(NS_GET_IID(nsISimpleEnumerator), (void **)resultList);
}*/