pkga.c
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:4k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /* 
  2.  * pkga.c --
  3.  *
  4.  * This file contains a simple Tcl package "pkga" that is intended
  5.  * for testing the Tcl dynamic loading facilities.
  6.  *
  7.  * Copyright (c) 1995 Sun Microsystems, Inc.
  8.  *
  9.  * See the file "license.terms" for information on usage and redistribution
  10.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  11.  *
  12.  * RCS: @(#) $Id: pkga.c,v 1.4.24.3 2004/06/08 20:25:45 dgp Exp $
  13.  */
  14. #include "tcl.h"
  15. /*
  16.  * Prototypes for procedures defined later in this file:
  17.  */
  18. static int    Pkga_EqObjCmd _ANSI_ARGS_((ClientData clientData,
  19. Tcl_Interp *interp, int objc, Tcl_Obj * CONST objv[]));
  20. static int    Pkga_QuoteObjCmd _ANSI_ARGS_((ClientData clientData,
  21. Tcl_Interp *interp, int objc, Tcl_Obj * CONST objv[]));
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * Pkga_EqObjCmd --
  26.  *
  27.  * This procedure is invoked to process the "pkga_eq" Tcl command.
  28.  * It expects two arguments and returns 1 if they are the same,
  29.  * 0 if they are different.
  30.  *
  31.  * Results:
  32.  * A standard Tcl result.
  33.  *
  34.  * Side effects:
  35.  * See the user documentation.
  36.  *
  37.  *----------------------------------------------------------------------
  38.  */
  39. static int
  40. Pkga_EqObjCmd(dummy, interp, objc, objv)
  41.     ClientData dummy; /* Not used. */
  42.     Tcl_Interp *interp; /* Current interpreter. */
  43.     int objc; /* Number of arguments. */
  44.     Tcl_Obj * CONST objv[]; /* Argument objects. */
  45. {
  46.     int result;
  47.     CONST char *str1, *str2;
  48.     int len1, len2;
  49.     if (objc != 3) {
  50. Tcl_WrongNumArgs(interp, 1, objv,  "string1 string2");
  51. return TCL_ERROR;
  52.     }
  53.     str1 = Tcl_GetStringFromObj(objv[1], &len1);
  54.     str2 = Tcl_GetStringFromObj(objv[2], &len2);
  55.     if (len1 == len2) {
  56. result = (Tcl_UtfNcmp(str1, str2, len1) == 0);
  57.     } else {
  58. result = 0;
  59.     }
  60.     Tcl_SetObjResult(interp, Tcl_NewIntObj(result));
  61.     return TCL_OK;
  62. }
  63. /*
  64.  *----------------------------------------------------------------------
  65.  *
  66.  * Pkga_QuoteObjCmd --
  67.  *
  68.  * This procedure is invoked to process the "pkga_quote" Tcl command.
  69.  * It expects one argument, which it returns as result.
  70.  *
  71.  * Results:
  72.  * A standard Tcl result.
  73.  *
  74.  * Side effects:
  75.  * See the user documentation.
  76.  *
  77.  *----------------------------------------------------------------------
  78.  */
  79. static int
  80. Pkga_QuoteObjCmd(dummy, interp, objc, objv)
  81.     ClientData dummy; /* Not used. */
  82.     Tcl_Interp *interp; /* Current interpreter. */
  83.     int objc;                         /* Number of arguments. */
  84.     Tcl_Obj * CONST objv[];           /* Argument strings. */
  85. {
  86.     if (objc != 2) {
  87. Tcl_WrongNumArgs(interp, 1, objv, "value");
  88. return TCL_ERROR;
  89.     }
  90.     Tcl_SetObjResult(interp, objv[1]);
  91.     return TCL_OK;
  92. }
  93. /*
  94.  *----------------------------------------------------------------------
  95.  *
  96.  * Pkga_Init --
  97.  *
  98.  * This is a package initialization procedure, which is called
  99.  * by Tcl when this package is to be added to an interpreter.
  100.  *
  101.  * Results:
  102.  * None.
  103.  *
  104.  * Side effects:
  105.  * None.
  106.  *
  107.  *----------------------------------------------------------------------
  108.  */
  109. int
  110. Pkga_Init(interp)
  111.     Tcl_Interp *interp; /* Interpreter in which the package is
  112.  * to be made available. */
  113. {
  114.     int code;
  115.     if (Tcl_InitStubs(interp, TCL_VERSION, 1) == NULL) {
  116. return TCL_ERROR;
  117.     }
  118.     code = Tcl_PkgProvide(interp, "Pkga", "1.0");
  119.     if (code != TCL_OK) {
  120. return code;
  121.     }
  122.     Tcl_CreateObjCommand(interp, "pkga_eq", Pkga_EqObjCmd,
  123.     (ClientData) 0, (Tcl_CmdDeleteProc *) NULL);
  124.     Tcl_CreateObjCommand(interp, "pkga_quote", Pkga_QuoteObjCmd,
  125.     (ClientData) 0, (Tcl_CmdDeleteProc *) NULL);
  126.     return TCL_OK;
  127. }