When attempting to use CFLocaleGetSystem() as a parameter to
CFDateFormatterCreate(), a call to
CFDateFormatterGetAbsoluteTimeFromString() using the created
CFDateFormatterRef seemed to always return false.  However, when I changed
the code to use a locale created by CFLocaleCopyCurrent, formatting was
successful.  See my static C++ function below:

    GregorianDate GregorianDate::getFromFormat(
        const ReferenceCountedNonMutableString& date, const
ReferenceCountedNonMutableString& format) {
        
        CFAbsoluteTime absTime;
        CFGregorianDate gregDate;
        CFLocaleRef locale = CFLocaleGetSystem(); // or
CFLocaleCopyCurrent();
        
        CFDateFormatterRef dateFormatter = CFDateFormatterCreate(
           kCFAllocatorDefault, locale, kCFDateFormatterNoStyle,
kCFDateFormatterNoStyle);
        
        CFDateFormatterSetFormat(dateFormatter, format.getAsCFStringRef());
        CFDateFormatterSetProperty(dateFormatter,kCFDateFormatterIsLenient,
kCFBooleanTrue);   
        
        Boolean success =
CFDateFormatterGetAbsoluteTimeFromString(dateFormatter,
date.getAsCFStringRef(), NULL, &absTime);
        
        // return an invalid date
        if (!success)
        {
            return GregorianDate(0,0,0);
        }
        
        gregDate = CFAbsoluteTimeGetGregorianDate(absTime, NULL);
        
        CFRelease(dateFormatter);
        // CFRelease(locale);
   
        return GregorianDate(gregDate);
    } 


The documentation states CFLocaleGetSystem returns "the root, canonical
locale", which "contains fixed backstop settings for all locale
information".  Clearly, this appears to be something different from the
current user locale.  My question is: is this a valid locale for anything?
 What is its use-case?

Thanks in advance!
Mark

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to