Sophie

Sophie

distrib > Mandriva > 2011.0 > i586 > media > contrib-release-debug > by-pkgid > 69710aa523c75aae90cbd19e022a4e3b > files > 236

centerim-debug-4.22.10-1mdv2011.0.i586.rpm

#ifndef __RSSHOOK_H__
#define __RSSHOOK_H__

#include "abstracthook.h"

#ifdef BUILD_RSS

#include "HTTPClient.h"
#include "src/Xml.h"

class rsshook: public abstracthook, public sigslot::has_slots<> {
    protected:
	HTTPClient httpcli;
	vector<int> rfds, wfds, efds;
	time_t timer_check;

	void socket_cb(SocketEvent *ev);
	void messageack_cb(MessageEvent *ev);
	void logger_cb(LogEvent *ev);

	void fetchRSSParam(string &base, XmlBranch *i, const string &enc,
			   const string &name, const string &attr, const string &title,
			   const string &postfix = "\n");

    public:
	static void parsedocument(const HTTPRequestEvent *rev, icqcontact *c);

    public:
	rsshook();
	~rsshook();

	void init();

	void exectimers();
	void main();
	bool send(const imevent &ev);

	void getsockets(fd_set &rfds, fd_set &wfds, fd_set &efds, int &hsocket) const;
	bool isoursocket(fd_set &rfds, fd_set &wfds, fd_set &efds) const;

	bool online() const;
	bool logged() const;
	bool isconnecting() const;
	bool enabled() const;

	void requestinfo(const imcontact &c);
	void requestversion(const imcontact &c);
	void ping(const imcontact &c);

	void sendnewuser(const imcontact &ic);
	void removeuser(const imcontact &ic);
};

extern rsshook rhook;

#endif

#endif