office-gobmx/configmgr/source/api2/apinodeupdate.cxx
2002-02-11 12:47:56 +00:00

225 lines
8.2 KiB
C++

/*************************************************************************
*
* $RCSfile: apinodeupdate.cxx,v $
*
* $Revision: 1.8 $
*
* last change: $Author: jb $ $Date: 2002-02-11 13:47:53 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (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.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#include <stdio.h>
#include "apinodeupdate.hxx"
#ifndef CONFIGMGR_API_TREEIMPLOBJECTS_HXX_
#include "apitreeimplobj.hxx"
#endif
#ifndef CONFIGMGR_API_TREEACCESS_HXX_
#include "apitreeaccess.hxx"
#endif
#ifndef CONFIGMGR_CONFIGNODE_HXX_
#include "noderef.hxx"
#endif
#ifndef CONFIGMGR_CONFIGSET_HXX_
#include "configset.hxx"
#endif
#ifndef CONFIGMGR_CONFIGGROUP_HXX_
#include "configgroup.hxx"
#endif
#ifndef CONFIGMGR_CONFIGPATH_HXX_
#include "configpath.hxx"
#endif
#ifndef CONFIGMGR_API_FACTORY_HXX_
#include "apifactory.hxx"
#endif
namespace configmgr
{
namespace configapi
{
//-----------------------------------------------------------------------------
NodeGroupAccess& withDefaultData(NodeGroupAccess& _aGroup)
{
configuration::GroupDefaulter::ensureDataAvailable(_aGroup.getTreeRef(),_aGroup.getNodeRef(),
_aGroup.getApiTree().getDefaultProvider());
return _aGroup;
}
//-----------------------------------------------------------------------------
configuration::GroupUpdater NodeGroupAccess::getNodeUpdater(data::Accessor const& _aAccessor)
{
return configuration::GroupUpdater(getTree(_aAccessor),getNodeRef(), getApiTree().getProvider().getTypeConverter());
}
//-----------------------------------------------------------------------------
configuration::GroupDefaulter NodeGroupAccess::getNodeDefaulter(data::Accessor const& _aAccessor)
{
return configuration::GroupDefaulter(getTree(_aAccessor),getNodeRef(), getApiTree().getDefaultProvider());
}
//-----------------------------------------------------------------------------
configuration::SetElementFactory NodeTreeSetAccess::getElementFactory(data::Accessor const& _aAccessor)
{
using namespace configuration;
TemplateProvider aProvider = SetElementFactory::findTemplateProvider(getTree(_aAccessor),getNodeRef());
return SetElementFactory(_aAccessor,aProvider);
}
//-----------------------------------------------------------------------------
configuration::SetDefaulter NodeSetAccess::getNodeDefaulter(data::Accessor const& _aAccessor)
{
return configuration::SetDefaulter(getTree(_aAccessor),getNodeRef(), getApiTree().getDefaultProvider());
}
//-----------------------------------------------------------------------------
configuration::TreeSetUpdater NodeTreeSetAccess::getNodeUpdater(data::Accessor const& _aAccessor)
{
return configuration::TreeSetUpdater(getTree(_aAccessor),getNodeRef(),getElementInfo(_aAccessor));
}
//-----------------------------------------------------------------------------
configuration::ValueSetUpdater NodeValueSetAccess::getNodeUpdater(data::Accessor const& _aAccessor)
{
return configuration::ValueSetUpdater(getTree(_aAccessor),getNodeRef(),getElementInfo(_aAccessor), getApiTree().getProvider().getTypeConverter());
}
//-----------------------------------------------------------------------------
void attachSetElement(NodeTreeSetAccess& aSet, SetElement& aElement)
{
using configuration::NodeID;
OSL_ENSURE( NodeID(aSet.getTreeRef(),aSet.getNodeRef()) ==
NodeID(aElement.getTreeRef().getContextTree(),aElement.getTreeRef().getContextNode()),
"ERROR: Attaching an unrelated SetElement to a SetInfoAccess");
aElement.haveNewParent(&aSet);
}
//-----------------------------------------------------------------------------
bool attachSetElement(NodeTreeSetAccess& aSet, configuration::ElementTree const& aElementTree)
{
using configuration::NodeID;
OSL_ENSURE( NodeID(aSet.getTreeRef(),aSet.getNodeRef()) ==
NodeID(aElementTree.getTree().getContextTree(),aElementTree.getTree().getContextNode()),
"ERROR: Attaching an unrelated ElementTree to a SetInfoAccess");
Factory& rFactory = aSet.getFactory();
configuration::ElementRef aElementRef( aElementTree.getImpl() ); // no other conversion available
if (SetElement* pSetElement = rFactory.findSetElement(aElementRef))
{
// the factory always does an extra acquire
UnoInterfaceRef xReleaseSetElement(pSetElement->getUnoInstance(), uno::UNO_REF_NO_ACQUIRE);
attachSetElement(aSet, *pSetElement);
return true;
}
else
return false;
}
//-----------------------------------------------------------------------------
void detachSetElement(SetElement& aElement)
{
OSL_ENSURE( aElement.getTreeRef().getContextTree().isEmpty(),
"ERROR: Detaching a SetElement that has a parent");
aElement.haveNewParent(0);
}
//-----------------------------------------------------------------------------
bool detachSetElement(Factory& rFactory, configuration::ElementRef const& aElementTree)
{
OSL_ENSURE( aElementTree.getTreeRef().getContextTree().isEmpty(),
"ERROR: Detaching an ElementTree that has a parent");
if (SetElement* pSetElement = rFactory.findSetElement(aElementTree))
{
// the factory always does an extra acquire
UnoInterfaceRef xReleaseSetElement(pSetElement->getUnoInstance(), uno::UNO_REF_NO_ACQUIRE);
detachSetElement(*pSetElement);
return true;
}
else
return false;
}
//-----------------------------------------------------------------------------
UpdateGuardImpl::UpdateGuardImpl(NodeGroupAccess& rNode) throw()
: m_aDataAccess(rNode.getSourceData())
, m_aViewLock(rNode.getDataLock())
, m_rNode(rNode)
{
rNode.checkAlive();
}
//-----------------------------------------------------------------------------
UpdateGuardImpl::UpdateGuardImpl(NodeSetAccess& rNode) throw()
: m_aDataAccess(rNode.getSourceData())
, m_aViewLock(rNode.getDataLock())
, m_rNode(rNode)
{
}
//-----------------------------------------------------------------------------
UpdateGuardImpl::~UpdateGuardImpl() throw ()
{
}
//-----------------------------------------------------------------------------
}
}