mirror of
https://github.com/mii443/SimpleDatachannel.git
synced 2025-08-22 16:25:31 +00:00
Initial commit
This commit is contained in:
275
include/rtc/description.hpp
Normal file
275
include/rtc/description.hpp
Normal file
@ -0,0 +1,275 @@
|
||||
/**
|
||||
* Copyright (c) 2019-2020 Paul-Louis Ageneau
|
||||
* Copyright (c) 2020 Staz Modrzynski
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library 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
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef RTC_DESCRIPTION_H
|
||||
#define RTC_DESCRIPTION_H
|
||||
|
||||
#include "candidate.hpp"
|
||||
#include "common.hpp"
|
||||
|
||||
#include <iostream>
|
||||
#include <map>
|
||||
#include <vector>
|
||||
|
||||
namespace rtc {
|
||||
|
||||
const string DEFAULT_OPUS_AUDIO_PROFILE =
|
||||
"minptime=10;maxaveragebitrate=96000;stereo=1;sprop-stereo=1;useinbandfec=1";
|
||||
|
||||
// Use Constrained Baseline profile Level 4.2 (necessary for Firefox)
|
||||
// https://developer.mozilla.org/en-US/docs/Web/Media/Formats/WebRTC_codecs#Supported_video_codecs
|
||||
// TODO: Should be 42E0 but 42C0 appears to be more compatible. Investigate this.
|
||||
const string DEFAULT_H264_VIDEO_PROFILE =
|
||||
"profile-level-id=42e01f;packetization-mode=1;level-asymmetry-allowed=1";
|
||||
|
||||
class RTC_CPP_EXPORT Description {
|
||||
public:
|
||||
enum class Type { Unspec, Offer, Answer, Pranswer, Rollback };
|
||||
enum class Role { ActPass, Passive, Active };
|
||||
|
||||
enum class Direction {
|
||||
SendOnly = RTC_DIRECTION_SENDONLY,
|
||||
RecvOnly = RTC_DIRECTION_RECVONLY,
|
||||
SendRecv = RTC_DIRECTION_SENDRECV,
|
||||
Inactive = RTC_DIRECTION_INACTIVE,
|
||||
Unknown = RTC_DIRECTION_UNKNOWN
|
||||
};
|
||||
|
||||
Description(const string &sdp, Type type = Type::Unspec, Role role = Role::ActPass);
|
||||
Description(const string &sdp, string typeString);
|
||||
|
||||
Type type() const;
|
||||
string typeString() const;
|
||||
Role role() const;
|
||||
string bundleMid() const;
|
||||
optional<string> iceUfrag() const;
|
||||
optional<string> icePwd() const;
|
||||
optional<string> fingerprint() const;
|
||||
bool ended() const;
|
||||
|
||||
void hintType(Type type);
|
||||
void setFingerprint(string fingerprint);
|
||||
|
||||
bool hasCandidate(const Candidate &candidate) const;
|
||||
void addCandidate(Candidate candidate);
|
||||
void addCandidates(std::vector<Candidate> candidates);
|
||||
void endCandidates();
|
||||
std::vector<Candidate> extractCandidates();
|
||||
|
||||
operator string() const;
|
||||
string generateSdp(string_view eol) const;
|
||||
string generateApplicationSdp(string_view eol) const;
|
||||
|
||||
class RTC_CPP_EXPORT Entry {
|
||||
public:
|
||||
virtual ~Entry() = default;
|
||||
|
||||
virtual string type() const { return mType; }
|
||||
virtual string description() const { return mDescription; }
|
||||
virtual string mid() const { return mMid; }
|
||||
Direction direction() const { return mDirection; }
|
||||
void setDirection(Direction dir);
|
||||
|
||||
operator string() const;
|
||||
string generateSdp(string_view eol, string_view addr, string_view port) const;
|
||||
|
||||
virtual void parseSdpLine(string_view line);
|
||||
|
||||
std::vector<string>::iterator beginAttributes();
|
||||
std::vector<string>::iterator endAttributes();
|
||||
std::vector<string>::iterator removeAttribute(std::vector<string>::iterator iterator);
|
||||
|
||||
protected:
|
||||
Entry(const string &mline, string mid, Direction dir = Direction::Unknown);
|
||||
virtual string generateSdpLines(string_view eol) const;
|
||||
|
||||
std::vector<string> mAttributes;
|
||||
|
||||
private:
|
||||
string mType;
|
||||
string mDescription;
|
||||
string mMid;
|
||||
Direction mDirection;
|
||||
};
|
||||
|
||||
struct RTC_CPP_EXPORT Application : public Entry {
|
||||
public:
|
||||
Application(string mid = "data");
|
||||
virtual ~Application() = default;
|
||||
|
||||
string description() const override;
|
||||
Application reciprocate() const;
|
||||
|
||||
void setSctpPort(uint16_t port) { mSctpPort = port; }
|
||||
void hintSctpPort(uint16_t port) { mSctpPort = mSctpPort.value_or(port); }
|
||||
void setMaxMessageSize(size_t size) { mMaxMessageSize = size; }
|
||||
|
||||
optional<uint16_t> sctpPort() const { return mSctpPort; }
|
||||
optional<size_t> maxMessageSize() const { return mMaxMessageSize; }
|
||||
|
||||
virtual void parseSdpLine(string_view line) override;
|
||||
|
||||
private:
|
||||
virtual string generateSdpLines(string_view eol) const override;
|
||||
|
||||
optional<uint16_t> mSctpPort;
|
||||
optional<size_t> mMaxMessageSize;
|
||||
};
|
||||
|
||||
// Media (non-data)
|
||||
class RTC_CPP_EXPORT Media : public Entry {
|
||||
public:
|
||||
Media(const string &sdp);
|
||||
Media(const string &mline, string mid, Direction dir = Direction::SendOnly);
|
||||
virtual ~Media() = default;
|
||||
|
||||
string description() const override;
|
||||
Media reciprocate() const;
|
||||
|
||||
void removeFormat(const string &fmt);
|
||||
|
||||
void addSSRC(uint32_t ssrc, optional<string> name, optional<string> msid = nullopt,
|
||||
optional<string> trackID = nullopt);
|
||||
void removeSSRC(uint32_t oldSSRC);
|
||||
void replaceSSRC(uint32_t oldSSRC, uint32_t ssrc, optional<string> name,
|
||||
optional<string> msid = nullopt, optional<string> trackID = nullopt);
|
||||
bool hasSSRC(uint32_t ssrc);
|
||||
std::vector<uint32_t> getSSRCs();
|
||||
std::optional<std::string> getCNameForSsrc(uint32_t ssrc);
|
||||
|
||||
void setBitrate(int bitrate);
|
||||
int getBitrate() const;
|
||||
|
||||
bool hasPayloadType(int payloadType) const;
|
||||
|
||||
void addRTXCodec(unsigned int payloadType, unsigned int originalPayloadType,
|
||||
unsigned int clockRate);
|
||||
|
||||
virtual void parseSdpLine(string_view line) override;
|
||||
|
||||
struct RTPMap {
|
||||
RTPMap(string_view mline);
|
||||
RTPMap() {}
|
||||
|
||||
void removeFB(const string &string);
|
||||
void addFB(const string &string);
|
||||
void addAttribute(string attr) { fmtps.emplace_back(std::move(attr)); }
|
||||
|
||||
int pt;
|
||||
string format;
|
||||
int clockRate;
|
||||
string encParams;
|
||||
|
||||
std::vector<string> rtcpFbs;
|
||||
std::vector<string> fmtps;
|
||||
|
||||
static int parsePT(string_view view);
|
||||
void setMLine(string_view view);
|
||||
};
|
||||
|
||||
void addRTPMap(const RTPMap &map);
|
||||
|
||||
std::map<int, RTPMap>::iterator beginMaps();
|
||||
std::map<int, RTPMap>::iterator endMaps();
|
||||
std::map<int, RTPMap>::iterator removeMap(std::map<int, RTPMap>::iterator iterator);
|
||||
|
||||
private:
|
||||
virtual string generateSdpLines(string_view eol) const override;
|
||||
|
||||
int mBas = -1;
|
||||
|
||||
Media::RTPMap &getFormat(int fmt);
|
||||
Media::RTPMap &getFormat(const string &fmt);
|
||||
|
||||
std::map<int, RTPMap> mRtpMap;
|
||||
std::vector<uint32_t> mSsrcs;
|
||||
std::map<uint32_t, string> mCNameMap;
|
||||
};
|
||||
|
||||
class RTC_CPP_EXPORT Audio : public Media {
|
||||
public:
|
||||
Audio(string mid = "audio", Direction dir = Direction::SendOnly);
|
||||
|
||||
void addAudioCodec(int payloadType, string codec, optional<string> profile = std::nullopt);
|
||||
|
||||
void addOpusCodec(int payloadType, optional<string> profile = DEFAULT_OPUS_AUDIO_PROFILE);
|
||||
};
|
||||
|
||||
class RTC_CPP_EXPORT Video : public Media {
|
||||
public:
|
||||
Video(string mid = "video", Direction dir = Direction::SendOnly);
|
||||
|
||||
void addVideoCodec(int payloadType, string codec, optional<string> profile = std::nullopt);
|
||||
|
||||
void addH264Codec(int payloadType, optional<string> profile = DEFAULT_H264_VIDEO_PROFILE);
|
||||
void addVP8Codec(int payloadType);
|
||||
void addVP9Codec(int payloadType);
|
||||
};
|
||||
|
||||
bool hasApplication() const;
|
||||
bool hasAudioOrVideo() const;
|
||||
bool hasMid(string_view mid) const;
|
||||
|
||||
int addMedia(Media media);
|
||||
int addMedia(Application application);
|
||||
int addApplication(string mid = "data");
|
||||
int addVideo(string mid = "video", Direction dir = Direction::SendOnly);
|
||||
int addAudio(string mid = "audio", Direction dir = Direction::SendOnly);
|
||||
void clearMedia();
|
||||
|
||||
variant<Media *, Application *> media(unsigned int index);
|
||||
variant<const Media *, const Application *> media(unsigned int index) const;
|
||||
unsigned int mediaCount() const;
|
||||
|
||||
const Application *application() const;
|
||||
Application *application();
|
||||
|
||||
static Type stringToType(const string &typeString);
|
||||
static string typeToString(Type type);
|
||||
|
||||
private:
|
||||
optional<Candidate> defaultCandidate() const;
|
||||
shared_ptr<Entry> createEntry(string mline, string mid, Direction dir);
|
||||
void removeApplication();
|
||||
|
||||
Type mType;
|
||||
|
||||
// Session-level attributes
|
||||
Role mRole;
|
||||
string mUsername;
|
||||
string mSessionId;
|
||||
optional<string> mIceUfrag, mIcePwd;
|
||||
optional<string> mFingerprint;
|
||||
|
||||
// Entries
|
||||
std::vector<shared_ptr<Entry>> mEntries;
|
||||
shared_ptr<Application> mApplication;
|
||||
|
||||
// Candidates
|
||||
std::vector<Candidate> mCandidates;
|
||||
bool mEnded = false;
|
||||
};
|
||||
|
||||
} // namespace rtc
|
||||
|
||||
RTC_CPP_EXPORT std::ostream &operator<<(std::ostream &out, const rtc::Description &description);
|
||||
RTC_CPP_EXPORT std::ostream &operator<<(std::ostream &out, rtc::Description::Type type);
|
||||
RTC_CPP_EXPORT std::ostream &operator<<(std::ostream &out, rtc::Description::Role role);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user