attempt to fix macos jenkins hangs - part 3
[LibreOffice.git] / svl / source / items / globalnameitem.cxx
blob3f8d3265d779ee11399003b5923c907fcec3c06d
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <com/sun/star/uno/Any.hxx>
21 #include <com/sun/star/uno/Sequence.hxx>
22 #include <com/sun/star/script/Converter.hpp>
24 #include <osl/diagnose.h>
26 #include <comphelper/processfactory.hxx>
28 #include <svl/globalnameitem.hxx>
30 SfxPoolItem* SfxGlobalNameItem::CreateDefault() { return new SfxGlobalNameItem; }
33 SfxGlobalNameItem::SfxGlobalNameItem()
38 SfxGlobalNameItem::SfxGlobalNameItem( sal_uInt16 nW, const SvGlobalName& rName )
39 : SfxPoolItem( nW ),
40 m_aName( rName )
44 SfxGlobalNameItem::~SfxGlobalNameItem()
48 bool SfxGlobalNameItem::operator==( const SfxPoolItem& rItem ) const
50 return SfxPoolItem::operator==(rItem) &&
51 static_cast<const SfxGlobalNameItem&>(rItem).m_aName == m_aName;
54 SfxGlobalNameItem* SfxGlobalNameItem::Clone(SfxItemPool *) const
56 return new SfxGlobalNameItem( *this );
59 // virtual
60 bool SfxGlobalNameItem::PutValue( const css::uno::Any& rVal, sal_uInt8 )
62 css::uno::Reference < css::script::XTypeConverter > xConverter
63 ( css::script::Converter::create( ::comphelper::getProcessComponentContext() ));
64 css::uno::Sequence< sal_Int8 > aSeq;
65 css::uno::Any aNew;
67 try { aNew = xConverter->convertTo( rVal, cppu::UnoType<css::uno::Sequence < sal_Int8 >>::get() ); }
68 catch (css::uno::Exception&) {}
69 aNew >>= aSeq;
70 if ( aSeq.getLength() == 16 )
72 m_aName.MakeFromMemory( aSeq.getConstArray() );
73 return true;
76 OSL_FAIL( "SfxGlobalNameItem::PutValue - Wrong type!" );
77 return true;
80 // virtual
81 bool SfxGlobalNameItem::QueryValue( css::uno::Any& rVal, sal_uInt8 ) const
83 css::uno::Sequence< sal_Int8 > aSeq( 16 );
84 void const * pData = &m_aName.GetCLSID();
85 memcpy( aSeq.getArray(), pData, 16 );
86 rVal <<= aSeq;
87 return true;
90 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */