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

数据库系统

开发平台:

Unix_Linux

  1. <Chapter Id="xtypes">
  2. <Title>Extending <Acronym>SQL</Acronym>: Types</Title>
  3. <Para>
  4.      As previously mentioned, there are two kinds  of  types
  5.      in  <ProductName>Postgres</ProductName>: base types (defined in a programming language) 
  6.      and composite types (instances).
  7.      Examples in this section up to interfacing indices  can
  8.      be  found in <FileName>complex.sql</FileName> and <FileName>complex.c</FileName>.  Composite examples 
  9.      are in <FileName>funcs.sql</FileName>.
  10. </Para>
  11. <Sect1>
  12. <Title>User-Defined Types</Title>
  13. <Sect2>
  14. <Title>Functions Needed for a User-Defined Type</Title>
  15. <Para>
  16.      A  user-defined  type must always have input and output
  17.      functions.  These  functions  determine  how  the  type
  18.      appears in strings (for input by the user and output to
  19.      the user) and how the type is organized in memory.  The
  20.      input  function takes a null-delimited character string
  21.      as its input and returns the internal (in memory)  
  22.      representation of the type.  The output function takes the
  23.      internal representation of the type and returns a null
  24.      delimited character string.
  25.      Suppose  we  want to define a complex type which represents 
  26.      complex numbers. Naturally, we choose  to  represent a 
  27.      complex in memory as the following <Acronym>C</Acronym> structure:
  28. <ProgramListing>
  29.          typedef struct Complex {
  30.              double      x;
  31.              double      y;
  32.          } Complex;
  33. </ProgramListing>
  34.      and  a  string of the form (x,y) as the external string
  35.      representation.
  36.      These functions are usually not hard  to  write,  especially  
  37.      the output function.  However, there are a number of points 
  38.      to remember:
  39. <ItemizedList>
  40. <ListItem>
  41. <Para>  When defining your external (string) representation,  
  42.             remember that you must eventually write a
  43.             complete and robust parser for that  representation 
  44.             as your input function!
  45. <ProgramListing>
  46.                 Complex *
  47.                 complex_in(char *str)
  48.                 {
  49.                     double x, y;
  50.                     Complex *result;
  51.                     if (sscanf(str, " ( %lf , %lf )", &amp;x, &amp;y) != 2) {
  52.                         elog(WARN, "complex_in: error in parsing
  53.                         return NULL;
  54.                     }
  55.                     result = (Complex *)palloc(sizeof(Complex));
  56.                     result-&gt;x = x;
  57.                     result-&gt;y = y;
  58.                     return (result);
  59.                 }
  60. </ProgramListing>
  61.             The output function can simply be:
  62. <ProgramListing>
  63.                 char *
  64.                 complex_out(Complex *complex)
  65.                 {
  66.                     char *result;
  67.                     if (complex == NULL)
  68.                         return(NULL);
  69.                     result = (char *) palloc(60);
  70.                     sprintf(result, "(%g,%g)", complex-&gt;x, complex-&gt;y);
  71.                     return(result);
  72.                 }
  73. </ProgramListing>
  74. </Para>
  75. </ListItem>
  76. <ListItem>
  77. <Para>  You  should  try  to  make  the input and output
  78.             functions inverses of each  other.   If  you  do
  79.             not, you will have severe problems when you need
  80.             to dump your data into a file and then  read  it
  81.             back  in  (say,  into someone else's database on
  82.             another computer).  This is a particularly  common  
  83.             problem  when  floating-point  numbers  are
  84.             involved.
  85. </Para>
  86. </ListItem>
  87. </ItemizedList>
  88. </para>
  89. <Para>
  90.      To define the <Acronym>complex</Acronym> type, we need to create  the  two
  91.      user-defined   functions   complex_in  and  complex_out
  92.      before creating the type:
  93. <ProgramListing>
  94.          CREATE FUNCTION complex_in(opaque)
  95.             RETURNS complex
  96.             AS 'PGROOT/tutorial/obj/complex.so'
  97.             LANGUAGE 'c';
  98.          CREATE FUNCTION complex_out(opaque)
  99.             RETURNS opaque
  100.             AS 'PGROOT/tutorial/obj/complex.so'
  101.             LANGUAGE 'c';
  102.          CREATE TYPE complex (
  103.             internallength = 16,
  104.             input = complex_in,
  105.             output = complex_out
  106.          );
  107. </ProgramListing>
  108. </Para>
  109. <Para>
  110.      As discussed earlier, <ProductName>Postgres</ProductName> fully supports arrays of
  111.      base  types.  Additionally, <ProductName>Postgres</ProductName> supports arrays of
  112.      user-defined types as well.  When you  define  a  type,
  113.      <ProductName>Postgres</ProductName>  automatically  provides support for arrays of
  114.      that type.  For historical reasons, the array type  has
  115.      the  same name as the user-defined type with the 
  116.      underscore character _ prepended.
  117.      Composite types do not need  any  function  defined  on
  118.      them,  since  the  system already understands what they
  119.      look like inside.
  120. </Para>
  121. </sect2>
  122. <Sect2>
  123. <Title>Large Objects</Title>
  124. <Para>
  125.      The types discussed  to  this  point  are  all  "small"
  126.      objects -- that is, they are smaller than 8KB in size.
  127. <Note>
  128. <Para>
  129.  1024 longwords == 8192 bytes.  In fact, the type must be considerably smaller than 8192 bytes,
  130.  since the <ProductName>Postgres</ProductName>  tuple
  131. and  page  overhead  must also fit into this 8KB limitation.
  132. The actual value that fits depends on the machine  architecture.
  133. </Para>
  134. </Note>
  135.      If you require a larger type for something like a document  
  136.      retrieval system or for storing bitmaps, you will
  137.      need to use the <ProductName>Postgres</ProductName> large object interface.
  138. </para>
  139. </Sect2>
  140. </Sect1>
  141. </Chapter>