#endif
#include <math.h>
-#define RIGCTL_TIMING
-#ifdef RIGCTL_TIMING
-#ifdef __APPLE__
-#include "MacOS.h" // emulate clock_gettime on old MacOS systems
-#endif
-#endif
-
#define NEW_PARSER
// IP stuff below
typedef struct _command {
CLIENT *client;
char *command;
-#ifdef RIGCTL_TIMING
- struct timespec *rcvd; // exact time when this command has been received
-#endif
} COMMAND;
static CLIENT client[MAX_CLIENTS];
COMMAND *info=g_new(COMMAND,1);
info->client=client;
info->command=command;
-#ifdef RIGCTL_TIMING
- info->rcvd=g_new(struct timespec, 1);
- clock_gettime(CLOCK_MONOTONIC, info->rcvd);
-#endif
g_idle_add(parse_cmd,info);
command=g_new(char,MAXDATASIZE);
command_index=0;
int parse_cmd(void *data) {
COMMAND *info=(COMMAND *)data;
CLIENT *client=info->client;
-#ifdef RIGCTL_TIMING
- struct timespec *ts=info->rcvd;
-#endif
char *command=info->command;
char reply[80];
reply[0]='\0';
gboolean implemented=TRUE;
gboolean errord=FALSE;
- struct timespec now;
-#ifdef RIGCTL_TIMING
- if (rigctl_debug) {
- //
- // Time (in msec) after reception of the command
- //
- long diff; // diff in msec
- clock_gettime(CLOCK_MONOTONIC, &now);
- now.tv_sec -= ts->tv_sec;
- now.tv_nsec -= ts->tv_nsec;
- diff = 1000*now.tv_sec + (now.tv_nsec / 1000000);
- g_print("RIGCTL: parse start TIME=%ld fd=%d COMMAND=%s\n", diff, client->fd, command);
- }
-#else
- g_print("RIGCTL: fd=%d COMMAND=%s\n", client->fd, command);
-#endif
switch(command[0]) {
case 'A':
switch(command[1]) {
send_resp(client->fd,"?;");
}
-#ifdef RIGCTL_TIMING
- if (rigctl_debug) {
- //
- // Time (in msec) after reception of the command
- //
- long diff; // diff in msec
- clock_gettime(CLOCK_MONOTONIC, &now);
- now.tv_sec -= ts->tv_sec;
- now.tv_nsec -= ts->tv_nsec;
- diff = 1000*now.tv_sec + (now.tv_nsec / 1000000);
- g_print("RIGCTL: parse end : TIME=%ld fd=%d COMMAND=%s\n", diff, client->fd, command);
- }
-#endif
g_free(info->command);
-#ifdef RIGCTL_TIMING
- g_free(info->rcvd);
-#endif
g_free(info);
return 0;
}
COMMAND *info=g_new(COMMAND,1);
info->client=client;
info->command=command;
-#ifdef RIGCTL_TIMING
- info->rcvd=g_new(struct timespec, 1);
- clock_gettime(CLOCK_MONOTONIC, info->rcvd);
-#endif
g_mutex_lock(&mutex_busy->m);
g_idle_add(parse_cmd,info);
g_mutex_unlock(&mutex_busy->m);