update dev300-m58
[ooovba.git] / configmgr / source / misc / requestoptions.cxx
blob6302e943c5c4289da2afebecf701475bc3e73267
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: requestoptions.cxx,v $
10 * $Revision: 1.10 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_configmgr.hxx"
34 #include "requestoptions.hxx"
35 #include "matchlocale.hxx"
36 #include "tracer.hxx"
37 #include <osl/diagnose.h>
39 namespace configmgr
41 // ---------------------------------------------------------------------------
43 rtl::OUString RequestOptions::getIsoLocale() const
45 return localehelper::makeIsoLocale( m_sLocale );
47 // ---------------------------------------------------------------------------
49 bool RequestOptions::isForAllLocales() const
51 return localehelper::designatesAllLocales( m_sLocale );
53 // ---------------------------------------------------------------------------
55 void RequestOptions::setIsoLocale(rtl::OUString const & _sLocale)
57 setLocale( localehelper::makeLocale( _sLocale ) );
59 // ---------------------------------------------------------------------------
61 void RequestOptions::setAllLocales()
63 m_sLocale = localehelper::getAnyLocale();
65 // ---------------------------------------------------------------------------
67 void RequestOptions::ensureLocaleSet()
69 if (!hasLocale())
70 m_sLocale = localehelper::getDefaultLocale();
72 // ---------------------------------------------------------------------------
74 static inline
75 sal_Int32 hashRequestLocale(com::sun::star::lang::Locale const & aLocale)
77 return aLocale.Language.hashCode() ^ aLocale.Country.hashCode();
79 // ---------------------------------------------------------------------------
81 static inline
82 sal_Int32 compareRequestLocale(com::sun::star::lang::Locale const& lhs, com::sun::star::lang::Locale const& rhs)
84 sal_Int32 nDiff = lhs.Language.compareTo(rhs.Language);
85 if (nDiff == 0)
87 nDiff = lhs.Country.compareTo(rhs.Country);
90 return nDiff;
92 // ---------------------------------------------------------------------------
94 sal_Int32 compareRequestOptions(RequestOptions const& lhs, RequestOptions const& rhs)
96 sal_Int32 nDiff = lhs.getEntity().compareTo(rhs.getEntity());
97 if (nDiff == 0)
99 nDiff = compareRequestLocale(lhs.getUnoLocale(),rhs.getUnoLocale());
102 return nDiff;
104 // ---------------------------------------------------------------------------
105 } // namespace config