Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include "callform.hxx"
21 : #include "global.hxx"
22 : #include <tools/urlobj.hxx>
23 : #include <ucbhelper/content.hxx>
24 : #include <unotools/localfilehelper.hxx>
25 :
26 : #include <unotools/pathoptions.hxx>
27 :
28 : #include <com/sun/star/sdbc/XResultSet.hpp>
29 : #include <com/sun/star/sdbc/XRow.hpp>
30 : #include <com/sun/star/ucb/XCommandEnvironment.hpp>
31 : #include <com/sun/star/ucb/XContentAccess.hpp>
32 :
33 : #include <com/sun/star/i18n/OrdinalSuffix.hpp>
34 : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
35 : #include <comphelper/processfactory.hxx>
36 : #include <comphelper/string.hxx>
37 : #include <unotools/localedatawrapper.hxx>
38 :
39 :
40 : using namespace ::com::sun::star;
41 : using namespace ::com::sun::star::uno;
42 : using namespace ::com::sun::star::ucb;
43 :
44 :
45 0 : void ScGlobal::InitAddIns()
46 : {
47 : // multi paths separated by semicolons
48 0 : SvtPathOptions aPathOpt;
49 0 : OUString aMultiPath = aPathOpt.GetAddinPath();
50 0 : if (aMultiPath.isEmpty())
51 0 : return;
52 :
53 0 : sal_Int32 nTokens = comphelper::string::getTokenCount(aMultiPath, ';');
54 0 : for (sal_Int32 j = 0; j < nTokens; ++j)
55 : {
56 0 : OUString aPath = comphelper::string::getToken(aMultiPath, j, ';');
57 0 : if (aPath.isEmpty())
58 0 : continue;
59 :
60 : // use LocalFileHelper to convert the path to a URL that always points
61 : // to the file on the server
62 0 : OUString aUrl;
63 0 : if ( utl::LocalFileHelper::ConvertPhysicalNameToURL( aPath, aUrl ) )
64 0 : aPath = aUrl;
65 :
66 0 : INetURLObject aObj;
67 0 : aObj.SetSmartURL( aPath );
68 0 : aObj.setFinalSlash();
69 : try
70 : {
71 : ::ucbhelper::Content aCnt( aObj.GetMainURL(INetURLObject::NO_DECODE),
72 : Reference< XCommandEnvironment >(),
73 0 : comphelper::getProcessComponentContext() );
74 0 : Reference< sdbc::XResultSet > xResultSet;
75 0 : Sequence< OUString > aProps;
76 : try
77 : {
78 0 : xResultSet = aCnt.createCursor(
79 0 : aProps, ::ucbhelper::INCLUDE_DOCUMENTS_ONLY );
80 : }
81 0 : catch ( Exception& )
82 : {
83 : // ucb may throw different exceptions on failure now
84 : // no assertion if AddIn directory doesn't exist
85 : }
86 :
87 0 : if ( xResultSet.is() )
88 : {
89 0 : Reference< sdbc::XRow > xRow( xResultSet, UNO_QUERY );
90 : Reference< XContentAccess >
91 0 : xContentAccess( xResultSet, UNO_QUERY );
92 : try
93 : {
94 0 : if ( xResultSet->first() )
95 : {
96 0 : do
97 : {
98 0 : OUString aId = xContentAccess->queryContentIdentifierString();
99 0 : InitExternalFunc( aId );
100 : }
101 0 : while ( xResultSet->next() );
102 : }
103 : }
104 0 : catch ( Exception& )
105 : {
106 : OSL_FAIL( "ResultSetException caught!" );
107 0 : }
108 0 : }
109 : }
110 0 : catch ( Exception& )
111 : {
112 : OSL_FAIL( "Exception caught!" );
113 : }
114 0 : catch ( ... )
115 : {
116 : OSL_FAIL( "unexpected exception caught!" );
117 : }
118 0 : }
119 : }
120 :
121 :
122 0 : OUString ScGlobal::GetOrdinalSuffix( sal_Int32 nNumber)
123 : {
124 : try
125 : {
126 0 : if (!xOrdinalSuffix.is())
127 : {
128 0 : xOrdinalSuffix = i18n::OrdinalSuffix::create( ::comphelper::getProcessComponentContext() );
129 : }
130 0 : uno::Sequence< OUString > aSuffixes = xOrdinalSuffix->getOrdinalSuffix( nNumber,
131 0 : ScGlobal::pLocaleData->getLanguageTag().getLocale());
132 0 : if ( aSuffixes.getLength() > 0 )
133 0 : return aSuffixes[0];
134 : else
135 0 : return OUString();
136 : }
137 0 : catch ( Exception& )
138 : {
139 : OSL_FAIL( "GetOrdinalSuffix: exception caught during init" );
140 : }
141 0 : return OUString();
142 : }
143 :
144 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|