"Fossies" - the Fresh Open Source Software archive

Member "rhide-1.5/librhgdb/watches.c" of archive rhide-1.5.tar.gz:


/* Copyright (C) 1996-2001 Robert H”hne, see COPYING.RH for details */
/* This file is part of RHIDE. */
#include <libgdbrh.h>
#include <librhgdb.h>
#include <rhgdbint.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>

static char command[1024];

char *
EvaluateWatch(const char *watch, int force)
{
  char *ret, *end;

#if 1
  if (!debugger_started && !force)
    return NULL;
#endif
  sprintf(command, "print %s", watch);
  /*
     Do not call the select_source_line. This can happen, when
     watch contains a function call 
   */
  reset_command++;
  Command(command, 0);
  reset_command--;
  ret = gdb_output_buffer;
  if (*ret != '$')
    return NULL;
  while (*ret && *ret != '=')
    ret++;
  if (!*ret)
    return NULL;
  ret++;
  while (*ret && *ret == ' ')
    ret++;
  if (!*ret)
    return NULL;
  end = ret + strlen(ret) - 1;
  if (*end == '\n')
    *end = 0;
  return ret;
}

static
const char * get_assign_string()
{
  const struct op_print *op_tab = current_language->la_op_print_tab;
  int i = 0;
  while (op_tab[i].string != NULL)
  {
    if (op_tab[i].opcode == BINOP_ASSIGN)
      return op_tab[i].string;
    i++;
  }
  return "=";
}

char *
SetValue(char *var, char *expr)
{
  char *tmp, *ret;

  ret = EvaluateWatch(var, 0);
  if (!ret)
    return NULL;
  tmp = strdup(ret);
  sprintf(command, "set variable %s %s %s", var, get_assign_string(), expr);
  reset_command++;
  Command(command, 0);
  reset_command--;
#if 0
  if (gdb_error)
  {
    ret = strdup(error_start);
    sprintf(command, "set %s=%s", var, tmp);
    reset_command++;
    Command(command, 0);
    reset_command--;
    strcpy(command, ret);
    free(ret);
    free(tmp);
    return command;
  }
#endif
  free(tmp);
  return EvaluateWatch(var, 0);
}