/* -*- Mode: c++ -*- * $Id: xotclError.c,v 1.5 2006/09/27 08:12:40 neumann Exp $ * * Extended Object Tcl (XOTcl) * * Copyright (C) 1999-2008 Gustaf Neumann, Uwe Zdun * * * xotclError.c -- * * error return functions for XOTcl * */ #include "xotclInt.h" int XOTclErrMsg(Tcl_Interp *interp, char *msg, Tcl_FreeProc* type) { Tcl_SetResult(interp, msg, type); return TCL_ERROR; } int XOTclVarErrMsg TCL_VARARGS_DEF (Tcl_Interp *, arg1) { va_list argList; char *string; Tcl_Interp *interp; interp = TCL_VARARGS_START(Tcl_Interp *, arg1, argList); Tcl_ResetResult(interp); while (1) { string = va_arg(argList, char *); if (string == NULL) { break; } Tcl_AppendResult(interp, string, (char *) NULL); } va_end(argList); return TCL_ERROR; } int XOTclErrInProc (Tcl_Interp *interp, Tcl_Obj *objName, Tcl_Obj *clName, char *procName) { Tcl_DString errMsg; char *cName, *space; ALLOC_DSTRING(&errMsg, "\n "); if (clName) { cName = ObjStr(clName); space = " "; } else { cName = ""; space =""; } Tcl_DStringAppend(&errMsg, ObjStr(objName),-1); Tcl_DStringAppend(&errMsg, space, -1); Tcl_DStringAppend(&errMsg, cName, -1); Tcl_DStringAppend(&errMsg, "->", 2); Tcl_DStringAppend(&errMsg, procName, -1); Tcl_AddErrorInfo (interp, Tcl_DStringValue(&errMsg)); DSTRING_FREE(&errMsg); return TCL_ERROR; } int XOTclObjErrArgCnt(Tcl_Interp *interp, Tcl_Obj *cmdname, char *arglist) { Tcl_ResetResult(interp); Tcl_AppendResult(interp, "wrong # args: should be {", (char *) NULL); if (cmdname) { Tcl_AppendResult(interp, ObjStr(cmdname), " ", (char *) NULL); } if (arglist != 0) Tcl_AppendResult(interp, arglist, (char *) NULL); Tcl_AppendResult(interp, "}", (char *) NULL); return TCL_ERROR; } int XOTclErrBadVal(Tcl_Interp *interp, char *context, char *expected, char *value) { Tcl_ResetResult(interp); Tcl_AppendResult(interp, context, ": expected ", expected, " but got '", value, "'", (char *) NULL); return TCL_ERROR; } int XOTclErrBadVal_(Tcl_Interp *interp, char *expected, char *value) { fprintf(stderr, "Deprecated call, recompile your program with xotcl 1.5 or newer\n"); Tcl_ResetResult(interp); Tcl_AppendResult(interp, ": expected ", expected, " but got '", value, "'", (char *) NULL); return TCL_ERROR; } extern int XOTclObjErrType(Tcl_Interp *interp, Tcl_Obj *nm, char *wt) { Tcl_ResetResult(interp); Tcl_AppendResult(interp,"'",ObjStr(nm), "' method should be called on '", wt, "'", (char *) NULL); return TCL_ERROR; }