LCOV - code coverage report
Current view: top level - foo/src/media - media_attribute.cpp (source / functions) Hit Total Coverage
Test: jami-coverage-filtered.info Lines: 99 110 90.0 %
Date: 2026-02-28 10:41:24 Functions: 14 14 100.0 %

          Line data    Source code
       1             : /*
       2             :  * Copyright (C) 2004-2026 Savoir-faire Linux Inc.
       3             :  *
       4             :  * This program is free software: you can redistribute it and/or modify
       5             :  * it under the terms of the GNU General Public License as published by
       6             :  * the Free Software Foundation, either version 3 of the License, or
       7             :  * (at your option) any later version.
       8             :  *
       9             :  * This program is distributed in the hope that it will be useful,
      10             :  * but WITHOUT ANY WARRANTY; without even the implied warranty of
      11             :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
      12             :  * GNU General Public License for more details.
      13             :  *
      14             :  * You should have received a copy of the GNU General Public License
      15             :  * along with this program. If not, see <https://www.gnu.org/licenses/>.
      16             :  */
      17             : 
      18             : #include "media/media_attribute.h"
      19             : #include "jami/media_const.h"
      20             : #include "logger.h"
      21             : #include "string_utils.h"
      22             : 
      23             : namespace jami {
      24             : 
      25         996 : MediaAttribute::MediaAttribute(const libjami::MediaMap& mediaMap, bool secure)
      26             : {
      27         996 :     std::pair<bool, MediaType> pairType = getMediaType(mediaMap);
      28         996 :     if (pairType.first)
      29         996 :         type_ = pairType.second;
      30             : 
      31         996 :     std::pair<bool, bool> pairBool;
      32             : 
      33         996 :     pairBool = getBoolValue(mediaMap, libjami::Media::MediaAttributeKey::MUTED);
      34         996 :     if (pairBool.first)
      35         996 :         muted_ = pairBool.second;
      36             : 
      37         996 :     pairBool = getBoolValue(mediaMap, libjami::Media::MediaAttributeKey::ENABLED);
      38         996 :     if (pairBool.first)
      39         996 :         enabled_ = pairBool.second;
      40             : 
      41         996 :     std::pair<bool, std::string> pairString;
      42         996 :     pairString = getStringValue(mediaMap, libjami::Media::MediaAttributeKey::SOURCE);
      43         996 :     if (pairBool.first)
      44         996 :         sourceUri_ = pairString.second;
      45             : 
      46         996 :     pairString = getStringValue(mediaMap, libjami::Media::MediaAttributeKey::LABEL);
      47         996 :     if (pairBool.first)
      48         996 :         label_ = pairString.second;
      49             : 
      50         996 :     pairBool = getBoolValue(mediaMap, libjami::Media::MediaAttributeKey::HOLD);
      51         996 :     if (pairBool.first)
      52         968 :         hold_ = pairBool.second;
      53             : 
      54         996 :     secure_ = secure;
      55         996 : }
      56             : 
      57             : std::vector<MediaAttribute>
      58         611 : MediaAttribute::buildMediaAttributesList(const std::vector<libjami::MediaMap>& mediaList, bool secure)
      59             : {
      60         611 :     std::vector<MediaAttribute> mediaAttrList;
      61         611 :     mediaAttrList.reserve(mediaList.size());
      62             : 
      63        1607 :     for (auto const& mediaMap : mediaList) {
      64         996 :         mediaAttrList.emplace_back(MediaAttribute(mediaMap, secure));
      65             :     }
      66             : 
      67         611 :     return mediaAttrList;
      68           0 : }
      69             : 
      70             : MediaType
      71        1000 : MediaAttribute::stringToMediaType(const std::string& mediaType)
      72             : {
      73        1000 :     if (mediaType.compare(libjami::Media::MediaAttributeValue::AUDIO) == 0)
      74         554 :         return MediaType::MEDIA_AUDIO;
      75         446 :     if (mediaType.compare(libjami::Media::MediaAttributeValue::VIDEO) == 0)
      76         446 :         return MediaType::MEDIA_VIDEO;
      77           0 :     return MediaType::MEDIA_NONE;
      78             : }
      79             : 
      80             : std::pair<bool, MediaType>
      81         996 : MediaAttribute::getMediaType(const libjami::MediaMap& map)
      82             : {
      83         996 :     const auto& iter = map.find(libjami::Media::MediaAttributeKey::MEDIA_TYPE);
      84         996 :     if (iter == map.end()) {
      85           0 :         return {false, MediaType::MEDIA_NONE};
      86             :     }
      87             : 
      88         996 :     auto type = stringToMediaType(iter->second);
      89         996 :     if (type == MediaType::MEDIA_NONE) {
      90           0 :         JAMI_ERR("Invalid value [%s] for a media type key in media map", iter->second.c_str());
      91           0 :         return {false, type};
      92             :     }
      93             : 
      94         996 :     return {true, type};
      95             : }
      96             : 
      97             : std::pair<bool, bool>
      98        2988 : MediaAttribute::getBoolValue(const libjami::MediaMap& map, const std::string& key)
      99             : {
     100        2988 :     const auto& iter = map.find(key);
     101        2988 :     if (iter == map.end()) {
     102          28 :         return {false, false};
     103             :     }
     104             : 
     105        2960 :     auto const& value = iter->second;
     106        2960 :     if (value.compare(TRUE_STR) == 0)
     107        1031 :         return {true, true};
     108        1929 :     if (value.compare(FALSE_STR) == 0)
     109        1929 :         return {true, false};
     110             : 
     111           0 :     JAMI_ERR("Invalid value %s for a boolean key", value.c_str());
     112           0 :     return {false, false};
     113             : }
     114             : 
     115             : std::pair<bool, std::string>
     116        1992 : MediaAttribute::getStringValue(const libjami::MediaMap& map, const std::string& key)
     117             : {
     118        1992 :     const auto& iter = map.find(key);
     119        1992 :     if (iter == map.end()) {
     120           0 :         return {false, {}};
     121             :     }
     122             : 
     123        1992 :     return {true, iter->second};
     124             : }
     125             : 
     126             : char const*
     127        5244 : MediaAttribute::boolToString(bool val)
     128             : {
     129        5244 :     return val ? TRUE_STR : FALSE_STR;
     130             : }
     131             : 
     132             : char const*
     133        2064 : MediaAttribute::mediaTypeToString(MediaType type)
     134             : {
     135        2064 :     if (type == MediaType::MEDIA_AUDIO)
     136        1096 :         return libjami::Media::MediaAttributeValue::AUDIO;
     137         968 :     if (type == MediaType::MEDIA_VIDEO)
     138         916 :         return libjami::Media::MediaAttributeValue::VIDEO;
     139          52 :     if (type == MediaType::MEDIA_NONE)
     140          52 :         return libjami::Media::MediaAttributeValue::SRC_TYPE_NONE;
     141           0 :     return "UNKNOWN";
     142             : }
     143             : 
     144             : bool
     145         109 : MediaAttribute::hasMediaType(const std::vector<MediaAttribute>& mediaList, MediaType type)
     146             : {
     147         109 :     return mediaList.end() != std::find_if(mediaList.begin(), mediaList.end(), [type](const MediaAttribute& media) {
     148         137 :                return media.type_ == type;
     149         109 :            });
     150             : }
     151             : 
     152             : libjami::MediaMap
     153        1748 : MediaAttribute::toMediaMap(const MediaAttribute& mediaAttr)
     154             : {
     155        1748 :     libjami::MediaMap mediaMap;
     156             : 
     157        1748 :     mediaMap.emplace(libjami::Media::MediaAttributeKey::MEDIA_TYPE, mediaTypeToString(mediaAttr.type_));
     158        1748 :     mediaMap.emplace(libjami::Media::MediaAttributeKey::LABEL, mediaAttr.label_);
     159        1748 :     mediaMap.emplace(libjami::Media::MediaAttributeKey::ENABLED, boolToString(mediaAttr.enabled_));
     160        1748 :     mediaMap.emplace(libjami::Media::MediaAttributeKey::MUTED, boolToString(mediaAttr.muted_));
     161        1748 :     mediaMap.emplace(libjami::Media::MediaAttributeKey::SOURCE, mediaAttr.sourceUri_);
     162        1748 :     mediaMap.emplace(libjami::Media::MediaAttributeKey::HOLD, boolToString(mediaAttr.hold_));
     163             : 
     164        1748 :     return mediaMap;
     165           0 : }
     166             : 
     167             : std::vector<libjami::MediaMap>
     168         943 : MediaAttribute::mediaAttributesToMediaMaps(std::vector<MediaAttribute> mediaAttrList)
     169             : {
     170         943 :     std::vector<libjami::MediaMap> mediaList;
     171         943 :     mediaList.reserve(mediaAttrList.size());
     172        2686 :     for (auto const& media : mediaAttrList) {
     173        1743 :         mediaList.emplace_back(toMediaMap(media));
     174             :     }
     175             : 
     176         943 :     return mediaList;
     177           0 : }
     178             : 
     179             : std::string
     180        2552 : MediaAttribute::toString(bool full) const
     181             : {
     182        2552 :     std::ostringstream descr;
     183        2552 :     descr << "type " << (type_ == MediaType::MEDIA_AUDIO ? "[AUDIO]" : "[VIDEO]");
     184        2552 :     descr << " ";
     185        2552 :     descr << "enabled " << (enabled_ ? "[YES]" : "[NO]");
     186        2552 :     descr << " ";
     187        2552 :     descr << "muted " << (muted_ ? "[YES]" : "[NO]");
     188        2552 :     descr << " ";
     189        2552 :     descr << "label [" << label_ << "]";
     190             : 
     191        2552 :     if (full) {
     192        2108 :         descr << " ";
     193        2108 :         descr << "source [" << sourceUri_ << "]";
     194        2108 :         descr << " ";
     195        2108 :         descr << "secure " << (secure_ ? "[YES]" : "[NO]");
     196             :     }
     197             : 
     198        5104 :     return descr.str();
     199        2552 : }
     200             : 
     201             : bool
     202        4316 : MediaAttribute::hasValidVideo()
     203             : {
     204        4316 :     return type_ == MediaType::MEDIA_VIDEO && enabled_ && !muted_ && !hold_;
     205             : }
     206             : } // namespace jami

Generated by: LCOV version 1.14