2018-05-28 16:28:51 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
* libretroshare/src/retroshare: rsstatus.h *
|
|
|
|
* *
|
|
|
|
* libretroshare: retroshare core library *
|
|
|
|
* *
|
|
|
|
* Copyright 2007-2008 by Vinny Do, Chris Evi-Parker *
|
|
|
|
* *
|
|
|
|
* This program 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 3 of the *
|
|
|
|
* License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program 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 program. If not, see <https://www.gnu.org/licenses/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2008-04-24 08:26:44 -04:00
|
|
|
#ifndef RS_STATUS_INTERFACE_H
|
|
|
|
#define RS_STATUS_INTERFACE_H
|
|
|
|
|
2008-04-26 05:39:02 -04:00
|
|
|
class RsStatus;
|
2008-04-24 08:26:44 -04:00
|
|
|
|
2008-04-26 05:39:02 -04:00
|
|
|
extern RsStatus *rsStatus;
|
2008-04-24 08:26:44 -04:00
|
|
|
|
2008-04-26 05:39:02 -04:00
|
|
|
#include <iostream>
|
2008-04-26 02:30:40 -04:00
|
|
|
#include <string>
|
2008-04-24 08:11:59 -04:00
|
|
|
#include <inttypes.h>
|
2010-04-15 06:47:48 -04:00
|
|
|
#include <list>
|
2014-03-17 16:56:06 -04:00
|
|
|
#include <retroshare/rstypes.h>
|
2008-04-24 08:11:59 -04:00
|
|
|
|
2010-04-27 07:56:06 -04:00
|
|
|
|
2010-09-12 10:10:28 -04:00
|
|
|
const uint32_t RS_STATUS_OFFLINE = 0x0000;
|
|
|
|
const uint32_t RS_STATUS_AWAY = 0x0001;
|
|
|
|
const uint32_t RS_STATUS_BUSY = 0x0002;
|
|
|
|
const uint32_t RS_STATUS_ONLINE = 0x0003;
|
2010-04-27 07:56:06 -04:00
|
|
|
const uint32_t RS_STATUS_INACTIVE = 0x0004;
|
2008-04-28 07:50:39 -04:00
|
|
|
|
2010-09-12 10:10:28 -04:00
|
|
|
const uint32_t RS_STATUS_COUNT = 0x0005; // count of status
|
|
|
|
|
2010-04-18 16:01:31 -04:00
|
|
|
//! data object for peer status information
|
|
|
|
/*!
|
|
|
|
* data object used for peer status information
|
|
|
|
*/
|
2008-04-24 08:11:59 -04:00
|
|
|
class StatusInfo
|
|
|
|
{
|
2010-07-20 15:45:07 -04:00
|
|
|
public:
|
|
|
|
StatusInfo()
|
|
|
|
{
|
|
|
|
status = 0;
|
|
|
|
time_stamp = 0;
|
|
|
|
}
|
|
|
|
|
2008-04-24 08:26:44 -04:00
|
|
|
public:
|
2014-03-17 16:56:06 -04:00
|
|
|
RsPeerId id;
|
2008-04-24 08:11:59 -04:00
|
|
|
uint32_t status;
|
2018-10-06 19:34:05 -04:00
|
|
|
rstime_t time_stamp; /// for owner time set, and for their peers time sent
|
2008-04-24 08:11:59 -04:00
|
|
|
};
|
|
|
|
|
2010-04-18 16:01:31 -04:00
|
|
|
|
|
|
|
//! Interface to retroshare for Rs status
|
|
|
|
/*!
|
|
|
|
* Provides an interface for retroshare's status functionality
|
|
|
|
*/
|
2008-04-26 05:39:02 -04:00
|
|
|
class RsStatus
|
2008-04-24 08:11:59 -04:00
|
|
|
{
|
|
|
|
public:
|
2010-04-15 06:47:48 -04:00
|
|
|
|
2010-07-20 15:45:07 -04:00
|
|
|
/**
|
|
|
|
* This retrieves the own status info
|
|
|
|
* @param statusInfo is populated with own status
|
|
|
|
*/
|
|
|
|
virtual bool getOwnStatus(StatusInfo& statusInfo) = 0;
|
|
|
|
|
2010-04-18 16:01:31 -04:00
|
|
|
/**
|
|
|
|
* This retrieves the status info on the client's peers
|
|
|
|
* @param statusInfo is populated with client's peer's status
|
|
|
|
*/
|
2010-08-20 14:45:44 -04:00
|
|
|
virtual bool getStatusList(std::list<StatusInfo>& statusInfo) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This retrieves the status info one peer
|
|
|
|
* @param statusInfo is populated with client's peer's status
|
|
|
|
*/
|
2014-03-17 16:56:06 -04:00
|
|
|
virtual bool getStatus(const RsPeerId &id, StatusInfo &statusInfo) = 0;
|
2010-04-18 16:01:31 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* send the client's status to his/her peers
|
2010-07-20 15:45:07 -04:00
|
|
|
* @param id the peer to send the status (empty, send to all)
|
|
|
|
* @param status the status of the peers
|
2010-04-18 16:01:31 -04:00
|
|
|
* @return will return false if status info does not belong to client
|
|
|
|
*/
|
2014-03-17 16:56:06 -04:00
|
|
|
virtual bool sendStatus(const RsPeerId &id, uint32_t status) = 0;
|
2008-04-24 08:11:59 -04:00
|
|
|
};
|
2008-04-24 08:26:44 -04:00
|
|
|
|
2008-04-26 05:39:02 -04:00
|
|
|
|
2008-04-24 08:26:44 -04:00
|
|
|
#endif
|