当前位置: 首页>>代码示例>>C++>>正文


C++ PropertiesPtr::setDescription方法代码示例

本文整理汇总了C++中PropertiesPtr::setDescription方法的典型用法代码示例。如果您正苦于以下问题:C++ PropertiesPtr::setDescription方法的具体用法?C++ PropertiesPtr::setDescription怎么用?C++ PropertiesPtr::setDescription使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PropertiesPtr的用法示例。


在下文中一共展示了PropertiesPtr::setDescription方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: readProp

    PropertiesPtr JsonSchema::readProp(cJSON *childProperties, const std::string &attName )
    {
        PropertiesPtr property = std::make_shared<Properties>(attName);

        cJSON *propertyDescription = cJSON_GetObjectItem(childProperties, "description");
        if (propertyDescription)
        {
            property->setDescription(propertyDescription->valuestring);
        }
        cJSON *propertyType = cJSON_GetObjectItem(childProperties, "type");
        if (propertyType)
        {
            std::string attType;
            if (propertyType->type == 4)
            {
                attType = propertyType->valuestring;
                property->setType(attType);
            }
            else if (propertyType->type == 5)
            {
                attType = cJSON_GetArrayItem(propertyType, 0)->valuestring;
                property->setType(attType);
            }
            readValues(childProperties, property, attType);
        }
        cJSON *defaultValue = cJSON_GetObjectItem(childProperties, "default");
        if (defaultValue)
        {
            if (defaultValue->type == 4)
            {
                property->setValue((std::string)defaultValue->valuestring);
            }
            else if (defaultValue->type == 3)
            {
                if (property->getType() == "number")
                    property->setValue((double)defaultValue->valuedouble);
                else
                    property->setValue((int)defaultValue->valueint );
            }
            else if (defaultValue->type == 1)
            {
                property->setValue((bool)true);
            }
            else if (defaultValue->type == 0)
            {
                property->setValue((bool)false);
            }

        }
        cJSON *allowedvalues = cJSON_GetObjectItem(childProperties, "enum");
        if (allowedvalues)
        {
            if ((cJSON_GetArrayItem(allowedvalues, 0)->type) == 4)
            {
                int size = cJSON_GetArraySize(allowedvalues);
                int idx = 0;
                std::vector<std::string> allwdValues;
                do
                {
                    allwdValues.push_back(cJSON_GetArrayItem(allowedvalues, idx)->valuestring);
                }
                while ( ++idx < size);
                property->setAllowedValues(allwdValues);
            }
            else if ((cJSON_GetArrayItem(allowedvalues, 0)->type) == 3)
            {
                int size = cJSON_GetArraySize(allowedvalues);
                int idx = 0;
                if (property->getType() == "number")
                {
                    std::vector<double> allwdValues;
                    do
                    {
                        allwdValues.push_back(cJSON_GetArrayItem(allowedvalues, idx)->valuedouble);
                    }
                    while ( ++idx < size);
                    property->setAllowedValues(allwdValues);
                }
                else
                {
                    std::vector<int> allwdValues;
                    do
                    {
                        allwdValues.push_back(cJSON_GetArrayItem(allowedvalues, idx)->valueint);
                    }
                    while ( ++idx < size);
                    property->setAllowedValues(allwdValues);
                }
            }
            else if (((cJSON_GetArrayItem(allowedvalues, 0)->type) == 1)
                     || ((cJSON_GetArrayItem(allowedvalues, 0)->type) == 0))
            {
                int size = cJSON_GetArraySize(allowedvalues);
                int idx = 0;
                std::vector<bool> allwdValues;
                do
                {
                    if (cJSON_GetArrayItem(allowedvalues, idx)->type)
                        allwdValues.push_back(true);
                    else
//.........这里部分代码省略.........
开发者ID:TianyouLi,项目名称:iotivity,代码行数:101,代码来源:JsonSchema.cpp


注:本文中的PropertiesPtr::setDescription方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。