2002-02-11 07:29:07 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 06:56:23 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2002-02-11 07:29:07 -06:00
|
|
|
*
|
2008-04-11 06:56:23 -05:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2002-02-11 07:29:07 -06:00
|
|
|
*
|
2008-04-11 06:56:23 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2002-02-11 07:29:07 -06:00
|
|
|
*
|
2008-04-11 06:56:23 -05:00
|
|
|
* $RCSfile: nodevisitor.hxx,v $
|
|
|
|
* $Revision: 1.7 $
|
2002-02-11 07:29:07 -06:00
|
|
|
*
|
2008-04-11 06:56:23 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2002-02-11 07:29:07 -06:00
|
|
|
*
|
2008-04-11 06:56:23 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2002-02-11 07:29:07 -06:00
|
|
|
*
|
2008-04-11 06:56:23 -05:00
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2002-02-11 07:29:07 -06:00
|
|
|
*
|
2008-04-11 06:56:23 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2002-02-11 07:29:07 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIGMGR_NODEVISITOR_HXX
|
|
|
|
#define CONFIGMGR_NODEVISITOR_HXX
|
|
|
|
|
2007-11-23 07:22:07 -06:00
|
|
|
#include "nodeaccess.hxx"
|
|
|
|
|
2002-02-11 07:29:07 -06:00
|
|
|
namespace configmgr
|
|
|
|
{
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
namespace data
|
|
|
|
{
|
|
|
|
// -------------------------------------------------------------------------
|
2007-11-23 07:22:07 -06:00
|
|
|
// class NodeAccess;
|
2002-02-11 07:29:07 -06:00
|
|
|
class ValueNodeAccess;
|
|
|
|
class GroupNodeAccess;
|
|
|
|
class SetNodeAccess;
|
|
|
|
class TreeAccessor;
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
/** interface for a class that can be used to do some operation on a set of <type>NodeAccess</type>s
|
|
|
|
<p>Concrete classes should override at least one of the 'handle' methods.</p>
|
|
|
|
*/
|
|
|
|
class NodeVisitor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/// returned from <method>handle</method> to indicate whether the operation is complete or should continue
|
|
|
|
enum Result { DONE, CONTINUE };
|
|
|
|
|
|
|
|
/// destructor. is pure to make this class abstract
|
2002-02-15 07:34:35 -06:00
|
|
|
virtual ~NodeVisitor() ; // = 0; - does not work well with SunCC 5.2
|
2002-02-11 07:29:07 -06:00
|
|
|
|
|
|
|
/// dispatch this to the children of <var>aNode</var>, until one returns DONE
|
|
|
|
Result visitChildren(GroupNodeAccess const& _aNode);
|
|
|
|
|
|
|
|
/// dispatch to <var>aNode</var> as the proper type
|
2007-11-23 07:22:07 -06:00
|
|
|
Result visitNode(NodeAccess const& _aNode);
|
2002-02-11 07:29:07 -06:00
|
|
|
|
|
|
|
protected:
|
|
|
|
/// do the operation on <var>aNode</var>. Default implementation returns CONTINUE.
|
2007-11-23 07:22:07 -06:00
|
|
|
virtual Result handle(NodeAccess const& _aNode);
|
2002-02-11 07:29:07 -06:00
|
|
|
|
|
|
|
/// do the operation on <var>aNode</var>. Default implementation calls handle(NodeAccess(_aNode));
|
|
|
|
virtual Result handle(ValueNodeAccess const& _aNode);
|
|
|
|
|
|
|
|
/** do the operation on <var>aNode</var>. Default implementation calls handle(NodeAccess(_aNode));
|
|
|
|
<p>To recursively visit the whole tree, call <method>visitChildren</method>
|
|
|
|
in the implementation</p>
|
|
|
|
*/
|
|
|
|
virtual Result handle(GroupNodeAccess const& _aNode);
|
|
|
|
|
|
|
|
/** do the operation on <var>aNode</var>. Default implementation calls handle(NodeAccess(_aNode));
|
|
|
|
<p>To recursively visit the whole tree, call <method>visitChildren</method>
|
|
|
|
in the implementation</p>
|
|
|
|
*/
|
|
|
|
virtual Result handle(SetNodeAccess const& _aNode);
|
|
|
|
|
|
|
|
struct Dispatcher;
|
|
|
|
friend struct Dispatcher;
|
|
|
|
};
|
|
|
|
|
|
|
|
inline NodeVisitor::~NodeVisitor() {}
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
/** interface for a class that can be used to do some operation on a set of <type>TreeAccess</type>s
|
|
|
|
<p>Concrete classes should override at least one of the 'handle' methods.</p>
|
|
|
|
*/
|
|
|
|
class SetVisitor : public NodeVisitor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/// destructor. is pure to make this class abstract
|
2002-02-15 07:34:35 -06:00
|
|
|
virtual ~SetVisitor() ; //= 0; - does not work well with SunCC 5.2
|
2002-02-11 07:29:07 -06:00
|
|
|
|
|
|
|
/// dispatch to <var>_aElementTree</var>
|
|
|
|
Result visitTree(TreeAccessor const& _aElementTree);
|
|
|
|
|
|
|
|
/// dispatch this to the elements of <var>aNode</var>, until one returns DONE
|
|
|
|
Result visitElements(SetNodeAccess const& _aNode);
|
|
|
|
|
|
|
|
protected:
|
2006-06-19 17:24:01 -05:00
|
|
|
using NodeVisitor::handle;
|
2002-02-11 07:29:07 -06:00
|
|
|
/// do the operation on <var>aNode</var>. Default implementation call NodeVisitor::visit for the rootnode.
|
|
|
|
virtual Result handle(TreeAccessor const& _aElementTree);
|
|
|
|
|
|
|
|
struct Dispatcher;
|
|
|
|
friend struct Dispatcher;
|
|
|
|
};
|
|
|
|
|
|
|
|
inline SetVisitor::~SetVisitor() {}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
} // namespace configmgr
|
|
|
|
|
|
|
|
#endif // CONFIGMGR_NODEVISITOR_HXX
|
|
|
|
|