diff options
Diffstat (limited to 'ahl-binding/ahl-4a.cpp')
-rw-r--r-- | ahl-binding/ahl-4a.cpp | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/ahl-binding/ahl-4a.cpp b/ahl-binding/ahl-4a.cpp new file mode 100644 index 0000000..b5fdc16 --- /dev/null +++ b/ahl-binding/ahl-4a.cpp @@ -0,0 +1,49 @@ +/* + * Copyright (C) 2018 "IoT.bzh" + * Author Loïc Collignon <loic.collignon@iot.bzh> + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include "ahl-4a.hpp" + +ahl_4a_t::ahl_4a_t(json_object* j) +{ + jcast_array(hals_, j, "hals"); + jcast_array(roles_, j, "roles"); +} + +ahl_4a_t& ahl_4a_t::operator<<(json_object* j) +{ + jcast_array(hals_, j, "hals"); + jcast_array(roles_, j, "roles"); + return *this; +} + +const std::vector<std::string>& ahl_4a_t::hals() const +{ + return hals_; +} + +const std::vector<role_t>& ahl_4a_t::roles() const +{ + return roles_; +} + +void ahl_4a_t::set_device_uri(std::string stream, std::string device_uri) +{ + for(auto& r : roles_) + { + if (r.stream() == stream) r.device_uri(device_uri); + } +} |