2021-12-20 00:23:31 +01:00

65 Zeilen
1.7 KiB
C++

/**
* server/src/hardware/protocol/ecos/object/switchmanager.cpp
*
* This file is part of the traintastic source code.
*
* Copyright (C) 2021 Reinder Feenstra
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "switchmanager.hpp"
#include <cassert>
#include "switch.hpp"
#include "../messages.hpp"
namespace ECoS {
SwitchManager::SwitchManager(Kernel& kernel)
: Object(kernel, ObjectId::switchManager)
{
requestView();
send(queryObjects(m_id, Switch::options));
}
bool SwitchManager::receiveReply(const Reply& reply)
{
assert(reply.objectId == m_id);
if(reply.command == Command::queryObjects)
{
for(std::string_view line : reply.lines)
{
if(uint16_t id; parseId(line, id) && !objectExists(id))
{
addObject(std::make_unique<Switch>(m_kernel, id));
}
}
return true;
}
return Object::receiveReply(reply);
}
bool SwitchManager::receiveEvent(const Event& event)
{
assert(event.objectId == m_id);
return Object::receiveEvent(event);
}
}