udf_example.cc
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:26k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. /*
  17. ** example file of UDF (user definable functions) that are dynamicly loaded
  18. ** into the standard mysqld core.
  19. **
  20. ** The functions name, type and shared library is saved in the new system
  21. ** table 'func'.  To be able to create new functions one must have write
  22. ** privilege for the database 'mysql'. If one starts MySQL with
  23. ** --skip-grant, then UDF initialization will also be skipped.
  24. **
  25. ** Syntax for the new commands are:
  26. ** create function <function_name> returns {string|real|integer}
  27. **   soname <name_of_shared_library>
  28. ** drop function <function_name>
  29. **
  30. ** Each defined function may have a xxxx_init function and a xxxx_deinit
  31. ** function.  The init function should alloc memory for the function
  32. ** and tell the main function about the max length of the result
  33. ** (for string functions), number of decimals (for double functions) and
  34. ** if the result may be a null value.
  35. **
  36. ** If a function sets the 'error' argument to 1 the function will not be
  37. ** called anymore and mysqld will return NULL for all calls to this copy
  38. ** of the function.
  39. **
  40. ** All strings arguments to functions are given as string pointer + length
  41. ** to allow handling of binary data.
  42. ** Remember that all functions must be thread safe. This means that one is not
  43. ** allowed to alloc any global or static variables that changes!
  44. ** If one needs memory one should alloc this in the init function and free
  45. ** this on the __deinit function.
  46. **
  47. ** Note that the init and __deinit functions are only called once per
  48. ** SQL statement while the value function may be called many times
  49. **
  50. ** Function 'metaphon' returns a metaphon string of the string argument.
  51. ** This is something like a soundex string, but it's more tuned for English.
  52. **
  53. ** Function 'myfunc_double' returns summary of codes of all letters
  54. ** of arguments divided by summary length of all its arguments.
  55. **
  56. ** Function 'myfunc_int' returns summary length of all its arguments.
  57. **
  58. ** Function 'sequence' returns an sequence starting from a certain number
  59. **
  60. ** On the end is a couple of functions that converts hostnames to ip and
  61. ** vice versa.
  62. **
  63. ** A dynamicly loadable file should be compiled sharable
  64. ** (something like: gcc -shared -o my_func.so myfunc.cc).
  65. ** You can easily get all switches right by doing:
  66. ** cd sql ; make udf_example.o
  67. ** Take the compile line that make writes, remove the '-c' near the end of
  68. ** the line and add -o udf_example.so to the end of the compile line.
  69. ** The resulting library (udf_example.so) should be copied to some dir
  70. ** searched by ld. (/usr/lib ?)
  71. **
  72. ** After the library is made one must notify mysqld about the new
  73. ** functions with the commands:
  74. **
  75. ** CREATE FUNCTION metaphon RETURNS STRING SONAME "udf_example.so";
  76. ** CREATE FUNCTION myfunc_double RETURNS REAL SONAME "udf_example.so";
  77. ** CREATE FUNCTION myfunc_int RETURNS INTEGER SONAME "udf_example.so";
  78. ** CREATE FUNCTION sequence RETURNS INTEGER SONAME "udf_example.so";
  79. ** CREATE FUNCTION lookup RETURNS STRING SONAME "udf_example.so";
  80. ** CREATE FUNCTION reverse_lookup RETURNS STRING SONAME "udf_example.so";
  81. ** CREATE AGGREGATE FUNCTION avgcost RETURNS REAL SONAME "udf_example.so";
  82. **
  83. ** After this the functions will work exactly like native MySQL functions.
  84. ** Functions should be created only once.
  85. **
  86. ** The functions can be deleted by:
  87. **
  88. ** DROP FUNCTION metaphon;
  89. ** DROP FUNCTION myfunc_double;
  90. ** DROP FUNCTION myfunc_int;
  91. ** DROP FUNCTION lookup;
  92. ** DROP FUNCTION reverse_lookup;
  93. ** DROP FUNCTION avgcost;
  94. **
  95. ** The CREATE FUNCTION and DROP FUNCTION update the func@mysql table. All
  96. ** Active function will be reloaded on every restart of server
  97. ** (if --skip-grant-tables is not given)
  98. **
  99. */
  100. #ifdef STANDARD
  101. #include <stdio.h>
  102. #include <string.h>
  103. #else
  104. #include <global.h>
  105. #include <my_sys.h>
  106. #endif
  107. #include <mysql.h>
  108. #include <m_ctype.h>
  109. #include <m_string.h> // To get strmov()
  110. #ifdef HAVE_DLOPEN
  111. /* These must be right or mysqld will not find the symbol! */
  112. extern "C" {
  113. my_bool metaphon_init(UDF_INIT *initid, UDF_ARGS *args, char *message);
  114. void metaphon_deinit(UDF_INIT *initid);
  115. char *metaphon(UDF_INIT *initid, UDF_ARGS *args, char *result,
  116.        unsigned long *length, char *is_null, char *error);
  117. my_bool myfunc_double_init(UDF_INIT *, UDF_ARGS *args, char *message);
  118. double myfunc_double(UDF_INIT *initid, UDF_ARGS *args, char *is_null,
  119.      char *error);
  120. longlong myfunc_int(UDF_INIT *initid, UDF_ARGS *args, char *is_null,
  121.     char *error);
  122. my_bool sequence_init(UDF_INIT *initid, UDF_ARGS *args, char *message);
  123.  void sequence_deinit(UDF_INIT *initid);
  124. long long sequence(UDF_INIT *initid, UDF_ARGS *args, char *is_null,
  125.    char *error);
  126. }
  127. /*************************************************************************
  128. ** Example of init function
  129. ** Arguments:
  130. ** initid Points to a structure that the init function should fill.
  131. ** This argument is given to all other functions.
  132. ** my_bool maybe_null 1 if function can return NULL
  133. ** Default value is 1 if any of the arguments
  134. ** is declared maybe_null.
  135. ** unsigned int decimals Number of decimals.
  136. ** Default value is max decimals in any of the
  137. ** arguments.
  138. ** unsigned int max_length  Length of string result.
  139. ** The default value for integer functions is 21
  140. ** The default value for real functions is 13+
  141. ** default number of decimals.
  142. ** The default value for string functions is
  143. ** the longest string argument.
  144. ** char *ptr; A pointer that the function can use.
  145. **
  146. ** args Points to a structure which contains:
  147. ** unsigned int arg_count Number of arguments
  148. ** enum Item_result *arg_type Types for each argument.
  149. ** Types are STRING_RESULT, REAL_RESULT
  150. ** and INT_RESULT.
  151. ** char **args Pointer to constant arguments.
  152. ** Contains 0 for not constant argument.
  153. ** unsigned long *lengths; max string length for each argument
  154. ** char *maybe_null Information of which arguments
  155. ** may be NULL
  156. **
  157. ** message Error message that should be passed to the user on fail.
  158. ** The message buffer is MYSQL_ERRMSG_SIZE big, but one should
  159. ** try to keep the error message less than 80 bytes long!
  160. **
  161. ** This function should return 1 if something goes wrong. In this case
  162. ** message should contain something usefull!
  163. **************************************************************************/
  164. #define MAXMETAPH 8
  165. my_bool metaphon_init(UDF_INIT *initid, UDF_ARGS *args, char *message)
  166. {
  167.   if (args->arg_count != 1 || args->arg_type[0] != STRING_RESULT)
  168.   {
  169.     strcpy(message,"Wrong arguments to metaphon;  Use the source");
  170.     return 1;
  171.   }
  172.   initid->max_length=MAXMETAPH;
  173.   return 0;
  174. }
  175. /****************************************************************************
  176. ** Deinit function. This should free all resources allocated by
  177. ** this function.
  178. ** Arguments:
  179. ** initid Return value from xxxx_init
  180. ****************************************************************************/
  181. void metaphon_deinit(UDF_INIT *initid)
  182. {
  183. }
  184. /***************************************************************************
  185. ** UDF string function.
  186. ** Arguments:
  187. ** initid Structure filled by xxx_init
  188. ** args The same structure as to xxx_init. This structure
  189. ** contains values for all parameters.
  190. ** Note that the functions MUST check and convert all
  191. ** to the type it wants!  Null values are represented by
  192. ** a NULL pointer
  193. ** result Possible buffer to save result. At least 255 byte long.
  194. ** length Pointer to length of the above buffer. In this the function
  195. ** should save the result length
  196. ** is_null If the result is null, one should store 1 here.
  197. ** error If something goes fatally wrong one should store 1 here.
  198. **
  199. ** This function should return a pointer to the result string.
  200. ** Normally this is 'result' but may also be an alloced string.
  201. ***************************************************************************/
  202. /* Character coding array */
  203. static char codes[26] =  {
  204.     1,16,4,16,9,2,4,16,9,2,0,2,2,2,1,4,0,2,4,4,1,0,0,0,8,0
  205.  /* A  B C  D E F G  H I J K L M N O P Q R S T U V W X Y Z*/
  206.     };
  207. /*--- Macros to access character coding array -------------*/
  208. #define ISVOWEL(x)  (codes[(x) - 'A'] & 1) /* AEIOU */
  209.     /* Following letters are not changed */
  210. #define NOCHANGE(x) (codes[(x) - 'A'] & 2) /* FJLMNR */
  211.     /* These form diphthongs when preceding H */
  212. #define AFFECTH(x) (codes[(x) - 'A'] & 4) /* CGPST */
  213.     /* These make C and G soft */
  214. #define MAKESOFT(x) (codes[(x) - 'A'] & 8) /* EIY */
  215.     /* These prevent GH from becoming F */
  216. #define NOGHTOF(x)  (codes[(x) - 'A'] & 16) /* BDH */
  217. char *metaphon(UDF_INIT *initid, UDF_ARGS *args, char *result,
  218.        unsigned long *length, char *is_null, char *error)
  219. {
  220.   const char *word=args->args[0];
  221.   if (!word) // Null argument
  222.   {
  223.     *is_null=1;
  224.     return 0;
  225.   }
  226.   const char *w_end=word+args->lengths[0];
  227.   char *org_result=result;
  228.   char *n, *n_start, *n_end; /* pointers to string */
  229.   char *metaph, *metaph_end; /* pointers to metaph */
  230.   char ntrans[32];      /* word with uppercase letters */
  231.   char newm[8];      /* new metaph for comparison */
  232.   int  KSflag;      /* state flag for X to KS */
  233.   /*--------------------------------------------------------
  234.    *  Copy word to internal buffer, dropping non-alphabetic
  235.    *  characters and converting to uppercase.
  236.    *-------------------------------------------------------*/
  237.   for ( n = ntrans + 1, n_end = ntrans + sizeof(ntrans)-2;
  238. word != w_end && n < n_end; word++ )
  239.     if ( isalpha ( *word ))
  240.       *n++ = toupper ( *word );
  241.   if ( n == ntrans + 1 ) /* return empty string if 0 bytes */
  242.   {
  243.     *length=0;
  244.     return result;
  245.   }
  246.   n_end = n; /* set n_end to end of string */
  247.   ntrans[0] = 'Z'; /* ntrans[0] should be a neutral char */
  248.   n[0]=n[1]=0; /* pad with nulls */
  249.   n = ntrans + 1; /* assign pointer to start */
  250.   /*------------------------------------------------------------
  251.    *  check for all prefixes:
  252.    * PN KN GN AE WR WH and X at start.
  253.    *----------------------------------------------------------*/
  254.   switch ( *n ) {
  255.   case 'P':
  256.   case 'K':
  257.   case 'G':
  258.     if ( n[1] == 'N')
  259.       *n++ = 0;
  260.     break;
  261.   case 'A':
  262.     if ( n[1] == 'E')
  263.       *n++ = 0;
  264.     break;
  265.   case 'W':
  266.     if ( n[1] == 'R' )
  267.       *n++ = 0;
  268.     else
  269.       if ( *(n + 1) == 'H')
  270.       {
  271. n[1] = *n;
  272. *n++ = 0;
  273.       }
  274.     break;
  275.   case 'X':
  276.     *n = 'S';
  277.     break;
  278.   }
  279.   /*------------------------------------------------------------
  280.    *  Now, loop step through string, stopping at end of string
  281.    *  or when the computed metaph is MAXMETAPH characters long
  282.    *----------------------------------------------------------*/
  283.   KSflag = 0; /* state flag for KS translation */
  284.   for ( metaph_end = result + MAXMETAPH, n_start = n;
  285. n <= n_end && result < metaph_end; n++ )
  286.   {
  287.     if ( KSflag )
  288.     {
  289.       KSflag = 0;
  290.       *result++ = *n;
  291.     }
  292.     else
  293.     {
  294.       /* drop duplicates except for CC */
  295.       if ( *( n - 1 ) == *n && *n != 'C' )
  296. continue;
  297.       /* check for F J L M N R or first letter vowel */
  298.       if ( NOCHANGE ( *n ) ||
  299.    ( n == n_start && ISVOWEL ( *n )))
  300. *result++ = *n;
  301.       else
  302. switch ( *n ) {
  303. case 'B':  /* check for -MB */
  304.   if ( n < n_end || *( n - 1 ) != 'M' )
  305.     *result++ = *n;
  306.   break;
  307. case 'C': /* C = X ("sh" sound) in CH and CIA */
  308.   /*   = S in CE CI and CY       */
  309.   /*  dropped in SCI SCE SCY       */
  310.   /* else K       */
  311.   if ( *( n - 1 ) != 'S' ||
  312.        !MAKESOFT ( n[1]))
  313.   {
  314.     if ( n[1] == 'I' && n[2] == 'A' )
  315.       *result++ = 'X';
  316.     else
  317.       if ( MAKESOFT ( n[1]))
  318. *result++ = 'S';
  319.       else
  320. if ( n[1] == 'H' )
  321.   *result++ = (( n == n_start &&
  322.  !ISVOWEL ( n[2])) ||
  323.        *( n - 1 ) == 'S' ) ?
  324.     (char)'K' : (char)'X';
  325. else
  326.   *result++ = 'K';
  327.   }
  328.   break;
  329. case 'D':  /* J before DGE, DGI, DGY, else T */
  330.   *result++ =
  331.     ( n[1] == 'G' &&
  332.       MAKESOFT ( n[2])) ?
  333.     (char)'J' : (char)'T';
  334.   break;
  335. case 'G':   /* complicated, see table in text */
  336.   if (( n[1] != 'H' || ISVOWEL ( n[2]))
  337.       && (
  338.   n[1] != 'N' ||
  339.   (
  340.    (n + 1) < n_end  &&
  341.    (
  342.     n[2] != 'E' ||
  343.     *( n + 3 ) != 'D'
  344.     )
  345.    )
  346.   )
  347.       && (
  348.   *( n - 1 ) != 'D' ||
  349.   !MAKESOFT ( n[1])
  350.   )
  351.       )
  352.     *result++ =
  353.       ( MAKESOFT ( *( n  + 1 )) &&
  354. n[2] != 'G' ) ?
  355.       (char)'J' : (char)'K';
  356.   else
  357.     if( n[1] == 'H'   &&
  358. !NOGHTOF( *( n - 3 )) &&
  359. *( n - 4 ) != 'H')
  360.       *result++ = 'F';
  361.   break;
  362. case 'H':   /* H if before a vowel and not after */
  363.   /* C, G, P, S, T */
  364.   if ( !AFFECTH ( *( n - 1 )) &&
  365.        ( !ISVOWEL ( *( n - 1 )) ||
  366.  ISVOWEL ( n[1])))
  367.     *result++ = 'H';
  368.   break;
  369. case 'K':    /* K = K, except dropped after C */
  370.   if ( *( n - 1 ) != 'C')
  371.     *result++ = 'K';
  372.   break;
  373. case 'P':    /* PH = F, else P = P */
  374.   *result++ = *( n +  1 ) == 'H'
  375.     ? (char)'F' : (char)'P';
  376.   break;
  377. case 'Q':   /* Q = K (U after Q is already gone */
  378.   *result++ = 'K';
  379.   break;
  380. case 'S':   /* SH, SIO, SIA = X ("sh" sound) */
  381.   *result++ = ( n[1] == 'H' ||
  382. ( *(n  + 1) == 'I' &&
  383.   ( n[2] == 'O' ||
  384.     n[2] == 'A')))  ?
  385.     (char)'X' : (char)'S';
  386.   break;
  387. case 'T':  /* TIO, TIA = X ("sh" sound) */
  388.   /* TH = 0, ("th" sound ) */
  389.   if( *( n  + 1 ) == 'I' && ( n[2] == 'O'
  390.       || n[2] == 'A') )
  391.     *result++ = 'X';
  392.   else
  393.     if ( n[1] == 'H' )
  394.       *result++ = '0';
  395.     else
  396.       if ( *( n + 1) != 'C' || n[2] != 'H')
  397. *result++ = 'T';
  398.   break;
  399. case 'V':     /* V = F */
  400.   *result++ = 'F';
  401.   break;
  402. case 'W':     /* only exist if a vowel follows */
  403. case 'Y':
  404.   if ( ISVOWEL ( n[1]))
  405.     *result++ = *n;
  406.   break;
  407. case 'X':     /* X = KS, except at start */
  408.   if ( n == n_start )
  409.     *result++ = 'S';
  410.   else
  411.   {
  412.     *result++ = 'K'; /* insert K, then S */
  413.     KSflag = 1; /* this flag will cause S to be
  414.    inserted on next pass thru loop */
  415.   }
  416.   break;
  417. case 'Z':
  418.   *result++ = 'S';
  419.   break;
  420. }
  421.     }
  422.   }
  423.   *length= (ulong) (result - org_result);
  424.   return org_result;
  425. }
  426. /***************************************************************************
  427. ** UDF double function.
  428. ** Arguments:
  429. ** initid Structure filled by xxx_init
  430. ** args The same structure as to xxx_init. This structure
  431. ** contains values for all parameters.
  432. ** Note that the functions MUST check and convert all
  433. ** to the type it wants!  Null values are represented by
  434. ** a NULL pointer
  435. ** is_null If the result is null, one should store 1 here.
  436. ** error If something goes fatally wrong one should store 1 here.
  437. **
  438. ** This function should return the result.
  439. ***************************************************************************/
  440. my_bool myfunc_double_init(UDF_INIT *initid, UDF_ARGS *args, char *message)
  441. {
  442.   if (!args->arg_count)
  443.   {
  444.     strcpy(message,"myfunc_double must have at least on argument");
  445.     return 1;
  446.   }
  447.   /*
  448.   ** As this function wants to have everything as strings, force all arguments
  449.   ** to strings.
  450.   */
  451.   for (uint i=0 ; i < args->arg_count; i++)
  452.     args->arg_type[i]=STRING_RESULT;
  453.   initid->maybe_null=1; // The result may be null
  454.   initid->decimals=2; // We want 2 decimals in the result
  455.   initid->max_length=6; // 3 digits + . + 2 decimals
  456.   return 0;
  457. }
  458. double myfunc_double(UDF_INIT *initid, UDF_ARGS *args, char *is_null,
  459.      char *error)
  460. {
  461.   unsigned long val = 0;
  462.   unsigned long v = 0;
  463.   for (uint i = 0; i < args->arg_count; i++)
  464.   {
  465.     if (args->args[i] == NULL)
  466.       continue;
  467.     val += args->lengths[i];
  468.     for (uint j=args->lengths[i] ; j-- > 0 ;)
  469.       v += args->args[i][j];
  470.   }
  471.   if (val)
  472.     return (double) v/ (double) val;
  473.   *is_null=1;
  474.   return 0.0;
  475. }
  476. /***************************************************************************
  477. ** UDF long long function.
  478. ** Arguments:
  479. ** initid Return value from xxxx_init
  480. ** args The same structure as to xxx_init. This structure
  481. ** contains values for all parameters.
  482. ** Note that the functions MUST check and convert all
  483. ** to the type it wants!  Null values are represented by
  484. ** a NULL pointer
  485. ** is_null If the result is null, one should store 1 here.
  486. ** error If something goes fatally wrong one should store 1 here.
  487. **
  488. ** This function should return the result as a long long
  489. ***************************************************************************/
  490. /* This function returns the sum of all arguments */
  491. long long myfunc_int(UDF_INIT *initid, UDF_ARGS *args, char *is_null,
  492.      char *error)
  493. {
  494.   long long val = 0;
  495.   for (uint i = 0; i < args->arg_count; i++)
  496.   {
  497.     if (args->args[i] == NULL)
  498.       continue;
  499.     switch (args->arg_type[i]) {
  500.     case STRING_RESULT: // Add string lengths
  501.       val += args->lengths[i];
  502.       break;
  503.     case INT_RESULT: // Add numbers
  504.       val += *((long long*) args->args[i]);
  505.       break;
  506.     case REAL_RESULT: // Add numers as long long
  507.       val += (long long) *((double*) args->args[i]);
  508.       break;
  509.     }
  510.   }
  511.   return val;
  512. }
  513. /*
  514.   Simple example of how to get a sequences starting from the first argument
  515.   or 1 if no arguments have been given
  516. */
  517. my_bool sequence_init(UDF_INIT *initid, UDF_ARGS *args, char *message)
  518. {
  519.   if (args->arg_count > 1)
  520.   {
  521.     strmov(message,"This function takes none or 1 argument");
  522.     return 1;
  523.   }
  524.   if (args->arg_count)
  525.     args->arg_type[0]= INT_RESULT; // Force argument to int
  526.   if (!(initid->ptr=(char*) malloc(sizeof(longlong))))
  527.   {
  528.     strmov(message,"Couldn't allocate memory");
  529.     return 1;
  530.   }
  531.   bzero(initid->ptr,sizeof(longlong));
  532.   // Fool MySQL to think that this function is a constant
  533.   // This will ensure that MySQL only evalutes the function
  534.   // when the rows are sent to the client and not before any ORDER BY
  535.   // clauses
  536.   initid->const_item=1;
  537.   return 0;
  538. }
  539. void sequence_deinit(UDF_INIT *initid)
  540. {
  541.   if (initid->ptr)
  542.     free(initid->ptr);
  543. }
  544. long long sequence(UDF_INIT *initid, UDF_ARGS *args, char *is_null,
  545.    char *error)
  546. {
  547.   ulonglong val=0;
  548.   if (args->arg_count)
  549.     val= *((long long*) args->args[0]);
  550.   return ++ *((longlong*) initid->ptr) + val;
  551. }
  552. /****************************************************************************
  553. ** Some functions that handles IP and hostname conversions
  554. ** The orignal function was from Zeev Suraski.
  555. **
  556. ** CREATE FUNCTION lookup RETURNS STRING SONAME "udf_example.so";
  557. ** CREATE FUNCTION reverse_lookup RETURNS STRING SONAME "udf_example.so";
  558. **
  559. ****************************************************************************/
  560. #if defined(HAVE_GETHOSTBYADDR_R) && defined(HAVE_SOLARIS_STYLE_GETHOST)
  561. #include <sys/socket.h>
  562. #include <netinet/in.h>
  563. #include <arpa/inet.h>
  564. #include <netdb.h>
  565. extern "C" {
  566. my_bool lookup_init(UDF_INIT *initid, UDF_ARGS *args, char *message);
  567. char *lookup(UDF_INIT *initid, UDF_ARGS *args, char *result,
  568.      unsigned long *length, char *null_value, char *error);
  569. my_bool reverse_lookup_init(UDF_INIT *initid, UDF_ARGS *args, char *message);
  570. char *reverse_lookup(UDF_INIT *initid, UDF_ARGS *args, char *result,
  571.      unsigned long *length, char *null_value, char *error);
  572. }
  573. /****************************************************************************
  574. ** lookup IP for an hostname.
  575. **
  576. ** This code assumes that gethostbyname_r exists and inet_ntoa() is thread
  577. ** safe (As it is in Solaris)
  578. ****************************************************************************/
  579. my_bool lookup_init(UDF_INIT *initid, UDF_ARGS *args, char *message)
  580. {
  581.   if (args->arg_count != 1 || args->arg_type[0] != STRING_RESULT)
  582.   {
  583.     strmov(message,"Wrong arguments to lookup;  Use the source");
  584.     return 1;
  585.   }
  586.   initid->max_length=11;
  587.   initid->maybe_null=1;
  588.   return 0;
  589. }
  590. char *lookup(UDF_INIT *initid, UDF_ARGS *args, char *result,
  591.      unsigned long *res_length, char *null_value, char *error)
  592. {
  593.   uint length;
  594.   int tmp_errno;
  595.   char name_buff[256],hostname_buff[2048];
  596.   struct hostent tmp_hostent,*hostent;
  597.   if (!args->args[0] || !(length=args->lengths[0]))
  598.   {
  599.     *null_value=1;
  600.     return 0;
  601.   }
  602.   if (length >= sizeof(name_buff))
  603.     length=sizeof(name_buff)-1;
  604.   memcpy(name_buff,args->args[0],length);
  605.   name_buff[length]=0;
  606.   if (!(hostent=gethostbyname_r(name_buff,&tmp_hostent,hostname_buff,
  607. sizeof(hostname_buff), &tmp_errno)))
  608.   {
  609.     *null_value=1;
  610.     return 0;
  611.   }
  612.   struct in_addr in;
  613.   memcpy_fixed((char*) &in,(char*) *hostent->h_addr_list, sizeof(in.s_addr));
  614.   *res_length= (ulong) (strmov(result, inet_ntoa(in)) - result);
  615.   return result;
  616. }
  617. /****************************************************************************
  618. ** return hostname for an IP number.
  619. ** The functions can take as arguments a string "xxx.xxx.xxx.xxx" or
  620. ** four numbers.
  621. ****************************************************************************/
  622. my_bool reverse_lookup_init(UDF_INIT *initid, UDF_ARGS *args, char *message)
  623. {
  624.   if (args->arg_count == 1)
  625.     args->arg_type[0]= STRING_RESULT;
  626.   else if (args->arg_count == 4)
  627.     args->arg_type[0]=args->arg_type[1]=args->arg_type[2]=args->arg_type[3]=
  628.       INT_RESULT;
  629.   else
  630.   {
  631.     strmov(message,
  632.    "Wrong number of arguments to reverse_lookup;  Use the source");
  633.     return 1;
  634.   }
  635.   initid->max_length=32;
  636.   initid->maybe_null=1;
  637.   return 0;
  638. }
  639. char *reverse_lookup(UDF_INIT *initid, UDF_ARGS *args, char *result,
  640.      unsigned long *res_length, char *null_value, char *error)
  641. {
  642.   char name_buff[256];
  643.   struct hostent tmp_hostent;
  644.   uint length;
  645.   if (args->arg_count == 4)
  646.   {
  647.     if (!args->args[0] || !args->args[1] ||!args->args[2] ||!args->args[3])
  648.     {
  649.       *null_value=1;
  650.       return 0;
  651.     }
  652.     sprintf(result,"%d.%d.%d.%d",
  653.     (int) *((long long*) args->args[0]),
  654.     (int) *((long long*) args->args[1]),
  655.     (int) *((long long*) args->args[2]),
  656.     (int) *((long long*) args->args[3]));
  657.   }
  658.   else
  659.   { // string argument
  660.     if (!args->args[0]) // Return NULL for NULL values
  661.     {
  662.       *null_value=1;
  663.       return 0;
  664.     }
  665.     length=args->lengths[0];
  666.     if (length >= (uint) *res_length-1)
  667.       length=(uint) *res_length;
  668.     memcpy(result,args->args[0],length);
  669.     result[length]=0;
  670.   }
  671.   unsigned long taddr = inet_addr(result);
  672.   if (taddr == (unsigned long) -1L)
  673.   {
  674.     *null_value=1;
  675.     return 0;
  676.   }
  677.   struct hostent *hp;
  678.   int tmp_errno;
  679.   if (!(hp=gethostbyaddr_r((char*) &taddr,sizeof(taddr), AF_INET,
  680.    &tmp_hostent, name_buff,sizeof(name_buff),
  681.    &tmp_errno)))
  682.   {
  683.     *null_value=1;
  684.     return 0;
  685.   }
  686.   *res_length=(ulong) (strmov(result,hp->h_name) - result);
  687.   return result;
  688. }
  689. /*
  690. ** Syntax for the new aggregate commands are:
  691. ** create aggregate function <function_name> returns {string|real|integer}
  692. **   soname <name_of_shared_library>
  693. **
  694. ** Syntax for avgcost: avgcost( t.quantity, t.price )
  695. ** with t.quantity=integer, t.price=double
  696. ** (this example is provided by Andreas F. Bobak <bobak@relog.ch>)
  697. */
  698. extern "C" {
  699. my_bool avgcost_init( UDF_INIT* initid, UDF_ARGS* args, char* message );
  700. void avgcost_deinit( UDF_INIT* initid );
  701. void avgcost_reset( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char *error );
  702. void avgcost_add( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char *error );
  703. double avgcost( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char *error );
  704. }
  705. struct avgcost_data
  706. {
  707.   unsigned long long count;
  708.   long long totalquantity;
  709.   double totalprice;
  710. };
  711. /*
  712. ** Average Cost Aggregate Function.
  713. */
  714. my_bool
  715. avgcost_init( UDF_INIT* initid, UDF_ARGS* args, char* message )
  716. {
  717.   struct avgcost_data* data;
  718.   if (args->arg_count != 2)
  719.   {
  720.     strcpy(
  721.    message,
  722.    "wrong number of arguments: AVGCOST() requires two arguments"
  723.    );
  724.     return 1;
  725.   }
  726.   if ((args->arg_type[0] != INT_RESULT) && (args->arg_type[1] != REAL_RESULT) )
  727.   {
  728.     strcpy(
  729.    message,
  730.    "wrong argument type: AVGCOST() requires an INT and a REAL"
  731.    );
  732.     return 1;
  733.   }
  734.   /*
  735.   ** force arguments to double.
  736.   */
  737.   /*args->arg_type[0] = REAL_RESULT;
  738.     args->arg_type[1] = REAL_RESULT;*/
  739.   initid->maybe_null = 0; // The result may be null
  740.   initid->decimals = 4; // We want 4 decimals in the result
  741.   initid->max_length = 20; // 6 digits + . + 10 decimals
  742.   data = new struct avgcost_data;
  743.   data->totalquantity = 0;
  744.   data->totalprice = 0.0;
  745.   initid->ptr = (char*)data;
  746.   return 0;
  747. }
  748. void
  749. avgcost_deinit( UDF_INIT* initid )
  750. {
  751.   delete initid->ptr;
  752. }
  753. void
  754. avgcost_reset( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char* message )
  755. {
  756.   struct avgcost_data* data = (struct avgcost_data*)initid->ptr;
  757.   data->totalprice = 0.0;
  758.   data->totalquantity = 0;
  759.   data->count = 0;
  760.   *is_null = 0;
  761.   avgcost_add( initid, args, is_null, message );
  762. }
  763. void
  764. avgcost_add( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char* message )
  765. {
  766.   if (args->args[0] && args->args[1])
  767.   {
  768.     struct avgcost_data* data = (struct avgcost_data*)initid->ptr;
  769.     long long quantity = *((long long*)args->args[0]);
  770.     long long newquantity = data->totalquantity + quantity;
  771.     double price = *((double*)args->args[1]);
  772.     data->count++;
  773.     if (   ((data->totalquantity >= 0) && (quantity < 0))
  774.    || ((data->totalquantity <  0) && (quantity > 0)) )
  775.     {
  776.       /*
  777.       ** passing from + to - or from - to +
  778.       */
  779.       if (   ((quantity < 0) && (newquantity < 0))
  780.      || ((quantity > 0) && (newquantity > 0)) )
  781.       {
  782. data->totalprice = price * double(newquantity);
  783.       }
  784.       /*
  785.       ** sub q if totalq > 0
  786.       ** add q if totalq < 0
  787.       */
  788.       else
  789.       {
  790. price   = data->totalprice / double(data->totalquantity);
  791. data->totalprice  = price * double(newquantity);
  792.       }
  793.       data->totalquantity = newquantity;
  794.     }
  795.     else
  796.     {
  797.       data->totalquantity += quantity;
  798.       data->totalprice += price * double(quantity);
  799.     }
  800.     if (data->totalquantity == 0)
  801.       data->totalprice = 0.0;
  802.   }
  803. }
  804. double
  805. avgcost( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char* error )
  806. {
  807.   struct avgcost_data* data = (struct avgcost_data*)initid->ptr;
  808.   if (!data->count || !data->totalquantity)
  809.   {
  810.     *is_null = 1;
  811.     return 0.0;
  812.   }
  813.   *is_null = 0;
  814.   return data->totalprice/double(data->totalquantity);
  815. }
  816. #endif // defined(HAVE_GETHOSTBYADDR_R) && defined(HAVE_SOLARIS_STYLE_GETHOST)
  817. #endif /* HAVE_DLOPEN */