From 22c2633ac833ae78ff84beafce19cec0f05758a2 Mon Sep 17 00:00:00 2001 From: Loïc Collignon Date: Tue, 12 Jun 2018 11:00:25 +0200 Subject: Update to last softmixer and hal, plus some fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use the last 4a-softmixer and 4a-hal-generic versions. Fix some potential crash and performance bottleneck. Now support sessions to disallow multiple opening or closing by not owner. Change-Id: I95b020a3fab03b1e1058812adae1d8d5986f282b Signed-off-by: Loïc Collignon --- ahl-binding/ahl-4a.cpp | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 ahl-binding/ahl-4a.cpp (limited to 'ahl-binding/ahl-4a.cpp') diff --git a/ahl-binding/ahl-4a.cpp b/ahl-binding/ahl-4a.cpp deleted file mode 100644 index b5fdc16..0000000 --- a/ahl-binding/ahl-4a.cpp +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright (C) 2018 "IoT.bzh" - * Author Loïc Collignon - * - * 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& ahl_4a_t::hals() const -{ - return hals_; -} - -const std::vector& 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); - } -} -- cgit 1.2.3-korg