D++ (DPP)
C++ Discord API Bot Library
dpp::discord_client Class Reference

Implements a discord client. Each discord_client connects to one shard and derives from a websocket client. More...

#include <discordclient.h>

+ Inheritance diagram for dpp::discord_client:
+ Collaboration diagram for dpp::discord_client:

Public Member Functions

virtual void log (dpp::loglevel severity, const std::string &msg) const
 
virtual void HandleEvent (const std::string &event, json &j, const std::string &raw)
 
uint64_t get_guild_count ()
 Get the Guild Count for this shard. More...
 
uint64_t get_member_count ()
 Get the Member Count for this shard. More...
 
uint64_t get_channel_count ()
 Get the Channel Count for this shard. More...
 
virtual void OneSecondTimer ()
 
void QueueMessage (const std::string &j, bool to_front=false)
 Queue a message to be sent via the websocket. More...
 
void ClearQueue ()
 Clear the outbound message queue. More...
 
size_t GetQueueSize ()
 Get the size of the outbound message queue. More...
 
bool is_connected ()
 Returns true if the shard is connected. More...
 
dpp::utility::uptime get_uptime ()
 Returns the connection time of the shard. More...
 
 discord_client (dpp::cluster *_cluster, uint32_t _shard_id, uint32_t _max_shards, const std::string &_token, uint32_t intents=0, bool compressed=true)
 
virtual ~discord_client ()
 
uint64_t get_decompressed_bytes_in ()
 
virtual bool HandleFrame (const std::string &buffer)
 
virtual void Error (uint32_t errorcode)
 
void Run ()
 
void connect_voice (snowflake guild_id, snowflake channel_id)
 Connect to a voice channel. More...
 
void disconnect_voice (snowflake guild_id)
 Disconnect from the connected voice channel on a guild. More...
 
voiceconnget_voice (snowflake guild_id)
 
virtual void write (const std::string &data)
 Write to websocket. Encapsulates data in frames if the status is CONNECTED. More...
 
virtual bool HandleBuffer (std::string &buffer)
 Processes incoming frames from the SSL socket input buffer. More...
 
virtual void close ()
 Close websocket. More...
 
uint64_t get_bytes_out ()
 
uint64_t get_bytes_in ()
 
void ReadLoop ()
 Nonblocking I/O loop. More...
 

Public Attributes

class dpp::clustercreator
 
uint32_t heartbeat_interval
 
time_t last_heartbeat
 
uint32_t shard_id
 
uint32_t max_shards
 
std::thread::native_handle_type thread_id
 
uint64_t last_seq
 
std::string token
 
uint32_t intents
 
std::string sessionid
 
std::mutex voice_mutex
 
uint32_t resumes
 
uint32_t reconnects
 
bool ready
 
time_t last_heartbeat_ack
 
std::unordered_map< snowflake, voiceconn * > connecting_voice_channels
 
std::function< int()> custom_readable_fd
 Attaching an additional file descriptor to this function will send notifications when there is data to read. More...
 
std::function< int()> custom_writeable_fd
 Attaching an additional file descriptor to this function will send notifications when you are able to write to the socket. More...
 
std::function< void()> custom_readable_ready
 This event will be called when you can read from the custom fd. More...
 
std::function< void()> custom_writeable_ready
 This event will be called when you can write to a custom fd. More...
 

Protected Member Functions

virtual void Connect ()
 
ws_state GetState ()
 

Protected Attributes

std::string buffer
 
std::string obuffer
 
bool nonblocking
 
int sfd
 
SSL * ssl
 
SSL_CTX * ctx
 
std::string cipher
 
time_t last_tick
 
std::string hostname
 
std::string port
 
uint64_t bytes_out
 
uint64_t bytes_in
 

Detailed Description

Implements a discord client. Each discord_client connects to one shard and derives from a websocket client.

Constructor & Destructor Documentation

◆ discord_client()

dpp::discord_client::discord_client ( dpp::cluster _cluster,
uint32_t  _shard_id,
uint32_t  _max_shards,
const std::string &  _token,
uint32_t  intents = 0,
bool  compressed = true 
)

Constructor takes shard id, max shards and token.

Parameters
_clusterThe owning cluster for this shard
_shard_idThe ID of the shard to start
_max_shardsThe total number of shards across all clusters
_tokenThe bot token to use for identifying to the websocket
intentsPrivileged intents to use, a bitmask of values from dpp::intents
compressedTrue if the received data will be gzip compressed

◆ ~discord_client()

virtual dpp::discord_client::~discord_client ( )
virtual

Destructor

Member Function Documentation

◆ ClearQueue()

void dpp::discord_client::ClearQueue ( )

Clear the outbound message queue.

◆ close()

virtual void dpp::websocket_client::close ( )
virtualinherited

Close websocket.

Reimplemented from dpp::ssl_client.

◆ Connect()

virtual void dpp::websocket_client::Connect ( )
protectedvirtualinherited

(Re)connect

Reimplemented from dpp::ssl_client.

◆ connect_voice()

void dpp::discord_client::connect_voice ( snowflake  guild_id,
snowflake  channel_id 
)

Connect to a voice channel.

Parameters
guild_idGuild where the voice channel is
channel_idChannel ID of the voice channel

◆ disconnect_voice()

void dpp::discord_client::disconnect_voice ( snowflake  guild_id)

Disconnect from the connected voice channel on a guild.

Parameters
guild_idThe guild who's voice channel you wish to disconnect from

◆ Error()

virtual void dpp::discord_client::Error ( uint32_t  errorcode)
virtual

Handle a websocket error.

Parameters
errorcodeThe error returned from the websocket

Reimplemented from dpp::websocket_client.

◆ get_bytes_in()

uint64_t dpp::ssl_client::get_bytes_in ( )
inherited

Get total bytes received

◆ get_bytes_out()

uint64_t dpp::ssl_client::get_bytes_out ( )
inherited

Get total bytes sent

◆ get_channel_count()

uint64_t dpp::discord_client::get_channel_count ( )

Get the Channel Count for this shard.

Returns
uint64_t channel count

◆ get_decompressed_bytes_in()

uint64_t dpp::discord_client::get_decompressed_bytes_in ( )

Get decompressed total bytes received

◆ get_guild_count()

uint64_t dpp::discord_client::get_guild_count ( )

Get the Guild Count for this shard.

Returns
uint64_t guild count

◆ get_member_count()

uint64_t dpp::discord_client::get_member_count ( )

Get the Member Count for this shard.

Returns
uint64_t member count

◆ get_uptime()

dpp::utility::uptime dpp::discord_client::get_uptime ( )

Returns the connection time of the shard.

Returns
dpp::utility::uptime Detail of how long the shard has been connected for

◆ get_voice()

voiceconn * dpp::discord_client::get_voice ( snowflake  guild_id)

◆ GetQueueSize()

size_t dpp::discord_client::GetQueueSize ( )

Get the size of the outbound message queue.

Returns
The size of the queue

◆ GetState()

ws_state dpp::websocket_client::GetState ( )
protectedinherited

Get websocket state

Returns
websocket state

◆ HandleBuffer()

virtual bool dpp::websocket_client::HandleBuffer ( std::string &  buffer)
virtualinherited

Processes incoming frames from the SSL socket input buffer.

Parameters
bufferThe buffer contents. Can modify this value removing the head elements when processed.

Reimplemented from dpp::ssl_client.

◆ HandleEvent()

virtual void dpp::discord_client::HandleEvent ( const std::string &  event,
json &  j,
const std::string &  raw 
)
virtual

Handle an event (opcode 0)

Parameters
eventEvent name, e.g. MESSAGE_CREATE
jJSON object for the event content
rawRaw JSON event string

◆ HandleFrame()

virtual bool dpp::discord_client::HandleFrame ( const std::string &  buffer)
virtual

Handle JSON from the websocket.

Parameters
bufferThe entire buffer content from the websocket client
Returns
True if a frame has been handled

Reimplemented from dpp::websocket_client.

◆ is_connected()

bool dpp::discord_client::is_connected ( )

Returns true if the shard is connected.

Returns
True if connected

◆ log()

virtual void dpp::discord_client::log ( dpp::loglevel  severity,
const std::string &  msg 
) const
virtual

Log a message to whatever log the user is using. The logged message is passed up the chain to the on_log event in user code which can then do whatever it wants to do with it.

Parameters
severityThe log level from dpp::loglevel
msgThe log message to output

Reimplemented from dpp::ssl_client.

◆ OneSecondTimer()

virtual void dpp::discord_client::OneSecondTimer ( )
virtual

Fires every second from the underlying socket I/O loop, used for sending heartbeats

Reimplemented from dpp::websocket_client.

◆ QueueMessage()

void dpp::discord_client::QueueMessage ( const std::string &  j,
bool  to_front = false 
)

Queue a message to be sent via the websocket.

Parameters
jThe JSON data of the message to be sent
to_frontIf set to true, will place the message at the front of the queue not the back (this is for urgent messages such as heartbeat, presence, so they can take precedence over chunk requests etc)

◆ ReadLoop()

void dpp::ssl_client::ReadLoop ( )
inherited

Nonblocking I/O loop.

◆ Run()

void dpp::discord_client::Run ( )

Start and monitor I/O loop

◆ write()

virtual void dpp::websocket_client::write ( const std::string &  data)
virtualinherited

Write to websocket. Encapsulates data in frames if the status is CONNECTED.

Parameters
dataThe data to send.

Reimplemented from dpp::ssl_client.

Member Data Documentation

◆ buffer

std::string dpp::ssl_client::buffer
protectedinherited

Input buffer received from openssl

◆ bytes_in

uint64_t dpp::ssl_client::bytes_in
protectedinherited

Bytes in

◆ bytes_out

uint64_t dpp::ssl_client::bytes_out
protectedinherited

Bytes out

◆ cipher

std::string dpp::ssl_client::cipher
protectedinherited

SSL cipher in use

◆ connecting_voice_channels

std::unordered_map<snowflake, voiceconn*> dpp::discord_client::connecting_voice_channels

List of voice channels we are connecting to keyed by guild id

◆ creator

class dpp::cluster* dpp::discord_client::creator

Owning cluster

◆ ctx

SSL_CTX* dpp::ssl_client::ctx
protectedinherited

OpenSSL context

◆ custom_readable_fd

std::function<int()> dpp::ssl_client::custom_readable_fd
inherited

Attaching an additional file descriptor to this function will send notifications when there is data to read.

NOTE: Only hook this if you NEED it as it can increase CPU usage of the thread! Returning -1 means that you don't want to be notified.

◆ custom_readable_ready

std::function<void()> dpp::ssl_client::custom_readable_ready
inherited

This event will be called when you can read from the custom fd.

◆ custom_writeable_fd

std::function<int()> dpp::ssl_client::custom_writeable_fd
inherited

Attaching an additional file descriptor to this function will send notifications when you are able to write to the socket.

NOTE: Only hook this if you NEED it as it can increase CPU usage of the thread! You should toggle this to -1 when you do not have anything to write otherwise it'll keep triggering repeatedly (it is level triggered).

◆ custom_writeable_ready

std::function<void()> dpp::ssl_client::custom_writeable_ready
inherited

This event will be called when you can write to a custom fd.

◆ heartbeat_interval

uint32_t dpp::discord_client::heartbeat_interval

Heartbeat interval for sending heartbeat keepalive

◆ hostname

std::string dpp::ssl_client::hostname
protectedinherited

Hostname connected to

◆ intents

uint32_t dpp::discord_client::intents

Privileged gateway intents

◆ last_heartbeat

time_t dpp::discord_client::last_heartbeat

Last heartbeat

◆ last_heartbeat_ack

time_t dpp::discord_client::last_heartbeat_ack

Last heartbeat ACK (opcode 11)

◆ last_seq

uint64_t dpp::discord_client::last_seq

Last sequence number received, for resumes and pings

◆ last_tick

time_t dpp::ssl_client::last_tick
protectedinherited

For timers

◆ max_shards

uint32_t dpp::discord_client::max_shards

Total number of shards

◆ nonblocking

bool dpp::ssl_client::nonblocking
protectedinherited

True if in nonblocking mode. The socket switches to nonblocking mode once ReadLoop is called.

◆ obuffer

std::string dpp::ssl_client::obuffer
protectedinherited

Output buffer for sending to openssl

◆ port

std::string dpp::ssl_client::port
protectedinherited

Port connected to

◆ ready

bool dpp::discord_client::ready

True if READY or RESUMED has been received

◆ reconnects

uint32_t dpp::discord_client::reconnects

Reconnection count

◆ resumes

uint32_t dpp::discord_client::resumes

Resume count

◆ sessionid

std::string dpp::discord_client::sessionid

Discord session id

◆ sfd

int dpp::ssl_client::sfd
protectedinherited

Raw file descriptor of connection

◆ shard_id

uint32_t dpp::discord_client::shard_id

Shard ID of this client

◆ ssl

SSL* dpp::ssl_client::ssl
protectedinherited

OpenSSL session

◆ thread_id

std::thread::native_handle_type dpp::discord_client::thread_id

Thread ID

◆ token

std::string dpp::discord_client::token

Discord bot token

◆ voice_mutex

std::mutex dpp::discord_client::voice_mutex

Mutex for voice connections map

D++ Library version 10.0.29D++ Library version 10.0.28D++ Library version 10.0.27D++ Library version 10.0.26D++ Library version 10.0.25D++ Library version 10.0.24D++ Library version 10.0.23D++ Library version 10.0.22D++ Library version 10.0.21D++ Library version 10.0.20D++ Library version 10.0.19D++ Library version 10.0.18D++ Library version 10.0.17D++ Library version 10.0.16D++ Library version 10.0.15D++ Library version 10.0.14D++ Library version 10.0.13D++ Library version 10.0.12D++ Library version 10.0.11D++ Library version 10.0.10D++ Library version 10.0.9D++ Library version 10.0.8D++ Library version 10.0.7D++ Library version 10.0.6D++ Library version 10.0.5D++ Library version 10.0.4D++ Library version 10.0.3D++ Library version 10.0.2D++ Library version 10.0.1D++ Library version 10.0.0D++ Library version 9.0.19D++ Library version 9.0.18D++ Library version 9.0.17D++ Library version 9.0.16D++ Library version 9.0.15D++ Library version 9.0.14D++ Library version 9.0.13D++ Library version 9.0.12D++ Library version 9.0.11D++ Library version 9.0.10D++ Library version 9.0.9D++ Library version 9.0.8D++ Library version 9.0.7D++ Library version 9.0.6D++ Library version 9.0.5D++ Library version 9.0.4D++ Library version 9.0.3D++ Library version 9.0.2D++ Library version 9.0.1D++ Library version 9.0.0D++ Library version 1.0.2D++ Library version 1.0.1D++ Library version 1.0.0