mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-21 19:30:03 +02:00

git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorSoftware@699 951219d9-93cf-4727-9268-0efd64621fa3
126 lines
2.6 KiB
C++
126 lines
2.6 KiB
C++
|
|
|
|
|
|
#ifndef SLS_RECEIVER_INTERFACE_H
|
|
#define SLS_RECEIVER_INTERFACE_H
|
|
|
|
#include "sls_detector_defs.h"
|
|
#include "MySocketTCP.h"
|
|
|
|
|
|
|
|
/**
|
|
*
|
|
* @short the slsReceiverInterface class is the interface between the sls detector and the sls receiver
|
|
* @author Dhanya Maliakal
|
|
* @version 0.1alpha
|
|
*/
|
|
|
|
|
|
class receiverInterface{
|
|
|
|
public:
|
|
|
|
/**
|
|
* (default) constructor
|
|
* @param socket tcp socket between client and receiver
|
|
*/
|
|
receiverInterface(MySocketTCP *socket);
|
|
|
|
|
|
/**
|
|
* destructor
|
|
*/
|
|
virtual ~receiverInterface();
|
|
|
|
/**
|
|
* Set the datasocket
|
|
* @param socket the data socket
|
|
*/
|
|
void setSocket(MySocketTCP *socket){dataSocket=socket;};
|
|
|
|
|
|
/**
|
|
* Send a string to receiver
|
|
* @param fnum function enum to determine what parameter
|
|
* @param retval return value
|
|
* @param arg value to send
|
|
* \returns success of operation
|
|
*/
|
|
int sendString(int fnum, char retval[], char arg[]);
|
|
|
|
/**
|
|
* Send a string to receiver
|
|
* @param fnum function enum to send udp ip and udp port
|
|
* @param retval return value receiver mac
|
|
* @param arg value to send
|
|
* \returns success of operation
|
|
*/
|
|
int sendUDPDetails(int fnum, char retval[], char arg[2][MAX_STR_LENGTH]);
|
|
|
|
|
|
/**
|
|
* Send an integer to receiver
|
|
* @param fnum function enum to determine what parameter
|
|
* @param retval return value
|
|
* @param arg value to send
|
|
* \returns success of operation
|
|
*/
|
|
int sendInt(int fnum, int &retval, int arg);
|
|
|
|
|
|
/**
|
|
* Get an integer value from receiver
|
|
* @param fnum function enum to determine what parameter
|
|
* @param retval return value
|
|
* \returns success of operation
|
|
*/
|
|
int getInt(int fnum, int &retval);
|
|
|
|
/**
|
|
* Send an integer to receiver
|
|
* @param fnum function enum to determine what parameter
|
|
* @param retval return value
|
|
* @param arg value to send
|
|
* \returns success of operation
|
|
*/
|
|
int sendInt(int fnum, int64_t &retval, int64_t arg);
|
|
|
|
/**
|
|
* Get an integer value from receiver
|
|
* @param fnum function enum to determine what parameter
|
|
* @param retval return value
|
|
* \returns success of operation
|
|
*/
|
|
int getInt(int fnum, int64_t &retval);
|
|
|
|
/**
|
|
* Get last client ip connected to receiver
|
|
* @param fnum function enum to get last client up
|
|
* @param retval return value
|
|
* \returns success of operation
|
|
*/
|
|
int getLastClientIP(int fnum, char retval[]);
|
|
|
|
|
|
/**
|
|
* Send a function number to execute function
|
|
* @param fnum function enum to determine which function to execute
|
|
* @param mess return error message
|
|
* \returns success of operation
|
|
*/
|
|
int executeFunction(int fnum,char mess[]);
|
|
|
|
//here one should implement the funcs listed in
|
|
|
|
private:
|
|
|
|
/**
|
|
* socket for data acquisition
|
|
*/
|
|
MySocketTCP *dataSocket;
|
|
|
|
};
|
|
|
|
#endif
|