upm/src/ozw/zwNode.cxx
Noel Eck 6be7012987 Werror: Enable warnings as errors
Added C/CXX warning messages similar to MRAA (w/ -Werror).

    * Added syslog warning for missing switch cases
    * Cleaned up uint vs int usage
    * Fixed redifinition errors for C structs
    * Added virtual destructors for base classes
    * Removed redundant CMAKE_CXX_FLAGS from COMPILE_FLAGS for all three
      wrapper languages.  The CMAKE_CXX_FLAGS were showing up twice in
      the compile commands for the wrappers.
    * Added CMake WERROR option to enable/disable warnings as errors for
      all targets.
    * Disable a handful of compiler warnings for the wrapper cxx files,
      this minimizes the number of warnings from auto-generated code).

Signed-off-by: Noel Eck <noel.eck@intel.com>
2016-10-25 13:25:32 -07:00

198 lines
4.5 KiB
C++

/*
* Author: Jon Trulson <jtrulson@ics.com>
* Copyright (c) 2015-2016 Intel Corporation.
*
* 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.
*/
#include <stdint.h>
#include <string>
#include <cinttypes>
#include "zwNode.hpp"
#include "Node.h"
using namespace upm;
using namespace std;
using namespace OpenZWave;
zwNode::zwNode(uint32_t homeId, uint8_t nodeId)
{
m_homeId = homeId;
m_nodeId = nodeId;
m_vindex = 0;
m_list.clear();
m_values.clear();
m_autoUpdate = false;
}
zwNode::~zwNode()
{
}
uint8_t zwNode::nodeId()
{
return m_nodeId;
}
uint32_t zwNode::homeId()
{
return m_homeId;
}
void zwNode::addValueID(ValueID vid)
{
m_list.push_back(vid);
if (m_autoUpdate)
updateVIDMap();
}
void zwNode::removeValueID(ValueID vid)
{
m_list.remove(vid);
if (m_autoUpdate)
updateVIDMap();
}
void zwNode::updateVIDMap()
{
m_values.clear();
m_vindex = 0;
m_list.sort();
for (auto it = m_list.cbegin(); it != m_list.cend(); ++it)
{
// We need to use insert since ValueID's default ctor is private
m_values.insert(std::pair<int, ValueID>(m_vindex++, *it));
}
}
bool zwNode::indexToValueID(int index, ValueID *vid)
{
valueMap_t::iterator it;
it = m_values.find(index);
if (it == m_values.end())
{
// not found, return false
return false;
}
else
*vid = (*it).second;
return true;
}
void zwNode::dumpNode(bool all)
{
for (auto it = m_values.cbegin();
it != m_values.cend(); ++it)
{
int vindex = it->first;
ValueID vid = it->second;
string label = Manager::Get()->GetValueLabel(vid);
string valueAsStr;
Manager::Get()->GetValueAsString(vid, &valueAsStr);
string valueUnits = Manager::Get()->GetValueUnits(vid);
ValueID::ValueType vType = vid.GetType();
string vTypeStr;
string perms;
if (Manager::Get()->IsValueWriteOnly(vid))
perms = "WO";
else if (Manager::Get()->IsValueReadOnly(vid))
perms = "RO";
else
perms = "RW";
switch (vType)
{
case ValueID::ValueType_Bool:
vTypeStr = "bool";
break;
case ValueID::ValueType_Byte:
vTypeStr = "byte";
break;
case ValueID::ValueType_Decimal:
vTypeStr = "float";
break;
case ValueID::ValueType_Int:
vTypeStr = "int32";
break;
case ValueID::ValueType_List:
vTypeStr = "list";
break;
case ValueID::ValueType_Schedule:
vTypeStr = "schedule";
break;
case ValueID::ValueType_Short:
vTypeStr = "int16";
break;
case ValueID::ValueType_String:
vTypeStr = "string";
break;
case ValueID::ValueType_Button:
vTypeStr = "button";
break;
case ValueID::ValueType_Raw:
vTypeStr = "raw";
break;
default:
vTypeStr = "undefined";
break;
}
// by default we only want user values, unless 'all' is true
if (all || (vid.GetGenre() == ValueID::ValueGenre_User))
{
fprintf(stderr, "\t Index: %d, Type: %s, Label: %s, Value: %s %s (%s)\n",
vindex,
vTypeStr.c_str(),
label.c_str(),
valueAsStr.c_str(),
valueUnits.c_str(),
perms.c_str());
fprintf(stderr, "\t\t VID: %016llx\n",
vid.GetId());
}
}
}