本文整理汇总了C++中StringDataPtr::getValue方法的典型用法代码示例。如果您正苦于以下问题:C++ StringDataPtr::getValue方法的具体用法?C++ StringDataPtr::getValue怎么用?C++ StringDataPtr::getValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类StringDataPtr
的用法示例。
在下文中一共展示了StringDataPtr::getValue方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: typeMismatchError
void
FreezeScript::TransformVisitor::visitEnum(const EnumDataPtr& dest)
{
Slice::TypePtr type = dest->getType();
if(_info->doDefaultTransform(type))
{
string name;
EnumDataPtr e = EnumDataPtr::dynamicCast(_src);
if(e && isCompatible(type, _src->getType()))
{
name = e->toString();
}
else
{
StringDataPtr s = StringDataPtr::dynamicCast(_src);
if(s)
{
name = s->getValue();
}
else
{
typeMismatchError(type, _src->getType());
return;
}
}
if(!dest->setValueAsString(name))
{
conversionError(type, _src->getType(), name);
}
}
_info->executeCustomTransform(dest, _src);
}
示例2: conversionError
void
FreezeScript::TransformVisitor::visitInteger(const IntegerDataPtr& dest)
{
Slice::TypePtr type = dest->getType();
if(_info->doDefaultTransform(type))
{
IntegerDataPtr i = IntegerDataPtr::dynamicCast(_src);
if(i)
{
dest->setValue(i->getValue(), false);
}
else
{
StringDataPtr s = StringDataPtr::dynamicCast(_src);
if(s)
{
string str = s->getValue();
Ice::Long value;
if(IceUtil::stringToInt64(str, value))
{
dest->setValue(value, false);
}
else
{
conversionError(type, _src->getType(), str);
}
}
else
{
typeMismatchError(type, _src->getType());
}
}
}
_info->executeCustomTransform(dest, _src);
}
示例3: if
void
FreezeScript::AssignVisitor::visitBoolean(const BooleanDataPtr& dest)
{
StringDataPtr s = StringDataPtr::dynamicCast(_src);
if(s)
{
string v = s->getValue();
if(v == "true")
{
dest->setValue(true);
}
else if(v == "false")
{
dest->setValue(false);
}
else
{
conversionError(dest->getType(), _src->getType(), v);
}
}
else
{
dest->setValue(_src->booleanValue(_convert));
}
}
示例4: rangeError
void
FreezeScript::AssignVisitor::visitEnum(const EnumDataPtr& dest)
{
Slice::TypePtr type = dest->getType();
IntegerDataPtr i = IntegerDataPtr::dynamicCast(_src);
if(i)
{
if(_convert)
{
Ice::Long l = i->integerValue();
if(l < 0 || l > INT_MAX || !dest->setValue(static_cast<Ice::Int>(l)))
{
rangeError(i->toString(), type);
}
}
else
{
conversionError(type, i->getType(), i->toString());
}
}
else
{
string name;
EnumDataPtr e = EnumDataPtr::dynamicCast(_src);
if(e && isCompatible(type, _src->getType()))
{
name = e->toString();
}
else
{
StringDataPtr s = StringDataPtr::dynamicCast(_src);
if(s)
{
name = s->getValue();
}
else
{
typeMismatchError(type, _src->getType());
}
}
if(!dest->setValueAsString(name))
{
conversionError(type, _src->getType(), name);
}
}
}
示例5: typeMismatchError
void
FreezeScript::AssignVisitor::visitProxy(const ProxyDataPtr& dest)
{
ProxyDataPtr p = ProxyDataPtr::dynamicCast(_src);
if(p)
{
dest->setValue(p->getValue());
}
else
{
StringDataPtr s = StringDataPtr::dynamicCast(_src);
if(s)
{
dest->setValue(s->getValue(), false);
}
else
{
typeMismatchError(dest->getType(), _src->getType());
}
}
}
示例6: if
void
FreezeScript::TransformVisitor::visitBoolean(const BooleanDataPtr& dest)
{
Slice::TypePtr type = dest->getType();
if(_info->doDefaultTransform(type))
{
BooleanDataPtr b = BooleanDataPtr::dynamicCast(_src);
if(b)
{
dest->setValue(b->getValue());
}
else
{
StringDataPtr s = StringDataPtr::dynamicCast(_src);
if(s)
{
string v = s->getValue();
if(v == "true")
{
dest->setValue(true);
}
else if(v == "false")
{
dest->setValue(false);
}
else
{
conversionError(type, _src->getType(), v);
}
}
else
{
typeMismatchError(type, _src->getType());
}
}
}
_info->executeCustomTransform(dest, _src);
}