📄 jid.h
字号:
/* Copyright (c) 2005-2008 by Jakob Schroeter <js@camaya.net> This file is part of the gloox library. http://camaya.net/gloox This software is distributed under a license. The full license agreement can be found in the file LICENSE in this distribution. This software may not be copied, modified, sold or distributed other than expressed in the named license agreement. This software is distributed without any warranty.*/#ifndef JID_H__#define JID_H__#include "macros.h"#include <string>namespace gloox{ /** * @brief An abstraction of a JID. * * @author Jakob Schroeter <js@camaya.net> * @since 0.4 */ class GLOOX_API JID { public: /** * Constructs an empty JID. */ JID() {} /** * Constructs a new JID from a string. * @param jid The string containing the JID. */ JID( const std::string& jid ) { setJID( jid ); } /** * Destructor. */ ~JID() {} /** * Sets the JID from a string. * @param jid The string containing the JID. */ void setJID( const std::string& jid ); /** * Returns the full (prepped) JID (user\@host/resource). * @return The full JID. */ const std::string& full() const { return m_full; } /** * Returns the bare (prepped) JID (user\@host). * @return The bare JID. */ const std::string& bare() const { return m_bare; } /** * Creates and returns a JID from this JID's node and server parts. * @return The bare JID. * @since 0.9 */ JID bareJID() const { return JID( bare() ); } /** * Creates and returns a JID from this JID's node, server and resource parts. * @return The full JID. * @since 0.9 * @deprecated */ GLOOX_DEPRECATED JID fullJID() const { return JID( full() ); } /** * Sets the username. * @param username The new username. */ void setUsername( const std::string& username ); /** * Sets the server. * @param server The new server. */ void setServer( const std::string& server ); /** * Sets the resource. * @param resource The new resource. */ void setResource( const std::string& resource ); /** * Returns the prepped username. * @return The current username. */ const std::string& username() const { return m_username; } /** * Returns the prepped server name. * @return The current server. */ const std::string& server() const { return m_server; } /** * Returns the raw (unprepped) server name. * @return The raw server name. */ const std::string& serverRaw() const { return m_serverRaw; } /** * Returns the prepped resource. * @return The current resource. */ const std::string& resource() const { return m_resource; } /** * A JID is empty as long as no server is set. * @return @b True if the JID is empty, @b false otherwise. * @deprecated Use operator bool() instead */ GLOOX_DEPRECATED bool empty() const { return m_server.empty(); } /** * Compares two JIDs. * @param right The second JID. */ bool operator==( const JID& right ) const { return full() == right.full(); } /** * Compares two JIDs. * @param right The second JID. */ bool operator!=( const JID& right ) const { return full() != right.full(); } /** * Returns @b true if the Tag is valid, @b false otherwise. */ operator bool() const { return !m_server.empty(); } private: std::string m_resource; std::string m_username; std::string m_server; std::string m_serverRaw; std::string m_bare; std::string m_full; /** * Utility function to rebuild both the bare and full jid. */ void setStrings() { setBare(); setFull(); } /** * Utility function rebuilding the bare jid. * \note Do not use this function directly, instead use setStrings. */ void setBare(); /** * Utility function rebuilding the full jid. */ void setFull(); };}#endif // JID_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -