2013-10-12 15:25:45 +08:00
|
|
|
/****************************************************************************
|
2014-01-07 11:47:11 +08:00
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
2013-10-12 15:25:45 +08:00
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __CCDATAVISITOR_H__
|
|
|
|
#define __CCDATAVISITOR_H__
|
|
|
|
|
2014-09-10 08:17:07 +08:00
|
|
|
#include "platform/CCPlatformMacros.h"
|
2013-10-12 15:25:45 +08:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2014-02-20 10:53:49 +08:00
|
|
|
class Ref;
|
2013-12-11 17:15:27 +08:00
|
|
|
class __Bool;
|
|
|
|
class __Integer;
|
|
|
|
class __Float;
|
|
|
|
class __Double;
|
|
|
|
class __String;
|
2013-12-07 10:48:02 +08:00
|
|
|
class __Array;
|
2013-12-11 14:39:21 +08:00
|
|
|
class __Dictionary;
|
2013-12-06 18:16:58 +08:00
|
|
|
class __Set;
|
2013-10-12 15:25:45 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup data_structures
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Visitor that helps to perform action that depends on polymorphic object type
|
|
|
|
*
|
|
|
|
* Use cases:
|
|
|
|
* - data serialization,
|
2014-02-20 10:53:49 +08:00
|
|
|
* - pretty printing of Ref*
|
2013-12-11 14:39:21 +08:00
|
|
|
* - safe value reading from Array, __Dictionary, Set
|
2013-10-12 15:25:45 +08:00
|
|
|
*
|
|
|
|
* Usage:
|
|
|
|
* 1. subclass DataVisitor
|
|
|
|
* 2. overload visit() methods for object that you need to handle
|
|
|
|
* 3. handle other objects in visitObject()
|
|
|
|
* 4. pass your visitor to Object::acceptVisitor()
|
|
|
|
*/
|
|
|
|
class CC_DLL DataVisitor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
virtual ~DataVisitor() {}
|
|
|
|
|
|
|
|
/** default method, called from non-overloaded methods and for unrecognized objects */
|
2014-02-20 10:53:49 +08:00
|
|
|
virtual void visitObject(const Ref *p) = 0;
|
2013-10-12 15:25:45 +08:00
|
|
|
|
2013-12-11 17:15:27 +08:00
|
|
|
virtual void visit(const __Bool *p);
|
|
|
|
virtual void visit(const __Integer *p);
|
|
|
|
virtual void visit(const __Float *p);
|
|
|
|
virtual void visit(const __Double *p);
|
|
|
|
virtual void visit(const __String *p);
|
2013-12-07 10:48:02 +08:00
|
|
|
virtual void visit(const __Array *p);
|
2013-12-11 14:39:21 +08:00
|
|
|
virtual void visit(const __Dictionary *p);
|
2013-12-06 18:16:58 +08:00
|
|
|
virtual void visit(const __Set *p);
|
2013-10-12 15:25:45 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class CC_DLL PrettyPrinter : public DataVisitor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PrettyPrinter(int indentLevel = 0);
|
|
|
|
|
|
|
|
virtual void clear();
|
|
|
|
virtual std::string getResult();
|
|
|
|
|
2014-02-20 10:53:49 +08:00
|
|
|
virtual void visitObject(const Ref *p);
|
2013-12-11 17:15:27 +08:00
|
|
|
virtual void visit(const __Bool * p);
|
|
|
|
virtual void visit(const __Integer *p);
|
|
|
|
virtual void visit(const __Float *p);
|
|
|
|
virtual void visit(const __Double *p);
|
|
|
|
virtual void visit(const __String *p);
|
2013-12-07 10:48:02 +08:00
|
|
|
virtual void visit(const __Array *p);
|
2013-12-11 14:39:21 +08:00
|
|
|
virtual void visit(const __Dictionary *p);
|
2013-12-06 18:16:58 +08:00
|
|
|
virtual void visit(const __Set *p);
|
2013-10-12 15:25:45 +08:00
|
|
|
private:
|
|
|
|
void setIndentLevel(int indentLevel);
|
|
|
|
int _indentLevel;
|
|
|
|
std::string _indentStr;
|
|
|
|
std::string _result;
|
|
|
|
};
|
|
|
|
|
|
|
|
// end of data_structure group
|
|
|
|
/// @}
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif // __CCDATAVISITOR_H__
|