create_language.hlp
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:5k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end "CREATE LANGUAGE" {bold} ". Using CREATE LANGUAGE, a Postgres user can register a new language with Postgres. Subsequently, functions and trigger procedures can be defined in this new language. The user must 
  2. have the Postgres superuser privilege to register a new language. 
  3. Writing PL handlers 
  4. The call handler for a procedural language must be written in a compiler language such as 'C' and registered with Postgres as a function taking no arguments and returning the opaque type, a 
  5. placeholder for unspecified or undefined types.. This prevents the call handler from being called directly as a function from queries. 
  6. However, arguments must be supplied on the actual call when a PL function or trigger procedure in the language offered by the handler is to be executed.  
  7.        When called from the trigger manager, the only argument is the object ID from the procedure's pg_proc entry. All other information from the trigger manager is found in the global 
  8.        CurrentTriggerData pointer. 
  9.        When called from the function manager, the arguments are the object ID of the procedure's pg_proc entry, the number of arguments given to the PL function, the arguments in a 
  10.        FmgrValues structure and a pointer to a boolean where the function tells the caller if the return value is the SQL NULL value. 
  11. It's up to the call handler to fetch the pg_proc entry and to analyze the argument and return types of the called procedure. The AS clause from the CREATE FUNCTION of the procedure will 
  12. be found in the prosrc attribute of the pg_proc table entry. This may be the source text in the procedural language itself (like for PL/Tcl), a pathname to a file or anything else that tells the call 
  13. handler what to do in detail. 
  14. " {} "Synopsis" {bold} "
  15. CREATE [ TRUSTED ] PROCEDURAL LANGUAGE 'langname'
  16.     HANDLER call_handler
  17.     LANCOMPILER 'comment'
  18. " {code} "Inputs" {bold} "
  19. " {} "TRUSTED" {italic} "
  20.        TRUSTED specifies that the call handler for the language is safe; that is, it offers an unprivileged user no functionality to bypass access restrictions. If this keyword is omitted when
  21.        registering the language, only users with the Postgres superuser privilege can use this language to create new functions (like the 'C' language). 
  22. " {} "langname" {italic} "
  23.        The name of the new procedural language. The language name is case insensitive. A procedural language cannot override one of the built-in languages of Postgres. 
  24. " {} "HANDLER call_handler" {italic} "
  25.        call_handler is the name of a previously registered function that will be called to execute the PL procedures. 
  26. " {} "comment" {italic} "
  27.        The LANCOMPILER argument is the string that will be inserted in the LANCOMPILER attribute of the new pg_language entry. At present, Postgres does not use this attribute in any way. 
  28. " {} "Outputs" {bold} "
  29. " {} "CREATE" {italic} "
  30.        This message is returned if the language is successfully created. 
  31. " {} "ERROR: PL handler function funcname() doesn't exist" {italic} "
  32.        This error is returned if the function funcname() is not found. 
  33. " {} "Usage" {bold} "
  34. This is a template for a PL handler written in 'C': 
  35. " {} "
  36.    #include "executor/spi.h"
  37.    #include "commands/trigger.h"
  38.    #include "utils/elog.h"
  39.    #include "fmgr.h"        /* for FmgrValues struct */
  40.    #include "access/heapam.h"
  41.    #include "utils/syscache.h"
  42.    #include "catalog/pg_proc.h"
  43.    #include "catalog/pg_type.h"
  44.         
  45.    Datum
  46.    plsample_call_handler(
  47.         Oid       prooid,
  48.         int       pronargs,
  49.         FmgrValues     *proargs,
  50.         bool      *isNull)
  51.    {
  52.         Datum          retval;
  53.         TriggerData    *trigdata;
  54.         if (CurrentTriggerData == NULL) {
  55.              /*
  56.               * Called as a function
  57.               */
  58.              retval = ...
  59.         } else {
  60.              /*
  61.               * Called as a trigger procedure
  62.               */
  63.              trigdata = CurrentTriggerData;
  64.              CurrentTriggerData = NULL;
  65.              retval = ...
  66.         }
  67.         *isNull = false;
  68.         return retval;
  69.    }
  70. " {code} "  
  71. Only a few thousand lines of code have to be added instead of the dots to complete the PL call handler. See CREATE FUNCTION for information on how to compile it into a loadable module .
  72. The following commands then register the sample procedural language: 
  73. " {} "
  74.     CREATE FUNCTION plsample_call_handler () RETURNS opaque
  75.     AS '/usr/local/pgsql/lib/plsample.so'
  76.     LANGUAGE 'C';
  77.     
  78.     CREATE PROCEDURAL LANGUAGE 'plsample'
  79.     HANDLER plsample_call_handler
  80.     LANCOMPILER 'PL/Sample';
  81. " {code} "Notes" {bold} "
  82. Use " {} "CREATE FUNCTION" {bold} " to create a function. 
  83. Use DROP LANGUAGE to drop procedural languages. 
  84. Refer to the table pg_language for further information: 
  85. Table    = pg_language
  86. " {} "
  87. +-----------------+----------+-------+
  88. | Field           |   Type   | Length|
  89. +-----------------+----------+-------+
  90. | lanname         | name     |   32  |
  91. | lancompiler     | text     |   var |
  92. +-----------------+----------+-------+
  93. lanname |lancompiler   
  94. --------+--------------
  95. internal|n/a           
  96. lisp    |/usr/ucb/liszt
  97. C       |/bin/cc       
  98. sql     |postgres
  99. " {code} "
  100. " {} "Restrictions" {bold} "
  101. Since the call handler for a procedural language must be registered with Postgres in the 'C' language, it inherits all the capabilities and restrictions of 'C' functions.
  102. "