blob: 57c83b27e147027ff6a1383319d5412fe464987c [file] [log] [blame]
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#ifndef _CONNECTIVITY_MACAB_UTILITIES_HXX_
#define _CONNECTIVITY_MACAB_UTILITIES_HXX_
#include <com/sun/star/util/DateTime.hpp>
#include <com/sun/star/sdbc/DataType.hpp>
#include <time.h>
#include <premac.h>
#include <Carbon/Carbon.h>
#include <AddressBook/ABAddressBookC.h>
#include <postmac.h>
namespace connectivity
{
namespace macab
{
// -------------------------------------------------------------------------
inline ::rtl::OUString CFStringToOUString(const CFStringRef sOrig)
{
/* Copied all-but directly from code by Florian Heckl in
* cws_src680_aquafilepicker01
* File was: fpicker/source/aqua/CFStringUtilities
* I only removed commented debugging lines and changed variable
* names.
*/
if (NULL == sOrig) {
return rtl::OUString();
}
CFRetain(sOrig);
CFIndex nStringLength = CFStringGetLength(sOrig);
UniChar unichars[nStringLength+1];
//'close' the string buffer correctly
unichars[nStringLength] = '\0';
CFStringGetCharacters (sOrig, CFRangeMake(0,nStringLength), unichars);
CFRelease(sOrig);
return rtl::OUString(unichars);
}
// -------------------------------------------------------------------------
inline CFStringRef OUStringToCFString(const ::rtl::OUString& aString)
{
/* Copied directly from code by Florian Heckl in
* cws_src680_aquafilepicker01
* File was: fpicker/source/aqua/CFStringUtilities
*/
CFStringRef ref = CFStringCreateWithCharacters(kCFAllocatorDefault, aString.getStr(), aString.getLength());
return ref;
}
// -------------------------------------------------------------------------
inline com::sun::star::util::DateTime CFDateToDateTime(const CFDateRef _cfDate)
{
/* Carbon can give us the time since 2001 of any CFDateRef,
* and it also stores the time since 1970 as a constant,
* basically allowing us to get the unixtime of any
* CFDateRef. From there, it is just a matter of choosing what
* we want to do with it.
*/
com::sun::star::util::DateTime nRet;
double timeSince2001 = CFDateGetAbsoluteTime(_cfDate);
time_t unixtime = timeSince2001+kCFAbsoluteTimeIntervalSince1970;
struct tm *ptm = localtime(&unixtime);
nRet.Year = ptm->tm_year+1900;
nRet.Month = ptm->tm_mon+1;
nRet.Day = ptm->tm_mday;
nRet.Hours = ptm->tm_hour;
nRet.Minutes = ptm->tm_min;
nRet.Seconds = ptm->tm_sec;
nRet.HundredthSeconds = 0;
return nRet;
}
// -------------------------------------------------------------------------
inline ::rtl::OUString fixLabel(const ::rtl::OUString _originalLabel)
{
/* Get the length, and make sure that there is actually a string
* here.
*/
if(_originalLabel.indexOf(::rtl::OUString::createFromAscii("_$!<")) == 0)
{
return _originalLabel.copy(4,_originalLabel.getLength()-8);
}
return _originalLabel;
}
// -------------------------------------------------------------------------
inline sal_Int32 ABTypeToDataType(const ABPropertyType _abType)
{
sal_Int32 dataType;
switch(_abType)
{
case kABStringProperty:
dataType = ::com::sun::star::sdbc::DataType::CHAR;
break;
case kABDateProperty:
dataType = ::com::sun::star::sdbc::DataType::TIMESTAMP;
break;
case kABIntegerProperty:
dataType = ::com::sun::star::sdbc::DataType::INTEGER;
break;
case kABRealProperty:
dataType = ::com::sun::star::sdbc::DataType::FLOAT;
break;
default:
dataType = -1;
}
return dataType;
}
void impl_throwError(sal_uInt16 _nErrorId);
}
}
#endif // _ CONNECTIVITY_MACAB_UTILITIES_HXX_