/* -*- 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/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
DBG_ASSERT( _rxORB.is(), "fieldmapping::invokeDialog: invalid service factory!" );
DBG_ASSERT( _rxDataSource.is(), "fieldmapping::invokeDialog: invalid data source!"); if ( !_rxORB.is() || !_rxDataSource.is() ) returnfalse;
try
{
// create an instance of the dialog service
Reference< XWindow > xDialogParent = _pParent->GetXWindow();
OUString sTitle(compmodule::ModuleRes(RID_STR_FIELDDIALOGTITLE));
Reference< XExecutableDialog > xDialog = AddressBookSourceDialog::createWithDataSource(_rxORB, // the parent window
xDialogParent,
_rxDataSource,
_rSettings.bRegisterDataSource ? _rSettings.sRegisteredDataSourceName : _rSettings.sDataSourceName, // the table to use
_rSettings.sSelectedTable,
sTitle);
// execute the dialog if ( xDialog->execute() )
{ // retrieve the field mapping as set by he user
Reference< XPropertySet > xDialogProps( xDialog, UNO_QUERY );
Sequence< AliasProgrammaticPair > aMapping; bool bSuccess =
xDialogProps->getPropertyValue(u"FieldMapping"_ustr) >>= aMapping;
DBG_ASSERT( bSuccess, "fieldmapping::invokeDialog: invalid property type for FieldMapping!" );
// and copy it into the map for (auto& rMapping : aMapping)
_rSettings.aFieldMapping[rMapping.ProgrammaticName] = rMapping.Alias;
returntrue;
}
} catch(const Exception&)
{
TOOLS_WARN_EXCEPTION("extensions.abpilot", "caught an exception while executing the dialog!");
} returnfalse;
}
try
{ // what we have: // a) For the address data source, we need a mapping from programmatic names (1) to real column names // b) The SDBC driver has a fixed set of columns, which, when returned, are named according to // some configuration entries. E.g., the driver displays the field which it knows contains // the first name as "First Name" - the latter string is stored in the config. // For this, the driver uses programmatic names, too, but they differ from the programmatic names the // template documents have. // So what we need first is a mapping from programmatic names (1) to programmatic names (2) constchar* pMappingProgrammatics[] =
{ "FirstName", "FirstName", "LastName", "LastName", "Street", "HomeAddress", "Zip", "HomeZipCode", "City", "HomeCity", "State", "HomeState", "Country", "HomeCountry", "PhonePriv", "HomePhone", "PhoneComp", "WorkPhone", "PhoneCell", "CellularNumber", "Pager", "PagerNumber", "Fax", "FaxNumber", "EMail", "PrimaryEmail", "URL", "WebPage1", "Note", "Notes", "Altfield1", "Custom1", "Altfield2", "Custom2", "Altfield3", "Custom3", "Altfield4", "Custom4", "Title", "JobTitle", "Company", "Company", "Department", "Department"
}; // (this list is not complete: both lists of programmatic names are larger in real, // but this list above is the intersection)
// access the configuration information which the driver uses for determining its column names
OUString sDriverAliasesNodeName(
OUString::Concat(sDriverSettingsNodeName)
+ "/ColumnAliases");
// create a config node for this
OConfigurationTreeRoot aDriverFieldAliasing = OConfigurationTreeRoot::createWithComponentContext(
_rxContext, sDriverAliasesNodeName, -1, OConfigurationTreeRoot::CM_READONLY);
// loop through all programmatic pairs
DBG_ASSERT( 0 == std::size( pMappingProgrammatics ) % 2, "fieldmapping::defaultMapping: invalid programmatic map!" ); // number of pairs
sal_Int32 const nIntersectedProgrammatics = std::size( pMappingProgrammatics ) / 2;
if ( aDriverFieldAliasing.hasByName( sDriverProgrammatic ) )
{
aDriverFieldAliasing.getNodeValue( sDriverProgrammatic ) >>= sDriverUI; if ( 0 == sDriverUI.getLength() )
{
OSL_FAIL( "fieldmapping::defaultMapping: invalid driver UI column name!");
} else
_rFieldAssignment[ sAddressProgrammatic ] = sDriverUI;
} else
{
OSL_FAIL( "fieldmapping::defaultMapping: invalid driver programmatic name!" );
}
}
} catch( const Exception& )
{
TOOLS_WARN_EXCEPTION("extensions.abpilot", "code is assumed to throw no exceptions!"); // the config nodes we're using herein should not do this...
}
}
void writeTemplateAddressFieldMapping( const Reference< XComponentContext >& _rxContext, MapString2String&& aFieldAssignment )
{ // access the configuration information which the driver uses for determining its column names
// create a config node for this
OConfigurationTreeRoot aAddressBookSettings = OConfigurationTreeRoot::createWithComponentContext(
_rxContext, sAddressBookNodeName);
// loop through all existent fields static constexpr OUString sProgrammaticNodeName( u"ProgrammaticFieldName"_ustr ); static constexpr OUString sAssignedNodeName( u"AssignedFieldName"_ustr );
for (auto& rExistentField : aFields.getNodeNames())
{
SAL_WARN_IF(
((aFields.openNode(rExistentField)
.getNodeValue(sProgrammaticNodeName).get<OUString>())
!= rExistentField), "extensions.abpilot", "fieldmapping::writeTemplateAddressFieldMapping: inconsistent config data!"); // there should be a redundancy in the config data... if this asserts, there isn't anymore!
// do we have a new alias for the programmatic?
MapString2String::iterator aPos = aFieldAssignment.find(rExistentField); if ( aFieldAssignment.end() != aPos )
{ // yes // -> set a new value
OConfigurationNode aExistentField = aFields.openNode(rExistentField);
aExistentField.setNodeValue( sAssignedNodeName, Any( aPos->second ) ); // and remove the mapping entry
aFieldAssignment.erase(rExistentField);
} else
{ // no // -> remove it
aFields.removeNode(rExistentField);
}
}
// now everything remaining in aFieldAssignment marks a mapping entry which was not present // in the config before for (autoconst& elem : aFieldAssignment)
{
DBG_ASSERT( !aFields.hasByName( elem.first ), "fieldmapping::writeTemplateAddressFieldMapping: inconsistence!" ); // in case the config node for the fields already has the node named <aNewMapping->first>, // the entry should have been removed from aNewMapping (in the above loop)
OConfigurationNode aNewField = aFields.createNode( elem.first );
aNewField.setNodeValue( sProgrammaticNodeName, Any( elem.first ) );
aNewField.setNodeValue( sAssignedNodeName, Any( elem.second ) );
}
// commit the changes done
aAddressBookSettings.commit();
}
} // namespace fieldmapping
namespace addressconfig
{
void writeTemplateAddressSource( const Reference< XComponentContext >& _rxContext, const OUString& _rDataSourceName, const OUString& _rTableName )
{ // access the configuration information which the driver uses for determining its column names
// create a config node for this
OConfigurationTreeRoot aAddressBookSettings = OConfigurationTreeRoot::createWithComponentContext(
_rxContext, sAddressBookNodeName);
// commit the changes done
aAddressBookSettings.commit();
}
void markPilotSuccess( const Reference< XComponentContext >& _rxContext )
{ // access the configuration information which the driver uses for determining its column names
// create a config node for this
OConfigurationTreeRoot aAddressBookSettings = OConfigurationTreeRoot::createWithComponentContext(
_rxContext, sAddressBookNodeName);
// set the flag
aAddressBookSettings.setNodeValue( u"AutoPilotCompleted"_ustr, Any( true ) );
// commit the changes done
aAddressBookSettings.commit();
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.