/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef _CONNECTIVITY_EVOAB_LCOLUMNALIAS_HXX_ #define _CONNECTIVITY_EVOAB_LCOLUMNALIAS_HXX_ #include #include #include #include namespace connectivity { namespace evoab { typedef enum { FIRSTNAME = 0, LASTNAME, DISPLAYNAME, NICKNAME, PRIMARYEMAIL, SECONDEMAIL, PREFERMAILFORMAT, WORKPHONE, HOMEPHONE, FAXNUMBER, PAGERNUMBER, CELLULARNUMBER, HOMEADDRESS, HOMEADDRESS2, HOMECITY, HOMESTATE, HOMEZIPCODE, HOMECOUNTRY, WORKADDRESS, WORKADDRESS2, WORKCITY, WORKSTATE, WORKZIPCODE, WORKCOUNTRY, JOBTITLE, DEPARTMENT, COMPANY, WEBPAGE1, WEBPAGE2, BIRTHYEAR, BIRTHMONTH, BIRTHDAY, NOTES, END } ProgrammaticName; class OColumnAlias { /** * m_Alias holds aliases for the evolution addressbook * column names. This member gets initialised during * creation of the connection to the driver. * m_aAlias initialises m_aAliasMap which then can be * used to find the corresponding programmatic name * when an alias is used as a query attribute. Mozilla * expects programmatic names from its clients. * * m_aAlias: vector of aliases used to initialise m_aAliasMap. * m_AliasMap: map of {alias, programmaticname} pairs. * */ private: ::std::vector< ::rtl::OUString> m_aAlias; ::std::vector< ::rtl::OUString> m_aHeadLineNames; ::std::map< ::rtl::OUString, ::rtl::OUString> m_aAliasMap; protected: ::osl::Mutex m_aMutex; public: void initialise(void); const ::std::vector< ::rtl::OUString> & getAlias(void) const; const ::std::map< ::rtl::OUString, ::rtl::OUString> & getAliasMap(void) const; void setAlias(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > &); private: void setAliasMap(void); public: OColumnAlias(void); ~OColumnAlias(void); }; } } #endif // _CONNECTIVITY_EVOAB_LCOLUMNALIAS_HXX_