2007-11-14 22:18:48 -05:00
|
|
|
#ifndef RETROSHARE_GUI_INTERFACE_H
|
|
|
|
#define RETROSHARE_GUI_INTERFACE_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* "$Id: rsiface.h,v 1.9 2007-04-21 19:08:51 rmf24 Exp $"
|
|
|
|
*
|
|
|
|
* RetroShare C++ Interface.
|
|
|
|
*
|
|
|
|
* Copyright 2004-2006 by Robert Fernie.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License Version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "rstypes.h"
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
class NotifyBase;
|
|
|
|
class RsIface;
|
|
|
|
class RsControl;
|
|
|
|
class RsInit;
|
2009-03-15 18:45:40 -04:00
|
|
|
struct TurtleFileInfo ;
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/* declare single RsIface for everyone to use! */
|
|
|
|
|
|
|
|
extern RsIface *rsiface;
|
|
|
|
extern RsControl *rsicontrol;
|
|
|
|
|
|
|
|
/* RsInit -> Configuration Parameters for RetroShare Startup
|
|
|
|
*/
|
|
|
|
|
|
|
|
RsInit *InitRsConfig();
|
2008-06-14 09:22:39 -04:00
|
|
|
/* extract various options for GUI */
|
2007-11-14 22:18:48 -05:00
|
|
|
const char *RsConfigDirectory(RsInit *config);
|
2008-06-14 09:22:39 -04:00
|
|
|
bool RsConfigStartMinimised(RsInit *config);
|
2007-11-14 22:18:48 -05:00
|
|
|
void CleanupRsConfig(RsInit *);
|
|
|
|
|
|
|
|
|
|
|
|
// Called First... (handles comandline options)
|
|
|
|
int InitRetroShare(int argc, char **argv, RsInit *config);
|
|
|
|
|
|
|
|
// This Functions are used for Login.
|
|
|
|
bool ValidateCertificate(RsInit *config, std::string &userName);
|
|
|
|
bool ValidateTrustedUser(RsInit *config, std::string fname, std::string &userName);
|
|
|
|
bool LoadPassword(RsInit *config, std::string passwd);
|
|
|
|
bool RsGenerateCertificate(RsInit *config, std::string name, std::string org,
|
|
|
|
std::string loc, std::string country, std::string passwd, std::string &errString);
|
|
|
|
|
|
|
|
/* Auto Login Fns */
|
|
|
|
bool RsTryAutoLogin(RsInit *config);
|
|
|
|
bool RsStoreAutoLogin(RsInit *config);
|
|
|
|
bool RsClearAutoLogin(std::string basedir);
|
|
|
|
|
|
|
|
// Handle actual Login.
|
|
|
|
int LoadCertificates(RsInit *config, bool autoLoginNT);
|
|
|
|
|
|
|
|
RsIface *createRsIface (NotifyBase ¬ify);
|
|
|
|
RsControl *createRsControl(RsIface &iface, NotifyBase ¬ify);
|
|
|
|
|
|
|
|
|
|
|
|
class RsIface /* The Main Interface Class - create a single one! */
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RsIface(NotifyBase &callback)
|
|
|
|
:cb(callback) { return; }
|
|
|
|
virtual ~RsIface() { return; }
|
|
|
|
|
|
|
|
/****************************************/
|
|
|
|
|
|
|
|
/* Stubs for Very Important Fns -> Locking Functions */
|
|
|
|
virtual void lockData() = 0;
|
|
|
|
virtual void unlockData() = 0;
|
|
|
|
|
|
|
|
const std::list<FileInfo> &getRecommendList()
|
|
|
|
{ return mRecommendList; }
|
|
|
|
|
|
|
|
const RsConfig &getConfig()
|
|
|
|
{ return mConfig; }
|
|
|
|
/****************************************/
|
|
|
|
|
|
|
|
|
|
|
|
/* Flags to indicate used or not */
|
|
|
|
enum DataFlags
|
|
|
|
{
|
|
|
|
Neighbour = 0,
|
|
|
|
Friend = 1,
|
|
|
|
DirLocal = 2, /* Not Used - QModel instead */
|
|
|
|
DirRemote = 3, /* Not Used - QModel instead */
|
|
|
|
Transfer = 4,
|
|
|
|
Message = 5,
|
|
|
|
Channel = 6,
|
|
|
|
Chat = 7,
|
|
|
|
Recommend = 8,
|
|
|
|
Config = 9,
|
|
|
|
NumOfFlags = 10
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Operations for flags
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool setChanged(DataFlags set); /* set to true */
|
|
|
|
bool getChanged(DataFlags set); /* leaves it */
|
|
|
|
bool hasChanged(DataFlags set); /* resets it */
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void fillLists(); /* create some dummy data to display */
|
|
|
|
|
|
|
|
/* Internals */
|
|
|
|
std::list<FileInfo> mRecommendList;
|
|
|
|
|
|
|
|
bool mChanged[NumOfFlags];
|
|
|
|
|
|
|
|
RsConfig mConfig;
|
|
|
|
|
|
|
|
NotifyBase &cb;
|
|
|
|
|
|
|
|
/* Classes which can update the Lists! */
|
|
|
|
friend class RsControl;
|
|
|
|
friend class RsServer;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class RsControl /* The Main Interface Class - for controlling the server */
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2009-02-08 09:30:28 -05:00
|
|
|
RsControl(RsIface &i, NotifyBase &callback)
|
|
|
|
:cb(callback), rsIface(i) { return; }
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-02-08 09:30:28 -05:00
|
|
|
virtual ~RsControl() { return; }
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-02-08 09:30:28 -05:00
|
|
|
/* Real Startup Fn */
|
|
|
|
virtual int StartupRetroShare() = 0;
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-02-08 09:30:28 -05:00
|
|
|
/****************************************/
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-02-08 09:30:28 -05:00
|
|
|
/* Flagging Persons / Channels / Files in or out of a set (CheckLists) */
|
|
|
|
virtual int SetInChat(std::string id, bool in) = 0; /* friend : chat msgs */
|
|
|
|
virtual int SetInMsg(std::string id, bool in) = 0; /* friend : msg receipients */
|
|
|
|
virtual int SetInBroadcast(std::string id, bool in) = 0; /* channel : channel broadcast */
|
|
|
|
virtual int SetInSubscribe(std::string id, bool in) = 0; /* channel : subscribed channels */
|
|
|
|
virtual int SetInRecommend(std::string id, bool in) = 0; /* file : recommended file */
|
|
|
|
virtual int ClearInChat() = 0;
|
|
|
|
virtual int ClearInMsg() = 0;
|
|
|
|
virtual int ClearInBroadcast() = 0;
|
|
|
|
virtual int ClearInSubscribe() = 0;
|
|
|
|
virtual int ClearInRecommend() = 0;
|
2008-02-04 12:55:13 -05:00
|
|
|
|
2009-02-08 09:30:28 -05:00
|
|
|
virtual bool IsInChat(std::string id) = 0; /* friend : chat msgs */
|
|
|
|
virtual bool IsInMsg(std::string id) = 0; /* friend : msg recpts*/
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-02-08 09:30:28 -05:00
|
|
|
/****************************************/
|
|
|
|
/* Config */
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-06-08 13:09:00 -04:00
|
|
|
virtual int ConfigSetDataRates( int totalDownload, int totalUpload ) = 0;
|
2009-02-08 09:30:28 -05:00
|
|
|
virtual int ConfigGetDataRates( float &inKb, float &outKb) = 0;
|
|
|
|
virtual int ConfigSetBootPrompt( bool on ) = 0;
|
|
|
|
virtual void ConfigFinalSave( ) = 0;
|
|
|
|
virtual void rsGlobalShutDown( ) = 0;
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2009-02-08 09:30:28 -05:00
|
|
|
/****************************************/
|
|
|
|
|
|
|
|
NotifyBase &getNotify() { return cb; }
|
|
|
|
RsIface &getIface() { return rsIface; }
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
private:
|
2009-02-08 09:30:28 -05:00
|
|
|
NotifyBase &cb;
|
|
|
|
RsIface &rsIface;
|
2007-11-14 22:18:48 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/********************** Overload this Class for callback *****************/
|
|
|
|
|
|
|
|
|
|
|
|
class NotifyBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NotifyBase() { return; }
|
|
|
|
virtual ~NotifyBase() { return; }
|
|
|
|
virtual void notifyListPreChange(int list, int type) { (void) list; (void) type; return; }
|
|
|
|
virtual void notifyListChange(int list, int type) { (void) list; (void) type; return; }
|
|
|
|
virtual void notifyErrorMsg(int list, int sev, std::string msg) { (void) list; (void) sev; (void) msg; return; }
|
|
|
|
virtual void notifyChat() { return; }
|
2009-09-29 16:37:20 -04:00
|
|
|
virtual void notifyChatStatus(const std::string& peer_id,const std::string& status_string,bool is_private) {}
|
2009-10-04 18:27:42 -04:00
|
|
|
virtual void notifyCustomState(const std::string& peer_id) {}
|
2009-01-22 16:06:54 -05:00
|
|
|
virtual void notifyHashingInfo(std::string fileinfo) { (void)fileinfo; return ; }
|
2009-03-15 18:45:40 -04:00
|
|
|
virtual void notifyTurtleSearchResult(uint32_t search_id,const std::list<TurtleFileInfo>& files) { (void)files; }
|
2009-09-30 16:53:18 -04:00
|
|
|
virtual void notifyPeerHasNewAvatar(std::string peer_id) { (void)peer_id; }
|
2009-09-30 18:30:57 -04:00
|
|
|
virtual void notifyOwnAvatarChanged() {}
|
2007-11-14 22:18:48 -05:00
|
|
|
};
|
|
|
|
|
2009-08-11 14:14:55 -04:00
|
|
|
const int NOTIFY_LIST_NEIGHBOURS = 1;
|
|
|
|
const int NOTIFY_LIST_FRIENDS = 2;
|
|
|
|
const int NOTIFY_LIST_SEARCHLIST = 4;
|
|
|
|
const int NOTIFY_LIST_MESSAGELIST = 5;
|
|
|
|
const int NOTIFY_LIST_CHANNELLIST = 6;
|
|
|
|
const int NOTIFY_LIST_TRANSFERLIST = 7;
|
|
|
|
const int NOTIFY_LIST_CONFIG = 8;
|
|
|
|
const int NOTIFY_LIST_DIRLIST_LOCAL = 9;
|
|
|
|
const int NOTIFY_LIST_DIRLIST_FRIENDS = 10;
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
const int NOTIFY_TYPE_SAME = 0x01;
|
|
|
|
const int NOTIFY_TYPE_MOD = 0x02; /* general purpose, check all */
|
|
|
|
const int NOTIFY_TYPE_ADD = 0x04; /* flagged additions */
|
|
|
|
const int NOTIFY_TYPE_DEL = 0x08; /* flagged deletions */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|