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

277 lines
9.2 KiB
C++

/*************************************************************************
*
* $RCSfile: apinodeaccess.cxx,v $
*
* $Revision: 1.9 $
*
* 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 "apinodeaccess.hxx"
#include "apitreeimplobj.hxx"
#include "apifactory.hxx"
#include "apitreeaccess.hxx"
#include "noderef.hxx"
#include "anynoderef.hxx"
#include "valueref.hxx"
#include "configset.hxx"
#include "configpath.hxx"
#include "confignotifier.hxx"
namespace configmgr
{
namespace configapi
{
//-----------------------------------------------------------------------------
NodeAccess::~NodeAccess()
{
}
//-----------------------------------------------------------------------------
configuration::NodeRef NodeAccess::getNodeRef() const
{
return doGetNode();
}
//-----------------------------------------------------------------------------
configuration::TreeRef NodeAccess::getTreeRef() const
{
return getApiTree().getTree();
}
//-----------------------------------------------------------------------------
configuration::Tree NodeAccess::getTree(data::Accessor const & _aAccessor) const
{
return configuration::Tree(_aAccessor,getApiTree().getTree());
}
//-----------------------------------------------------------------------------
void NodeAccess::checkAlive() const
{
getApiTree().checkAlive();
}
//-----------------------------------------------------------------------------
void NodeAccess::disposeNode()
{
getApiTree().disposeNode(getNodeRef(), getUnoInstance());
}
//-----------------------------------------------------------------------------
Factory& NodeAccess::getFactory() const
{
return getApiTree().getFactory();
}
//-----------------------------------------------------------------------------
Notifier NodeAccess::getNotifier() const
{
return getApiTree().getNotifier();
}
//-----------------------------------------------------------------------------
osl::Mutex& NodeAccess::getDataLock() const
{
return getApiTree().getDataLock();
}
//-----------------------------------------------------------------------------
memory::Segment const* NodeAccess::getSourceData() const
{
return getApiTree().getSourceData();
}
//-----------------------------------------------------------------------------
osl::Mutex& NodeAccess::getApiLock()
{
return getApiTree().getApiLock();
}
//-----------------------------------------------------------------------------
UnoAny makeElement(configapi::Factory& rFactory, configuration::Tree const& aTree, configuration::AnyNodeRef const& aNode)
{
if (!aTree.isEmpty() && aNode.isValid())
{
if (aNode.isNode())
{
NodeRef aInnerNode = aNode.toNode();
if (configuration::isStructuralNode(aTree,aInnerNode))
return uno::makeAny( rFactory.makeUnoElement(aTree,aInnerNode) );
else
return configuration::getSimpleElementValue(aTree,aInnerNode);
}
else
{
return configuration::getSimpleValue(aTree,aNode.toValue());
}
}
return UnoAny();
}
//-----------------------------------------------------------------------------
UnoAny makeInnerElement(configapi::Factory& rFactory, configuration::Tree const& aTree, configuration::NodeRef const& aNode)
{
if (!aTree.isEmpty() && aNode.isValid())
{
OSL_ENSURE(configuration::isStructuralNode(aTree,aNode), "Trying to makeInnerElement for a simple value");
return uno::makeAny( rFactory.makeUnoElement(aTree,aNode) );
}
return UnoAny();
}
//-----------------------------------------------------------------------------
UnoAny makeElement(configapi::Factory& rFactory, configuration::ElementTree const& aTree)
{
if (aTree.isValid())
{
return uno::makeAny( rFactory.makeUnoSetElement(aTree) );
}
return UnoAny();
}
//-----------------------------------------------------------------------------
configuration::ElementRef extractElementRef(configapi::Factory& rFactory, UnoAny const& aElement, configuration::TemplateInfo const& aTemplateInfo )
{
using configuration::ElementRef;
configuration::TemplateHolder const aRequestedTemplate = aTemplateInfo.getTemplate();
OSL_ENSURE(aRequestedTemplate.is(), "ERROR: Need a template to extract a matching set element");
if (!aRequestedTemplate.is())
return ElementRef(NULL);
if (SetElement* pSetElement = rFactory.extractSetElement(aElement))
{
configuration::TemplateHolder aFoundTemplate = pSetElement->getTemplateInfo().getTemplate();
if (aFoundTemplate.is())
{
if (aFoundTemplate != aRequestedTemplate)
throw configuration::TypeMismatch(aFoundTemplate->getPathString(), aRequestedTemplate->getPathString());
return pSetElement->getElementRef( );
}
}
return ElementRef(NULL);
}
//-----------------------------------------------------------------------------
configuration::ElementTree extractElementTree(configapi::Factory& rFactory, UnoAny const& aElement, configuration::SetElementInfo const& aElementInfo )
{
using namespace configuration;
ElementRef aExtractedRef = extractElementRef(rFactory,aElement,aElementInfo.getTemplateInfo());
return aExtractedRef.getElementTree(aElementInfo.getSetDataAccessor());
}
//-----------------------------------------------------------------------------
SetElement* findSetElement(Factory& rFactory, configuration::ElementRef const& aElementTree)
{
SetElement* pSetElement = rFactory.findSetElement(aElementTree);
if (pSetElement)
{
// the factory always does an extra acquire
pSetElement->getUnoInstance()->release();
}
return pSetElement;
}
//-----------------------------------------------------------------------------
configuration::SetElementInfo NodeSetInfoAccess::getElementInfo(data::Accessor const& _aAccessor) const
{
using configuration::SetElementInfo;
using configuration::TemplateHolder;
TemplateHolder aTemplate = SetElementInfo::extractElementInfo(getTree(_aAccessor),getNodeRef());
OSL_ENSURE(aTemplate.is(), "ERROR: Set must have an element template");
return SetElementInfo(_aAccessor,aTemplate);
}
//-----------------------------------------------------------------------------
NodeReadGuardImpl::NodeReadGuardImpl(NodeAccess& rNode) throw()
: m_aLock(rNode.getDataLock())
, m_rNode(rNode)
{
rNode.checkAlive();
}
//-----------------------------------------------------------------------------
NodeReadGuardImpl::~NodeReadGuardImpl() throw ()
{
}
//-----------------------------------------------------------------------------
configuration::Tree NodeReadGuardImpl::getTree(data::Accessor const& _aAccessor) const
{
return this->get().getTree(_aAccessor);
}
//-----------------------------------------------------------------------------
configuration::NodeRef NodeReadGuardImpl::getNode() const
{
return this->get().getNodeRef();
}
//-----------------------------------------------------------------------------
}
}