scripting/stringresource: create instances with uno constructors
See tdf#74608 for motivation. Change-Id: I3ad9af6cff62ee822ac5f0cfd4da12eb36bfb50f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98739 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
This commit is contained in:
parent
244de1fc0f
commit
fd5531534d
@ -18,14 +18,17 @@
|
|||||||
-->
|
-->
|
||||||
|
|
||||||
<component loader="com.sun.star.loader.SharedLibrary" environment="@CPPU_ENV@"
|
<component loader="com.sun.star.loader.SharedLibrary" environment="@CPPU_ENV@"
|
||||||
prefix="stringresource" xmlns="http://openoffice.org/2010/uno-components">
|
xmlns="http://openoffice.org/2010/uno-components">
|
||||||
<implementation name="com.sun.star.comp.scripting.StringResource">
|
<implementation name="com.sun.star.comp.scripting.StringResource"
|
||||||
|
constructor="scripting_StringResourcePersistenceImpl_implementation">
|
||||||
<service name="com.sun.star.resource.StringResource"/>
|
<service name="com.sun.star.resource.StringResource"/>
|
||||||
</implementation>
|
</implementation>
|
||||||
<implementation name="com.sun.star.comp.scripting.StringResourceWithLocation">
|
<implementation name="com.sun.star.comp.scripting.StringResourceWithLocation"
|
||||||
|
constructor="scripting_StringResourceWithLocationImpl_get_implementation">
|
||||||
<service name="com.sun.star.resource.StringResourceWithLocation"/>
|
<service name="com.sun.star.resource.StringResourceWithLocation"/>
|
||||||
</implementation>
|
</implementation>
|
||||||
<implementation name="com.sun.star.comp.scripting.StringResourceWithStorage">
|
<implementation name="com.sun.star.comp.scripting.StringResourceWithStorage"
|
||||||
|
constructor="scripting_StringResourceWithStorageImpl_get_implementation">
|
||||||
<service name="com.sun.star.resource.StringResourceWithStorage"/>
|
<service name="com.sun.star.resource.StringResourceWithStorage"/>
|
||||||
</implementation>
|
</implementation>
|
||||||
</component>
|
</component>
|
||||||
|
@ -65,23 +65,11 @@ namespace stringresource
|
|||||||
|
|
||||||
// StringResourceImpl
|
// StringResourceImpl
|
||||||
|
|
||||||
|
extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface*
|
||||||
// component operations
|
scripting_StringResourcePersistenceImpl_implementation(
|
||||||
static Sequence< OUString > getSupportedServiceNames_StringResourceImpl()
|
css::uno::XComponentContext* context, css::uno::Sequence<css::uno::Any> const&)
|
||||||
{
|
{
|
||||||
Sequence< OUString > names { "com.sun.star.resource.StringResource" };
|
return cppu::acquire(new StringResourcePersistenceImpl(context));
|
||||||
return names;
|
|
||||||
}
|
|
||||||
|
|
||||||
static OUString getImplementationName_StringResourceImpl()
|
|
||||||
{
|
|
||||||
return "com.sun.star.comp.scripting.StringResource";
|
|
||||||
}
|
|
||||||
|
|
||||||
static Reference< XInterface > create_StringResourceImpl(
|
|
||||||
Reference< XComponentContext > const & xContext )
|
|
||||||
{
|
|
||||||
return static_cast< ::cppu::OWeakObject * >( new StringResourcePersistenceImpl( xContext ) );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -107,7 +95,7 @@ StringResourceImpl::~StringResourceImpl()
|
|||||||
|
|
||||||
OUString StringResourceImpl::getImplementationName( )
|
OUString StringResourceImpl::getImplementationName( )
|
||||||
{
|
{
|
||||||
return getImplementationName_StringResourceImpl();
|
return "com.sun.star.comp.scripting.StringResource";
|
||||||
}
|
}
|
||||||
|
|
||||||
sal_Bool StringResourceImpl::supportsService( const OUString& rServiceName )
|
sal_Bool StringResourceImpl::supportsService( const OUString& rServiceName )
|
||||||
@ -117,7 +105,7 @@ sal_Bool StringResourceImpl::supportsService( const OUString& rServiceName )
|
|||||||
|
|
||||||
Sequence< OUString > StringResourceImpl::getSupportedServiceNames( )
|
Sequence< OUString > StringResourceImpl::getSupportedServiceNames( )
|
||||||
{
|
{
|
||||||
return getSupportedServiceNames_StringResourceImpl();
|
return { "com.sun.star.resource.StringResource" };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -2047,23 +2035,11 @@ bool StringResourcePersistenceImpl::implWritePropertiesFile( LocaleItem const *
|
|||||||
|
|
||||||
// StringResourceWithStorageImpl
|
// StringResourceWithStorageImpl
|
||||||
|
|
||||||
|
extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface*
|
||||||
// component operations
|
scripting_StringResourceWithStorageImpl_get_implementation(
|
||||||
static Sequence< OUString > getSupportedServiceNames_StringResourceWithStorageImpl()
|
css::uno::XComponentContext* context, css::uno::Sequence<css::uno::Any> const&)
|
||||||
{
|
{
|
||||||
Sequence< OUString > names { "com.sun.star.resource.StringResourceWithStorage" };
|
return cppu::acquire(new StringResourceWithStorageImpl(context));
|
||||||
return names;
|
|
||||||
}
|
|
||||||
|
|
||||||
static OUString getImplementationName_StringResourceWithStorageImpl()
|
|
||||||
{
|
|
||||||
return "com.sun.star.comp.scripting.StringResourceWithStorage";
|
|
||||||
}
|
|
||||||
|
|
||||||
static Reference< XInterface > create_StringResourceWithStorageImpl(
|
|
||||||
Reference< XComponentContext > const & xContext )
|
|
||||||
{
|
|
||||||
return static_cast< ::cppu::OWeakObject * >( new StringResourceWithStorageImpl( xContext ) );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -2084,7 +2060,7 @@ StringResourceWithStorageImpl::~StringResourceWithStorageImpl()
|
|||||||
|
|
||||||
OUString StringResourceWithStorageImpl::getImplementationName( )
|
OUString StringResourceWithStorageImpl::getImplementationName( )
|
||||||
{
|
{
|
||||||
return getImplementationName_StringResourceWithStorageImpl();
|
return "com.sun.star.comp.scripting.StringResourceWithStorage";
|
||||||
}
|
}
|
||||||
|
|
||||||
sal_Bool StringResourceWithStorageImpl::supportsService( const OUString& rServiceName )
|
sal_Bool StringResourceWithStorageImpl::supportsService( const OUString& rServiceName )
|
||||||
@ -2094,7 +2070,7 @@ sal_Bool StringResourceWithStorageImpl::supportsService( const OUString& rServic
|
|||||||
|
|
||||||
Sequence< OUString > StringResourceWithStorageImpl::getSupportedServiceNames( )
|
Sequence< OUString > StringResourceWithStorageImpl::getSupportedServiceNames( )
|
||||||
{
|
{
|
||||||
return getSupportedServiceNames_StringResourceWithStorageImpl();
|
return { "com.sun.star.resource.StringResourceWithStorage" };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -2333,23 +2309,13 @@ bool StringResourceWithStorageImpl::implLoadLocale( LocaleItem* pLocaleItem )
|
|||||||
// StringResourceWithLocationImpl
|
// StringResourceWithLocationImpl
|
||||||
|
|
||||||
|
|
||||||
// component operations
|
extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface*
|
||||||
static Sequence< OUString > getSupportedServiceNames_StringResourceWithLocationImpl()
|
scripting_StringResourceWithLocationImpl_get_implementation(
|
||||||
|
css::uno::XComponentContext* context, css::uno::Sequence<css::uno::Any> const&)
|
||||||
{
|
{
|
||||||
Sequence< OUString > names { "com.sun.star.resource.StringResourceWithLocation" };
|
return cppu::acquire(new StringResourceWithLocationImpl(context));
|
||||||
return names;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static OUString getImplementationName_StringResourceWithLocationImpl()
|
|
||||||
{
|
|
||||||
return "com.sun.star.comp.scripting.StringResourceWithLocation";
|
|
||||||
}
|
|
||||||
|
|
||||||
static Reference< XInterface > create_StringResourceWithLocationImpl(
|
|
||||||
Reference< XComponentContext > const & xContext )
|
|
||||||
{
|
|
||||||
return static_cast< ::cppu::OWeakObject * >( new StringResourceWithLocationImpl( xContext ) );
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
StringResourceWithLocationImpl::StringResourceWithLocationImpl( const Reference< XComponentContext >& rxContext )
|
StringResourceWithLocationImpl::StringResourceWithLocationImpl( const Reference< XComponentContext >& rxContext )
|
||||||
@ -2369,7 +2335,7 @@ StringResourceWithLocationImpl::~StringResourceWithLocationImpl()
|
|||||||
|
|
||||||
OUString StringResourceWithLocationImpl::getImplementationName( )
|
OUString StringResourceWithLocationImpl::getImplementationName( )
|
||||||
{
|
{
|
||||||
return getImplementationName_StringResourceWithLocationImpl();
|
return "com.sun.star.comp.scripting.StringResourceWithLocation";
|
||||||
}
|
}
|
||||||
|
|
||||||
sal_Bool StringResourceWithLocationImpl::supportsService( const OUString& rServiceName )
|
sal_Bool StringResourceWithLocationImpl::supportsService( const OUString& rServiceName )
|
||||||
@ -2379,7 +2345,7 @@ sal_Bool StringResourceWithLocationImpl::supportsService( const OUString& rServi
|
|||||||
|
|
||||||
Sequence< OUString > StringResourceWithLocationImpl::getSupportedServiceNames( )
|
Sequence< OUString > StringResourceWithLocationImpl::getSupportedServiceNames( )
|
||||||
{
|
{
|
||||||
return getSupportedServiceNames_StringResourceWithLocationImpl();
|
return { "com.sun.star.resource.StringResourceWithLocation" };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -2652,49 +2618,7 @@ const Reference< ucb::XSimpleFileAccess3 > & StringResourceWithLocationImpl::get
|
|||||||
return m_xSFI;
|
return m_xSFI;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// component export operations
|
|
||||||
|
|
||||||
|
|
||||||
const struct ::cppu::ImplementationEntry s_component_entries [] =
|
|
||||||
{
|
|
||||||
{
|
|
||||||
create_StringResourceImpl, getImplementationName_StringResourceImpl,
|
|
||||||
getSupportedServiceNames_StringResourceImpl,
|
|
||||||
::cppu::createSingleComponentFactory,
|
|
||||||
nullptr, 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
create_StringResourceWithLocationImpl, getImplementationName_StringResourceWithLocationImpl,
|
|
||||||
getSupportedServiceNames_StringResourceWithLocationImpl,
|
|
||||||
::cppu::createSingleComponentFactory,
|
|
||||||
nullptr, 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
create_StringResourceWithStorageImpl, getImplementationName_StringResourceWithStorageImpl,
|
|
||||||
getSupportedServiceNames_StringResourceWithStorageImpl,
|
|
||||||
::cppu::createSingleComponentFactory,
|
|
||||||
nullptr, 0
|
|
||||||
},
|
|
||||||
{ nullptr, nullptr, nullptr, nullptr, nullptr, 0 }
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
} // namespace stringresource
|
} // namespace stringresource
|
||||||
|
|
||||||
|
|
||||||
// component exports
|
|
||||||
|
|
||||||
|
|
||||||
extern "C"
|
|
||||||
{
|
|
||||||
SAL_DLLPUBLIC_EXPORT void * stringresource_component_getFactory(
|
|
||||||
const char * pImplName, void * pServiceManager,
|
|
||||||
void * pRegistryKey )
|
|
||||||
{
|
|
||||||
return ::cppu::component_getFactoryHelper(
|
|
||||||
pImplName, pServiceManager, pRegistryKey, ::stringresource::s_component_entries );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user