ical_dezonify: rearranged code and added log output
authorArt Cancro <ajc@citadel.org>
Wed, 12 Jul 2006 03:47:47 +0000 (03:47 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 12 Jul 2006 03:47:47 +0000 (03:47 +0000)
to determine whether a timestamp is either (1) already UTC, (2) not UTC
but included a time zone to convert from, or (3) not UTC but no timezone
specified.  Still need to handle (3) better, but we need to find a way
to determine the current timezone.

citadel/ical_dezonify.c

index ccc46d4316960b04a6da35a35ac5523b585c010c..318a2ef631d5c2d7d4356755e823e8c5be51da83 100644 (file)
@@ -79,14 +79,23 @@ void ical_dezonify_backend(icalcomponent *cal,
                return;
        }
 
-       /* Do the conversion. */
-       if (t != NULL) {
-               icaltimezone_convert_time(&TheTime,
-                                       t,
-                                       icaltimezone_get_utc_timezone()
-               );
+       if (TheTime.is_utc) {
+               lprintf(CTDL_DEBUG, "                * This property is ALREADY UTC.\n");
+       }
+       else {
+               /* Do the conversion. */
+               if (t != NULL) {
+                       lprintf(CTDL_DEBUG, "                * Timezone prop found.  Converting to UTC.\n");
+                       icaltimezone_convert_time(&TheTime,
+                                               t,
+                                               icaltimezone_get_utc_timezone()
+                       );
+                       TheTime.is_utc = 1;
+               }
+               else {
+                       lprintf(CTDL_DEBUG, "                * Not UTC but no tzid found; WTF??\n");
+               }
        }
-       TheTime.is_utc = 1;
        icalproperty_remove_parameter_by_kind(prop, ICAL_TZID_PARAMETER);
 
        /* Now add the converted property back in. */
@@ -155,6 +164,8 @@ void ical_dezonify_recur(icalcomponent *cal, icalcomponent *rcal) {
 void ical_dezonify(icalcomponent *cal) {
        icalcomponent *vt = NULL;
 
+       lprintf(CTDL_DEBUG, "ical_dezonify() started\n");
+
        /* Convert all times to UTC */
        ical_dezonify_recur(cal, cal);
 
@@ -165,6 +176,7 @@ void ical_dezonify(icalcomponent *cal) {
                icalcomponent_free(vt);
        }
 
+       lprintf(CTDL_DEBUG, "ical_dezonify() completed\n");
 }