Files
loongoffice/svx/source/dialog/ClassificationCommon.cxx
Stephan Bergmann 1d2b6b709e Just use Any ctor instead of makeAny in svx
Change-Id: I59b1b3f817a9028f132456ea5094f38f88674d00
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133768
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2022-05-03 21:48:15 +02:00

126 lines
4.3 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*/
#include <svx/ClassificationCommon.hxx>
#include <svx/ClassificationField.hxx>
#include <rtl/ustrbuf.hxx>
#include <com/sun/star/beans/PropertyAttribute.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/beans/XPropertyContainer.hpp>
using namespace css;
namespace svx::classification
{
OUString convertClassificationResultToString(std::vector<svx::ClassificationResult> const& rResults)
{
OUStringBuffer sRepresentation;
for (svx::ClassificationResult const& rResult : rResults)
{
switch (rResult.meType)
{
case svx::ClassificationType::CATEGORY:
case svx::ClassificationType::INTELLECTUAL_PROPERTY_PART:
case svx::ClassificationType::MARKING:
case svx::ClassificationType::TEXT:
sRepresentation.append(rResult.msName);
break;
case svx::ClassificationType::PARAGRAPH:
sRepresentation.append(" ");
break;
}
}
return sRepresentation.makeStringAndClear();
}
OUString getProperty(uno::Reference<beans::XPropertyContainer> const& rxPropertyContainer,
OUString const& rName)
{
try
{
uno::Reference<beans::XPropertySet> xPropertySet(rxPropertyContainer, uno::UNO_QUERY);
return xPropertySet->getPropertyValue(rName).get<OUString>();
}
catch (const css::uno::Exception&)
{
}
return OUString();
}
bool containsProperty(uno::Sequence<beans::Property> const& rProperties, std::u16string_view rName)
{
return std::any_of(rProperties.begin(), rProperties.end(),
[&](const beans::Property& rProperty) { return rProperty.Name == rName; });
}
void removeAllProperties(uno::Reference<beans::XPropertyContainer> const& rxPropertyContainer)
{
uno::Reference<beans::XPropertySet> xPropertySet(rxPropertyContainer, uno::UNO_QUERY);
const uno::Sequence<beans::Property> aProperties
= xPropertySet->getPropertySetInfo()->getProperties();
for (const beans::Property& rProperty : aProperties)
{
rxPropertyContainer->removeProperty(rProperty.Name);
}
}
bool addOrInsertDocumentProperty(
uno::Reference<beans::XPropertyContainer> const& rxPropertyContainer, OUString const& rsKey,
OUString const& rsValue)
{
uno::Reference<beans::XPropertySet> xPropertySet(rxPropertyContainer, uno::UNO_QUERY);
try
{
if (containsProperty(xPropertySet->getPropertySetInfo()->getProperties(), rsKey))
xPropertySet->setPropertyValue(rsKey, uno::Any(rsValue));
else
rxPropertyContainer->addProperty(rsKey, beans::PropertyAttribute::REMOVABLE,
uno::Any(rsValue));
}
catch (const uno::Exception& /*rException*/)
{
return false;
}
return true;
}
void insertFullTextualRepresentationAsDocumentProperty(
uno::Reference<beans::XPropertyContainer> const& rxPropertyContainer,
sfx::ClassificationKeyCreator const& rKeyCreator,
std::vector<svx::ClassificationResult> const& rResults)
{
OUString sString = convertClassificationResultToString(rResults);
addOrInsertDocumentProperty(rxPropertyContainer, rKeyCreator.makeFullTextualRepresentationKey(),
sString);
}
void insertCreationOrigin(uno::Reference<beans::XPropertyContainer> const& rxPropertyContainer,
sfx::ClassificationKeyCreator const& rKeyCreator,
sfx::ClassificationCreationOrigin eOrigin)
{
// Nothing to do if origin is "NONE"
if (eOrigin == sfx::ClassificationCreationOrigin::NONE)
return;
OUString sValue = (eOrigin == sfx::ClassificationCreationOrigin::BAF_POLICY)
? OUString("BAF_POLICY")
: OUString("MANUAL");
addOrInsertDocumentProperty(rxPropertyContainer, rKeyCreator.makeCreationOriginKey(), sValue);
}
} // end svx::classification namespace
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */