aboutsummaryrefslogtreecommitdiff
path: root/daemon/AnnotateListener.h
blob: 6bc747d42d18081dc49da93a1e037d97e860f5f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
 * Copyright (C) ARM Limited 2014-2015. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#ifndef ANNOTATELISTENER_H
#define ANNOTATELISTENER_H

struct AnnotateClient;
class OlyServerSocket;

class AnnotateListener {
public:
	AnnotateListener();
	~AnnotateListener();

	void setup();
	int getSockFd();
	int getUdsFd();

	void handleSock();
	void handleUds();
	void close();
	void signal();

private:
	AnnotateClient *mClients;
	OlyServerSocket *mSock;
	OlyServerSocket *mUds;

	// Intentionally unimplemented
	AnnotateListener(const AnnotateListener &);
	AnnotateListener &operator=(const AnnotateListener &);
};

#endif // ANNOTATELISTENER_H