#define RCSID "$Id: Get_Define.c,v 1.13 2006/02/25 15:00:24 geuzaine Exp $"
/*
 * Copyright (C) 1997-2006 P. Dular, C. Geuzaine
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA.
 *
 * Please report all bugs and problems to <getdp@geuz.org>.
 */

#include "GetDP.h"
#include "Data_Active.h"
#include "BF_Function.h"
#include "Quadrature.h"
#include "Data_Define.h"


/* --------------------------------------------------------------------------- */
/*  G e t   S t r i n g ,   D e f i n e ,   F u n c t i o n ,   P o i n t e r  */
/* --------------------------------------------------------------------------- */

int  Get_DefineForString(struct StringXDefine SXD[], char * string,
			 int * FlagError) {
  int  i = 0, define ;

  GetDP_Begin("Get_DefineForString");

  while ((SXD[i].string != NULL) && (strcmp(SXD[i].string, string)))  i++ ;
  define = SXD[i].define ;
  *FlagError = (SXD[i].string == NULL)? 1 : 0 ;
  
  GetDP_Return(define) ;
}

int  Get_Define1NbrForString(struct StringXDefine1Nbr SXD[], char * string,
			     int * FlagError, int * Nbr1) {
  int  i = 0, define ;

  GetDP_Begin("Get_Define1NbrForString");

  while ((SXD[i].string != NULL) && (strcmp(SXD[i].string, string)))  i++ ;
  define = SXD[i].define ; *Nbr1 = SXD[i].Nbr1 ;
  *FlagError = (SXD[i].string == NULL)? 1 : 0 ;

  GetDP_Return(define) ;
}


void Get_PointerForString(struct StringXPointer SXF[], char * string,
			  int * FlagError, void **Pointer) {
  int  i = 0 ;

  GetDP_Begin("Get_PointerForString");

  while ((SXF[i].string != NULL) && (strcmp(SXF[i].string, string)))  i++ ;
  *Pointer = SXF[i].Pointer ;
  *FlagError = (SXF[i].string == NULL)? 1 : 0 ;

  GetDP_End ;
}

void Get_3Function2NbrForString(struct StringX3Function2Nbr SXF[], char * string,
				int * FlagError, void (**Function1)(),
				void (**Function2)(), void (**Function3)(),
				double * Nbr1, int * Nbr2) {
  int  i = 0 ;

  GetDP_Begin("Get_3Function2NbrForString");

  while ((SXF[i].string != NULL) && (strcmp(SXF[i].string, string)))  i++ ;
  *Function1 = SXF[i].Function1 ; *Function2 = SXF[i].Function2 ;
  *Function3 = SXF[i].Function3 ; *Nbr1 = SXF[i].Nbr1 ; *Nbr2 = SXF[i].Nbr2 ;
  *FlagError = (SXF[i].string == NULL)? 1 : 0 ;

  GetDP_End ;
}


void Get_Function2NbrForString(struct StringXFunction2Nbr SXF[], char * string,
			       int * FlagError, void (**Function)(),
			       int * Nbr1, int * Nbr2) {
  int  i = 0 ;

  GetDP_Begin("Get_Function2NbrForString");

  while ((SXF[i].string != NULL) && (strcmp(SXF[i].string, string)))  i++ ;
  *Function = SXF[i].Function  ;
  *Nbr1 = SXF[i].Nbr1 ; *Nbr2 = SXF[i].Nbr2 ; 
  *FlagError = (SXF[i].string == NULL)? 1 : 0 ;

  GetDP_End ;
}

void Get_FunctionForFunction(struct FunctionXFunction  FXF[], void (*Function1)(),
			     int * FlagError, void (**Function2)() ) {			     
  int  i = 0 ;

  GetDP_Begin("Get_FunctionForFunction");

  while ((FXF[i].Function1 != NULL) && (FXF[i].Function1 != Function1))  i++ ;
  *Function2 = FXF[i].Function2  ;
  *FlagError = (FXF[i].Function1 == NULL)? 1 : 0 ;

  GetDP_End ;
}

void Get_FunctionForDefine(struct DefineXFunction DXF[], int define,
			   int * FlagError, void (**Function)()) {
  int  i = 0 ;

  GetDP_Begin("Get_FunctionForDefine");

  while ((DXF[i].define != 0) && (DXF[i].define != define))  i++ ;
  *Function = DXF[i].Function ;
  *FlagError = (DXF[i].define == 0)? 1 : 0 ;

  GetDP_End ;
}

char  * Get_StringForDefine(struct StringXDefine SXD[], int define) {
  int  i = 0 ;  char * string ;

  GetDP_Begin("Get_StringForDefine");

  while ((SXD[i].string != NULL) && (SXD[i].define != define))  i++ ;
  if (SXD[i].string != NULL)  string = SXD[i].string ;  else  string = "?" ;

  GetDP_Return(string) ;
}

char  * Get_StringForDefine1Nbr(struct StringXDefine1Nbr SXD[], int define) {
  int  i = 0 ;  char * string ;

  GetDP_Begin("Get_StringForDefine1Nbr");

  while ((SXD[i].string != NULL) && (SXD[i].define != define))  i++ ;
  if (SXD[i].string != NULL)  string = SXD[i].string ;  else  string = "?" ;

  GetDP_Return(string) ;
}


char * Get_StringForPointer(struct StringXPointer SXF[], void * Pointer) {
  int  i = 0 ;  char * string ;

  GetDP_Begin("Get_StringForPointer");

  while ((SXF[i].string != NULL) && (SXF[i].Pointer != Pointer))  i++ ;
  if (SXF[i].string != NULL)  string = SXF[i].string ;  else  string = "?" ;

  GetDP_Return(string) ;
}


char * Get_StringFor3Function2Nbr(struct StringX3Function2Nbr SXF[], void (*Function1)()) {
  int  i = 0 ;  char * string ;

  GetDP_Begin("Get_StringFor3Function2Nbr");

  while ((SXF[i].string != NULL) && (SXF[i].Function1 != Function1))  i++ ;
  if (SXF[i].string != NULL)  string = SXF[i].string ;  else  string = "?" ;

  GetDP_Return(string) ;
}


char * Get_StringForFunction2Nbr
  (struct StringXFunction2Nbr SXF[], void (*Function)()) {
  int  i = 0 ;  char * string ;

  GetDP_Begin("Get_StringForFunction2Nbr");

  while ((SXF[i].string != NULL) && (SXF[i].Function != Function))  i++ ;
  if (SXF[i].string != NULL)  string = SXF[i].string ;  else  string = "?" ;
  
  GetDP_Return(string) ;
}


/* ------------------------------------------------------------------------
    Get_Valid_XXX
   ------------------------------------------------------------------------ */

static char Valid[5000];

#define GV(Get_Valid_X)				\
  int  i = 0;					\
  GetDP_Begin(Get_Valid_X);			\
  Msg(DIRECT,"Valid Choices are:");		\
  while (V[i].string != NULL){			\
    if(!(i%3)){					\
      if(i) Msg(DIRECT,"  %s", Valid);		\
      strcpy(Valid, V[i].string);		\
    }						\
    else strcat(Valid, V[i].string);		\
    strcat(Valid, " ");				\
    i++ ;					\
  }						\
  Msg(DIRECT,"  %s", Valid);			\
  GetDP_Return(Valid)

char*  Get_Valid_SXD   (struct StringXDefine V[]) { GV("Get_Valid_SXD"); }
char*  Get_Valid_SXD1N (struct StringXDefine1Nbr V[]) { GV("Get_Valid_SXD1N"); }
char*  Get_Valid_SXP   (struct StringXPointer V[]) { GV("Get_Valid_SXP"); }
char*  Get_Valid_SX3F2N(struct StringX3Function2Nbr V[]) { GV("Get_Valid_SX3F2N"); }
char*  Get_Valid_SXF2N (struct StringXFunction2Nbr V[]) { GV("Get_Valid_SXF2N"); }

#undef GV


syntax highlighted by Code2HTML, v. 0.9.1