Line data Source code
1 : /* 2 : * Copyright (C) 2004-2025 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 : #pragma once 18 : 19 : #ifdef HAVE_CONFIG_H 20 : #include "config.h" 21 : #endif 22 : 23 : #include "media/media_codec.h" 24 : #include "jami.h" 25 : 26 : namespace jami { 27 : 28 : class MediaAttribute 29 : { 30 : public: 31 803 : MediaAttribute(MediaType type = MediaType::MEDIA_NONE, 32 : bool muted = false, 33 : bool secure = true, 34 : bool enabled = false, 35 : std::string_view source = {}, 36 : std::string_view label = {}, 37 : bool onHold = false) 38 803 : : type_(type) 39 803 : , muted_(muted) 40 803 : , secure_(secure) 41 803 : , enabled_(enabled) 42 803 : , sourceUri_(source) 43 803 : , label_(label) 44 803 : , onHold_(onHold) 45 803 : {} 46 : 47 : MediaAttribute(const libjami::MediaMap& mediaMap, bool secure); 48 : 49 : static std::vector<MediaAttribute> buildMediaAttributesList(const std::vector<libjami::MediaMap>& mediaList, 50 : bool secure); 51 : 52 : static MediaType stringToMediaType(const std::string& mediaType); 53 : 54 : static std::pair<bool, MediaType> getMediaType(const libjami::MediaMap& map); 55 : 56 : static std::pair<bool, bool> getBoolValue(const libjami::MediaMap& mediaMap, const std::string& key); 57 : 58 : static std::pair<bool, std::string> getStringValue(const libjami::MediaMap& mediaMap, const std::string& key); 59 : 60 : // Return true if at least one media has a matching type. 61 : static bool hasMediaType(const std::vector<MediaAttribute>& mediaList, MediaType type); 62 : 63 : // Return a string of a boolean 64 : static char const* boolToString(bool val); 65 : 66 : // Return a string of the media type 67 : static char const* mediaTypeToString(MediaType type); 68 : 69 : // Convert MediaAttribute to MediaMap 70 : static libjami::MediaMap toMediaMap(const MediaAttribute& mediaAttr); 71 : 72 : // Serialize a vector of MediaAttribute to a vector of MediaMap 73 : static std::vector<libjami::MediaMap> mediaAttributesToMediaMaps(std::vector<MediaAttribute> mediaAttrList); 74 : 75 : std::string toString(bool full = false) const; 76 : 77 : MediaType type_ {MediaType::MEDIA_NONE}; 78 : bool muted_ {false}; 79 : bool secure_ {true}; 80 : bool enabled_ {false}; 81 : std::string sourceUri_ {}; 82 : std::string label_ {}; 83 : bool onHold_ {false}; 84 : 85 : // NOTE: the hold and mute attributes are related but not 86 : // tightly coupled. A hold/unhold operation should always 87 : // trigger a new re-invite to notify the change in media 88 : // direction. For instance, on an active call, the hold action 89 : // would change the media direction attribute from "sendrecv" 90 : // to "sendonly". A new SDP with the new media direction will 91 : // be generated and sent to the peer in the re-invite. 92 : // In contrast, the mute attribute is a local attribute, and 93 : // describes the presence (or absence) of the media signal in 94 : // the stream. In other words, the mute action can be performed 95 : // with or without a media direction change (no re-invite). 96 : // For instance, muting the audio can be done by disabling the 97 : // audio input (capture) of the encoding session, resulting in 98 : // sending RTP packets without actual audio (silence). 99 : 100 : bool hasValidVideo(); 101 : }; 102 : } // namespace jami