我正在尝试围绕 JsonCpp 的Json::Value
.
我有一个命名空间global
,其中有处理Json::Value&
参数的函数。我想为这些函数创建一个语法上更令人愉悦的包装类。
这是一个最小的例子。
// Impl is a typedef for Json::Value, from JsonCpp
namespace global
{
Impl& getChild(Impl& mImpl, const std::string& mName) { return mImpl[mName]; }
const Impl& getChildConst(const Impl& mImpl, const std::string& mName) { return mImpl[mName]; }
Impl::iterator beginNonConst(Impl& mRoot) { return mRoot.begin(); }
Impl::iterator endNonConst(Impl& mRoot) { return mRoot.end(); }
Impl::const_iterator beginConst(const Impl& mRoot) { return mRoot.begin(); }
Impl::const_iterator endConst(const Impl& mRoot) { return mRoot.end(); }
}
class Wrapper
{
private:
Impl& impl;
public:
Wrapper(Impl& mImpl) : impl(mImpl) { }
Wrapper operator[](const std::string& mName) { return global::getChild(impl, mName); }
// Error here
// no known conversion for argument 1 from 'const Impl {aka const Json::Value}' to 'Impl& {aka Json::Value&}'
const Wrapper operator[](const std::string& mName) const { return global::getChildConst(impl, mName); }
Impl::iterator begin() { return global::beginNonConst(impl); }
Impl::iterator end() { return global::endNonConst(impl); }
Impl::const_iterator begin() const { return global::beginConst(impl); }
Impl::const_iterator end() const { return global::endConst(impl); }
};
这就是我希望能够编译的内容:
int main()
{
Json::Value realValue;
Wrapper w(realValue)
for(const auto& i : w["numberArray"]) { cout << i << endl; }
for(auto& i : w["numberArray"]) { i += 100; }
// assert that changes have been made to realValue through the wrapper
return 0;
}