- improve compatibility with php 5.0.x
[plcapi.git] / lib / xmlrpc_wrappers.inc
1 <?php\r
2 /**\r
3  * PHP-XMLRPC "wrapper" functions\r
4  * Generate stubs to transparently access xmlrpc methods as php functions and viceversa\r
5  *\r
6  * @version $Id: xmlrpc_wrappers.inc,v 1.13 2008/09/20 01:23:47 ggiunta Exp $\r
7  * @author Gaetano Giunta\r
8  * @copyright (C) 2006-2009 G. Giunta\r
9  * @license code licensed under the BSD License: http://phpxmlrpc.sourceforge.net/license.txt\r
10  *\r
11  * @todo separate introspection from code generation for func-2-method wrapping\r
12  * @todo use some better templating system for code generation?\r
13  * @todo implement method wrapping with preservation of php objs in calls\r
14  * @todo when wrapping methods without obj rebuilding, use return_type = 'phpvals' (faster)\r
15  * @todo implement self-parsing of php code for PHP <= 4\r
16  */\r
17 \r
18         // requires: xmlrpc.inc\r
19 \r
20         /**\r
21         * Given a string defining a php type or phpxmlrpc type (loosely defined: strings\r
22         * accepted come from javadoc blocks), return corresponding phpxmlrpc type.\r
23         * NB: for php 'resource' types returns empty string, since resources cannot be serialized;\r
24         * for php class names returns 'struct', since php objects can be serialized as xmlrpc structs\r
25         * for php arrays always return array, even though arrays sometiles serialize as json structs\r
26         * @param string $phptype\r
27         * @return string\r
28         */\r
29         function php_2_xmlrpc_type($phptype)\r
30         {\r
31                 switch(strtolower($phptype))\r
32                 {\r
33                         case 'string':\r
34                                 return $GLOBALS['xmlrpcString'];\r
35                         case 'integer':\r
36                         case $GLOBALS['xmlrpcInt']: // 'int'\r
37                         case $GLOBALS['xmlrpcI4']:\r
38                                 return $GLOBALS['xmlrpcInt'];\r
39                         case 'double':\r
40                                 return $GLOBALS['xmlrpcDouble'];\r
41                         case 'boolean':\r
42                                 return $GLOBALS['xmlrpcBoolean'];\r
43                         case 'array':\r
44                                 return $GLOBALS['xmlrpcArray'];\r
45                         case 'object':\r
46                                 return $GLOBALS['xmlrpcStruct'];\r
47                         case $GLOBALS['xmlrpcBase64']:\r
48                         case $GLOBALS['xmlrpcStruct']:\r
49                                 return strtolower($phptype);\r
50                         case 'resource':\r
51                                 return '';\r
52                         default:\r
53                                 if(class_exists($phptype))\r
54                                 {\r
55                                         return $GLOBALS['xmlrpcStruct'];\r
56                                 }\r
57                                 else\r
58                                 {\r
59                                         // unknown: might be any 'extended' xmlrpc type\r
60                                         return $GLOBALS['xmlrpcValue'];\r
61                                 }\r
62                 }\r
63         }\r
64 \r
65         /**\r
66         * Given a string defining a phpxmlrpc type return corresponding php type.\r
67         * @param string $xmlrpctype\r
68         * @return string\r
69         */\r
70         function xmlrpc_2_php_type($xmlrpctype)\r
71         {\r
72                 switch(strtolower($xmlrpctype))\r
73                 {\r
74                         case 'base64':\r
75                         case 'datetime.iso8601':\r
76                         case 'string':\r
77                                 return $GLOBALS['xmlrpcString'];\r
78                         case 'int':\r
79                         case 'i4':\r
80                                 return 'integer';\r
81                         case 'struct':\r
82                         case 'array':\r
83                                 return 'array';\r
84                         case 'double':\r
85                                 return 'float';\r
86                         case 'undefined':\r
87                                 return 'mixed';\r
88                         case 'boolean':\r
89                         case 'null':\r
90                         default:\r
91                                 // unknown: might be any xmlrpc type\r
92                                 return strtolower($xmlrpctype);\r
93                 }\r
94         }\r
95 \r
96         /**\r
97         * Given a user-defined PHP function, create a PHP 'wrapper' function that can\r
98         * be exposed as xmlrpc method from an xmlrpc_server object and called from remote\r
99         * clients (as well as its corresponding signature info).\r
100         *\r
101         * Since php is a typeless language, to infer types of input and output parameters,\r
102         * it relies on parsing the javadoc-style comment block associated with the given\r
103         * function. Usage of xmlrpc native types (such as datetime.dateTime.iso8601 and base64)\r
104         * in the @param tag is also allowed, if you need the php function to receive/send\r
105         * data in that particular format (note that base64 encoding/decoding is transparently\r
106         * carried out by the lib, while datetime vals are passed around as strings)\r
107         *\r
108         * Known limitations:\r
109         * - requires PHP 5.0.3 +\r
110         * - only works for user-defined functions, not for PHP internal functions\r
111         *   (reflection does not support retrieving number/type of params for those)\r
112         * - functions returning php objects will generate special xmlrpc responses:\r
113         *   when the xmlrpc decoding of those responses is carried out by this same lib, using\r
114         *   the appropriate param in php_xmlrpc_decode, the php objects will be rebuilt.\r
115         *   In short: php objects can be serialized, too (except for their resource members),\r
116         *   using this function.\r
117         *   Other libs might choke on the very same xml that will be generated in this case\r
118         *   (i.e. it has a nonstandard attribute on struct element tags)\r
119         * - usage of javadoc @param tags using param names in a different order from the\r
120         *   function prototype is not considered valid (to be fixed?)\r
121         *\r
122         * Note that since rel. 2.0RC3 the preferred method to have the server call 'standard'\r
123         * php functions (ie. functions not expecting a single xmlrpcmsg obj as parameter)\r
124         * is by making use of the functions_parameters_type class member.\r
125         *\r
126         * @param string $funcname the name of the PHP user function to be exposed as xmlrpc method; array($obj, 'methodname') and array('class', 'methodname') are ok too\r
127         * @param string $newfuncname (optional) name for function to be created\r
128         * @param array $extra_options (optional) array of options for conversion. valid values include:\r
129         *        bool  return_source when true, php code w. function definition will be returned, not evaluated\r
130         *        bool  encode_php_objs let php objects be sent to server using the 'improved' xmlrpc notation, so server can deserialize them as php objects\r
131         *        bool  decode_php_objs --- WARNING !!! possible security hazard. only use it with trusted servers ---\r
132         *        bool  suppress_warnings  remove from produced xml any runtime warnings due to the php function being invoked\r
133         * @return false on error, or an array containing the name of the new php function,\r
134         *         its signature and docs, to be used in the server dispatch map\r
135         *\r
136         * @todo decide how to deal with params passed by ref: bomb out or allow?\r
137         * @todo finish using javadoc info to build method sig if all params are named but out of order\r
138         * @todo add a check for params of 'resource' type\r
139         * @todo add some trigger_errors / error_log when returning false?\r
140         * @todo what to do when the PHP function returns NULL? we are currently returning an empty string value...\r
141         * @todo add an option to suppress php warnings in invocation of user function, similar to server debug level 3?\r
142         * @todo if $newfuncname is empty, we could use create_user_func instead of eval, as it is possibly faster\r
143         * @todo add a verbatim_object_copy parameter to allow avoiding the same obj instance?\r
144         */\r
145         function wrap_php_function($funcname, $newfuncname='', $extra_options=array())\r
146         {\r
147                 $buildit = isset($extra_options['return_source']) ? !($extra_options['return_source']) : true;\r
148                 $prefix = isset($extra_options['prefix']) ? $extra_options['prefix'] : 'xmlrpc';\r
149                 $encode_php_objects = isset($extra_options['encode_php_objs']) ? (bool)$extra_options['encode_php_objs'] : false;\r
150                 $decode_php_objects = isset($extra_options['decode_php_objs']) ? (bool)$extra_options['decode_php_objs'] : false;\r
151                 $catch_warnings = isset($extra_options['suppress_warnings']) && $extra_options['suppress_warnings'] ? '@' : '';\r
152 \r
153                 if(version_compare(phpversion(), '5.0.3') == -1)\r
154                 {\r
155                         // up to php 5.0.3 some useful reflection methods were missing\r
156                         error_log('XML-RPC: cannot not wrap php functions unless running php version bigger than 5.0.3');\r
157                         return false;\r
158                 }\r
159 \r
160         $exists = false;\r
161             if (is_string($funcname) && strpos($funcname, '::') !== false)\r
162             {\r
163                 $funcname = explode('::', $funcname);\r
164             }\r
165         if(is_array($funcname))\r
166         {\r
167             if(count($funcname) < 2 || (!is_string($funcname[0]) && !is_object($funcname[0])))\r
168             {\r
169                         error_log('XML-RPC: syntax for function to be wrapped is wrong');\r
170                         return false;\r
171             }\r
172             if(is_string($funcname[0]))\r
173             {\r
174                 $plainfuncname = implode('::', $funcname);\r
175             }\r
176             elseif(is_object($funcname[0]))\r
177             {\r
178                 $plainfuncname = get_class($funcname[0]) . '->' . $funcname[1];\r
179             }\r
180             $exists = method_exists($funcname[0], $funcname[1]);\r
181             if (!$exists && version_compare(phpversion(), '5.1') < 0)\r
182             {\r
183                // workaround for php 5.0: static class methods are not seen by method_exists\r
184                $exists = is_callable( $funcname );\r
185             }\r
186         }\r
187         else\r
188         {\r
189             $plainfuncname = $funcname;\r
190             $exists = function_exists($funcname);\r
191         }\r
192 \r
193                 if(!$exists)\r
194                 {\r
195                         error_log('XML-RPC: function to be wrapped is not defined: '.$plainfuncname);\r
196                         return false;\r
197                 }\r
198                 else\r
199                 {\r
200                         // determine name of new php function\r
201                         if($newfuncname == '')\r
202                         {\r
203                                 if(is_array($funcname))\r
204                                 {\r
205                                 if(is_string($funcname[0]))\r
206                                         $xmlrpcfuncname = "{$prefix}_".implode('_', $funcname);\r
207                                 else\r
208                                         $xmlrpcfuncname = "{$prefix}_".get_class($funcname[0]) . '_' . $funcname[1];\r
209                                 }\r
210                                 else\r
211                                 {\r
212                                         $xmlrpcfuncname = "{$prefix}_$funcname";\r
213                                 }\r
214                         }\r
215                         else\r
216                         {\r
217                                 $xmlrpcfuncname = $newfuncname;\r
218                         }\r
219                         while($buildit && function_exists($xmlrpcfuncname))\r
220                         {\r
221                                 $xmlrpcfuncname .= 'x';\r
222                         }\r
223 \r
224                         // start to introspect PHP code\r
225                         if(is_array($funcname))\r
226                         {\r
227                         $func = new ReflectionMethod($funcname[0], $funcname[1]);\r
228                         if($func->isPrivate())\r
229                         {\r
230                                 error_log('XML-RPC: method to be wrapped is private: '.$plainfuncname);\r
231                                 return false;\r
232                         }\r
233                         if($func->isProtected())\r
234                         {\r
235                                 error_log('XML-RPC: method to be wrapped is protected: '.$plainfuncname);\r
236                                 return false;\r
237                         }\r
238                         if($func->isConstructor())\r
239                         {\r
240                                 error_log('XML-RPC: method to be wrapped is the constructor: '.$plainfuncname);\r
241                                 return false;\r
242                         }\r
243                             // php 503 always says isdestructor = true...\r
244                 if( version_compare(phpversion(), '5.0.3') != 0 && $func->isDestructor())\r
245                         {\r
246                                 error_log('XML-RPC: method to be wrapped is the destructor: '.$plainfuncname);\r
247                                 return false;\r
248                         }\r
249                         if($func->isAbstract())\r
250                         {\r
251                                 error_log('XML-RPC: method to be wrapped is abstract: '.$plainfuncname);\r
252                                 return false;\r
253                         }\r
254                 /// @todo add more checks for static vs. nonstatic?\r
255             }\r
256                         else\r
257                         {\r
258                         $func = new ReflectionFunction($funcname);\r
259             }\r
260                         if($func->isInternal())\r
261                         {\r
262                                 // Note: from PHP 5.1.0 onward, we will possibly be able to use invokeargs\r
263                                 // instead of getparameters to fully reflect internal php functions ?\r
264                                 error_log('XML-RPC: function to be wrapped is internal: '.$plainfuncname);\r
265                                 return false;\r
266                         }\r
267 \r
268                         // retrieve parameter names, types and description from javadoc comments\r
269 \r
270                         // function description\r
271                         $desc = '';\r
272                         // type of return val: by default 'any'\r
273                         $returns = $GLOBALS['xmlrpcValue'];\r
274                         // desc of return val\r
275                         $returnsDocs = '';\r
276                         // type + name of function parameters\r
277                         $paramDocs = array();\r
278 \r
279                         $docs = $func->getDocComment();\r
280                         if($docs != '')\r
281                         {\r
282                                 $docs = explode("\n", $docs);\r
283                                 $i = 0;\r
284                                 foreach($docs as $doc)\r
285                                 {\r
286                                         $doc = trim($doc, " \r\t/*");\r
287                                         if(strlen($doc) && strpos($doc, '@') !== 0 && !$i)\r
288                                         {\r
289                                                 if($desc)\r
290                                                 {\r
291                                                         $desc .= "\n";\r
292                                                 }\r
293                                                 $desc .= $doc;\r
294                                         }\r
295                                         elseif(strpos($doc, '@param') === 0)\r
296                                         {\r
297                                                 // syntax: @param type [$name] desc\r
298                                                 if(preg_match('/@param\s+(\S+)(\s+\$\S+)?\s+(.+)/', $doc, $matches))\r
299                                                 {\r
300                                                         if(strpos($matches[1], '|'))\r
301                                                         {\r
302                                                                 //$paramDocs[$i]['type'] = explode('|', $matches[1]);\r
303                                                                 $paramDocs[$i]['type'] = 'mixed';\r
304                                                         }\r
305                                                         else\r
306                                                         {\r
307                                                                 $paramDocs[$i]['type'] = $matches[1];\r
308                                                         }\r
309                                                         $paramDocs[$i]['name'] = trim($matches[2]);\r
310                                                         $paramDocs[$i]['doc'] = $matches[3];\r
311                                                 }\r
312                                                 $i++;\r
313                                         }\r
314                                         elseif(strpos($doc, '@return') === 0)\r
315                                         {\r
316                                                 // syntax: @return type desc\r
317                                                 //$returns = preg_split('/\s+/', $doc);\r
318                                                 if(preg_match('/@return\s+(\S+)\s+(.+)/', $doc, $matches))\r
319                                                 {\r
320                                                         $returns = php_2_xmlrpc_type($matches[1]);\r
321                                                         if(isset($matches[2]))\r
322                                                         {\r
323                                                                 $returnsDocs = $matches[2];\r
324                                                         }\r
325                                                 }\r
326                                         }\r
327                                 }\r
328                         }\r
329 \r
330                         // execute introspection of actual function prototype\r
331                         $params = array();\r
332                         $i = 0;\r
333                         foreach($func->getParameters() as $paramobj)\r
334                         {\r
335                                 $params[$i] = array();\r
336                                 $params[$i]['name'] = '$'.$paramobj->getName();\r
337                                 $params[$i]['isoptional'] = $paramobj->isOptional();\r
338                                 $i++;\r
339                         }\r
340 \r
341 \r
342                         // start  building of PHP code to be eval'd\r
343                         $innercode = '';\r
344                         $i = 0;\r
345                         $parsvariations = array();\r
346                         $pars = array();\r
347                         $pnum = count($params);\r
348                         foreach($params as $param)\r
349                         {\r
350                                 if (isset($paramDocs[$i]['name']) && $paramDocs[$i]['name'] && strtolower($paramDocs[$i]['name']) != strtolower($param['name']))\r
351                                 {\r
352                                         // param name from phpdoc info does not match param definition!\r
353                                         $paramDocs[$i]['type'] = 'mixed';\r
354                                 }\r
355 \r
356                                 if($param['isoptional'])\r
357                                 {\r
358                                         // this particular parameter is optional. save as valid previous list of parameters\r
359                                         $innercode .= "if (\$paramcount > $i) {\n";\r
360                                         $parsvariations[] = $pars;\r
361                                 }\r
362                                 $innercode .= "\$p$i = \$msg->getParam($i);\n";\r
363                                 if ($decode_php_objects)\r
364                                 {\r
365                                         $innercode .= "if (\$p{$i}->kindOf() == 'scalar') \$p$i = \$p{$i}->scalarval(); else \$p$i = php_{$prefix}_decode(\$p$i, array('decode_php_objs'));\n";\r
366                                 }\r
367                                 else\r
368                                 {\r
369                                         $innercode .= "if (\$p{$i}->kindOf() == 'scalar') \$p$i = \$p{$i}->scalarval(); else \$p$i = php_{$prefix}_decode(\$p$i);\n";\r
370                                 }\r
371 \r
372                                 $pars[] = "\$p$i";\r
373                                 $i++;\r
374                                 if($param['isoptional'])\r
375                                 {\r
376                                         $innercode .= "}\n";\r
377                                 }\r
378                                 if($i == $pnum)\r
379                                 {\r
380                                         // last allowed parameters combination\r
381                                         $parsvariations[] = $pars;\r
382                                 }\r
383                         }\r
384 \r
385                         $sigs = array();\r
386                         $psigs = array();\r
387                         if(count($parsvariations) == 0)\r
388                         {\r
389                                 // only known good synopsis = no parameters\r
390                                 $parsvariations[] = array();\r
391                                 $minpars = 0;\r
392                         }\r
393                         else\r
394                         {\r
395                                 $minpars = count($parsvariations[0]);\r
396                         }\r
397 \r
398                         if($minpars)\r
399                         {\r
400                                 // add to code the check for min params number\r
401                                 // NB: this check needs to be done BEFORE decoding param values\r
402                                 $innercode = "\$paramcount = \$msg->getNumParams();\n" .\r
403                                 "if (\$paramcount < $minpars) return new {$prefix}resp(0, {$GLOBALS['xmlrpcerr']['incorrect_params']}, '{$GLOBALS['xmlrpcstr']['incorrect_params']}');\n" . $innercode;\r
404                         }\r
405                         else\r
406                         {\r
407                                 $innercode = "\$paramcount = \$msg->getNumParams();\n" . $innercode;\r
408                         }\r
409 \r
410                         $innercode .= "\$np = false;\n";\r
411                         // since there are no closures in php, if we are given an object instance,\r
412             // we store a pointer to it in a global var...\r
413                         if ( is_array($funcname) && is_object($funcname[0]) )\r
414                         {\r
415                             $GLOBALS['xmlrpcWPFObjHolder'][$xmlrpcfuncname] =& $funcname[0];\r
416                             $innercode .= "\$obj =& \$GLOBALS['xmlrpcWPFObjHolder']['$xmlrpcfuncname'];\n";\r
417                             $realfuncname = '$obj->'.$funcname[1];\r
418                         }\r
419                         else\r
420                         {\r
421                         $realfuncname = $plainfuncname;\r
422             }\r
423                         foreach($parsvariations as $pars)\r
424                         {\r
425                                 $innercode .= "if (\$paramcount == " . count($pars) . ") \$retval = {$catch_warnings}$realfuncname(" . implode(',', $pars) . "); else\n";\r
426                                 // build a 'generic' signature (only use an appropriate return type)\r
427                                 $sig = array($returns);\r
428                                 $psig = array($returnsDocs);\r
429                                 for($i=0; $i < count($pars); $i++)\r
430                                 {\r
431                                         if (isset($paramDocs[$i]['type']))\r
432                                         {\r
433                                                 $sig[] = php_2_xmlrpc_type($paramDocs[$i]['type']);\r
434                                         }\r
435                                         else\r
436                                         {\r
437                                                 $sig[] = $GLOBALS['xmlrpcValue'];\r
438                                         }\r
439                                         $psig[] = isset($paramDocs[$i]['doc']) ? $paramDocs[$i]['doc'] : '';\r
440                                 }\r
441                                 $sigs[] = $sig;\r
442                                 $psigs[] = $psig;\r
443                         }\r
444                         $innercode .= "\$np = true;\n";\r
445                         $innercode .= "if (\$np) return new {$prefix}resp(0, {$GLOBALS['xmlrpcerr']['incorrect_params']}, '{$GLOBALS['xmlrpcstr']['incorrect_params']}'); else {\n";\r
446                         //$innercode .= "if (\$_xmlrpcs_error_occurred) return new xmlrpcresp(0, $GLOBALS['xmlrpcerr']user, \$_xmlrpcs_error_occurred); else\n";\r
447                         $innercode .= "if (is_a(\$retval, '{$prefix}resp')) return \$retval; else\n";\r
448                         if($returns == $GLOBALS['xmlrpcDateTime'] || $returns == $GLOBALS['xmlrpcBase64'])\r
449                         {\r
450                                 $innercode .= "return new {$prefix}resp(new {$prefix}val(\$retval, '$returns'));";\r
451                         }\r
452                         else\r
453                         {\r
454                                 if ($encode_php_objects)\r
455                                         $innercode .= "return new {$prefix}resp(php_{$prefix}_encode(\$retval, array('encode_php_objs')));\n";\r
456                                 else\r
457                                         $innercode .= "return new {$prefix}resp(php_{$prefix}_encode(\$retval));\n";\r
458                         }\r
459                         // shall we exclude functions returning by ref?\r
460                         // if($func->returnsReference())\r
461                         //      return false;\r
462                         $code = "function $xmlrpcfuncname(\$msg) {\n" . $innercode . "}\n}";\r
463                         //print_r($code);\r
464                         if ($buildit)\r
465                         {\r
466                                 $allOK = 0;\r
467                                 eval($code.'$allOK=1;');\r
468                                 // alternative\r
469                                 //$xmlrpcfuncname = create_function('$m', $innercode);\r
470 \r
471                                 if(!$allOK)\r
472                                 {\r
473                                         error_log('XML-RPC: could not create function '.$xmlrpcfuncname.' to wrap php function '.$plainfuncname);\r
474                                         return false;\r
475                                 }\r
476                         }\r
477 \r
478                         /// @todo examine if $paramDocs matches $parsvariations and build array for\r
479                         /// usage as method signature, plus put together a nice string for docs\r
480 \r
481                         $ret = array('function' => $xmlrpcfuncname, 'signature' => $sigs, 'docstring' => $desc, 'signature_docs' => $psigs, 'source' => $code);\r
482                         return $ret;\r
483                 }\r
484         }\r
485 \r
486     /**\r
487     * Given a user-defined PHP class or php object, map its methods onto a list of\r
488         * PHP 'wrapper' functions that can be exposed as xmlrpc methods from an xmlrpc_server\r
489         * object and called from remote clients (as well as their corresponding signature info).\r
490         *\r
491     * @param mixed $classname the name of the class whose methods are to be exposed as xmlrpc methods, or an object instance of that class\r
492     * @param array $extra_options see the docs for wrap_php_method for more options\r
493     *        string method_type 'static', 'nonstatic', 'all' and 'auto' (default); the latter will switch between static and non-static depending on wheter $classname is a class name or object instance\r
494     * @return array or false on failure\r
495     *\r
496     * @todo get_class_methods will return both static and non-static methods.\r
497     *       we have to differentiate the action, depending on wheter we recived a class name or object\r
498     */\r
499     function wrap_php_class($classname, $extra_options=array())\r
500     {\r
501                 $methodfilter = isset($extra_options['method_filter']) ? $extra_options['method_filter'] : '';\r
502                 $methodtype = isset($extra_options['method_type']) ? $extra_options['method_type'] : 'auto';\r
503 \r
504         if(version_compare(phpversion(), '5.0.3') == -1)\r
505                 {\r
506                         // up to php 5.0.3 some useful reflection methods were missing\r
507                         error_log('XML-RPC: cannot not wrap php functions unless running php version bigger than 5.0.3');\r
508                         return false;\r
509                 }\r
510 \r
511         $result = array();\r
512                 $mlist = get_class_methods($classname);\r
513                 foreach($mlist as $mname)\r
514                 {\r
515                 if ($methodfilter == '' || preg_match($methodfilter, $mname))\r
516                         {\r
517                         // echo $mlist."\n";\r
518                         $func = new ReflectionMethod($classname, $mname);\r
519                         if(!$func->isPrivate() && !$func->isProtected() && !$func->isConstructor() && !$func->isDestructor() && !$func->isAbstract())\r
520                         {\r
521                                 if(($func->isStatic && ($methodtype == 'all' || $methodtype == 'static' || ($methodtype == 'auto' && is_string($classname)))) ||\r
522                                 (!$func->isStatic && ($methodtype == 'all' || $methodtype == 'nonstatic' || ($methodtype == 'auto' && is_object($classname)))))\r
523                         {\r
524                         $methodwrap = wrap_php_function(array($classname, $mname), '', $extra_options);\r
525                         if ( $methodwrap )\r
526                         {\r
527                             $result[$methodwrap['function']] = $methodwrap['function'];\r
528                         }\r
529                     }\r
530                         }\r
531                         }\r
532                 }\r
533         return $result;\r
534     }\r
535 \r
536         /**\r
537         * Given an xmlrpc client and a method name, register a php wrapper function\r
538         * that will call it and return results using native php types for both\r
539         * params and results. The generated php function will return an xmlrpcresp\r
540         * oject for failed xmlrpc calls\r
541         *\r
542         * Known limitations:\r
543         * - server must support system.methodsignature for the wanted xmlrpc method\r
544         * - for methods that expose many signatures, only one can be picked (we\r
545         *   could in priciple check if signatures differ only by number of params\r
546         *   and not by type, but it would be more complication than we can spare time)\r
547         * - nested xmlrpc params: the caller of the generated php function has to\r
548         *   encode on its own the params passed to the php function if these are structs\r
549         *   or arrays whose (sub)members include values of type datetime or base64\r
550         *\r
551         * Notes: the connection properties of the given client will be copied\r
552         * and reused for the connection used during the call to the generated\r
553         * php function.\r
554         * Calling the generated php function 'might' be slow: a new xmlrpc client\r
555         * is created on every invocation and an xmlrpc-connection opened+closed.\r
556         * An extra 'debug' param is appended to param list of xmlrpc method, useful\r
557         * for debugging purposes.\r
558         *\r
559         * @param xmlrpc_client $client     an xmlrpc client set up correctly to communicate with target server\r
560         * @param string        $methodname the xmlrpc method to be mapped to a php function\r
561         * @param array         $extra_options array of options that specify conversion details. valid ptions include\r
562         *        integer       signum      the index of the method signature to use in mapping (if method exposes many sigs)\r
563         *        integer       timeout     timeout (in secs) to be used when executing function/calling remote method\r
564         *        string        protocol    'http' (default), 'http11' or 'https'\r
565         *        string        new_function_name the name of php function to create. If unsepcified, lib will pick an appropriate name\r
566         *        string        return_source if true return php code w. function definition instead fo function name\r
567         *        bool          encode_php_objs let php objects be sent to server using the 'improved' xmlrpc notation, so server can deserialize them as php objects\r
568         *        bool          decode_php_objs --- WARNING !!! possible security hazard. only use it with trusted servers ---\r
569         *        mixed         return_on_fault a php value to be returned when the xmlrpc call fails/returns a fault response (by default the xmlrpcresp object is returned in this case). If a string is used, '%faultCode%' and '%faultString%' tokens will be substituted with actual error values\r
570         *        bool          debug        set it to 1 or 2 to see debug results of querying server for method synopsis\r
571         * @return string                   the name of the generated php function (or false) - OR AN ARRAY...\r
572         */\r
573         function wrap_xmlrpc_method($client, $methodname, $extra_options=0, $timeout=0, $protocol='', $newfuncname='')\r
574         {\r
575                 // mind numbing: let caller use sane calling convention (as per javadoc, 3 params),\r
576                 // OR the 2.0 calling convention (no options) - we really love backward compat, don't we?\r
577                 if (!is_array($extra_options))\r
578                 {\r
579                         $signum = $extra_options;\r
580                         $extra_options = array();\r
581                 }\r
582                 else\r
583                 {\r
584                         $signum = isset($extra_options['signum']) ? (int)$extra_options['signum'] : 0;\r
585                         $timeout = isset($extra_options['timeout']) ? (int)$extra_options['timeout'] : 0;\r
586                         $protocol = isset($extra_options['protocol']) ? $extra_options['protocol'] : '';\r
587                         $newfuncname = isset($extra_options['new_function_name']) ? $extra_options['new_function_name'] : '';\r
588                 }\r
589                 //$encode_php_objects = in_array('encode_php_objects', $extra_options);\r
590                 //$verbatim_client_copy = in_array('simple_client_copy', $extra_options) ? 1 :\r
591                 //      in_array('build_class_code', $extra_options) ? 2 : 0;\r
592 \r
593                 $encode_php_objects = isset($extra_options['encode_php_objs']) ? (bool)$extra_options['encode_php_objs'] : false;\r
594                 $decode_php_objects = isset($extra_options['decode_php_objs']) ? (bool)$extra_options['decode_php_objs'] : false;\r
595                 $simple_client_copy = isset($extra_options['simple_client_copy']) ? (int)($extra_options['simple_client_copy']) : 0;\r
596                 $buildit = isset($extra_options['return_source']) ? !($extra_options['return_source']) : true;\r
597                 $prefix = isset($extra_options['prefix']) ? $extra_options['prefix'] : 'xmlrpc';\r
598                 if (isset($extra_options['return_on_fault']))\r
599                 {\r
600                         $decode_fault = true;\r
601                         $fault_response = $extra_options['return_on_fault'];\r
602                 }\r
603                 else\r
604                 {\r
605                         $decode_fault = false;\r
606                         $fault_response = '';\r
607                 }\r
608                 $debug = isset($extra_options['debug']) ? ($extra_options['debug']) : 0;\r
609 \r
610                 $msgclass = $prefix.'msg';\r
611                 $valclass = $prefix.'val';\r
612                 $decodefunc = 'php_'.$prefix.'_decode';\r
613 \r
614                 $msg = new $msgclass('system.methodSignature');\r
615                 $msg->addparam(new $valclass($methodname));\r
616                 $client->setDebug($debug);\r
617                 $response =& $client->send($msg, $timeout, $protocol);\r
618                 if($response->faultCode())\r
619                 {\r
620                         error_log('XML-RPC: could not retrieve method signature from remote server for method '.$methodname);\r
621                         return false;\r
622                 }\r
623                 else\r
624                 {\r
625                         $msig = $response->value();\r
626                         if ($client->return_type != 'phpvals')\r
627                         {\r
628                                 $msig = $decodefunc($msig);\r
629                         }\r
630                         if(!is_array($msig) || count($msig) <= $signum)\r
631                         {\r
632                                 error_log('XML-RPC: could not retrieve method signature nr.'.$signum.' from remote server for method '.$methodname);\r
633                                 return false;\r
634                         }\r
635                         else\r
636                         {\r
637                                 // pick a suitable name for the new function, avoiding collisions\r
638                                 if($newfuncname != '')\r
639                                 {\r
640                                         $xmlrpcfuncname = $newfuncname;\r
641                                 }\r
642                                 else\r
643                                 {\r
644                                         // take care to insure that methodname is translated to valid\r
645                                         // php function name\r
646                                         $xmlrpcfuncname = $prefix.'_'.preg_replace(array('/\./', '/[^a-zA-Z0-9_\x7f-\xff]/'),\r
647                                                 array('_', ''), $methodname);\r
648                                 }\r
649                                 while($buildit && function_exists($xmlrpcfuncname))\r
650                                 {\r
651                                         $xmlrpcfuncname .= 'x';\r
652                                 }\r
653 \r
654                                 $msig = $msig[$signum];\r
655                                 $mdesc = '';\r
656                                 // if in 'offline' mode, get method description too.\r
657                                 // in online mode, favour speed of operation\r
658                                 if(!$buildit)\r
659                                 {\r
660                                         $msg = new $msgclass('system.methodHelp');\r
661                                         $msg->addparam(new $valclass($methodname));\r
662                                         $response =& $client->send($msg, $timeout, $protocol);\r
663                                         if (!$response->faultCode())\r
664                                         {\r
665                                                 $mdesc = $response->value();\r
666                                                 if ($client->return_type != 'phpvals')\r
667                                                 {\r
668                                                         $mdesc = $mdesc->scalarval();\r
669                                                 }\r
670                                         }\r
671                                 }\r
672 \r
673                                 $results = build_remote_method_wrapper_code($client, $methodname,\r
674                                         $xmlrpcfuncname, $msig, $mdesc, $timeout, $protocol, $simple_client_copy,\r
675                                         $prefix, $decode_php_objects, $encode_php_objects, $decode_fault,\r
676                                         $fault_response);\r
677 \r
678                                 //print_r($code);\r
679                                 if ($buildit)\r
680                                 {\r
681                                         $allOK = 0;\r
682                                         eval($results['source'].'$allOK=1;');\r
683                                         // alternative\r
684                                         //$xmlrpcfuncname = create_function('$m', $innercode);\r
685                                         if($allOK)\r
686                                         {\r
687                                                 return $xmlrpcfuncname;\r
688                                         }\r
689                                         else\r
690                                         {\r
691                                                 error_log('XML-RPC: could not create function '.$xmlrpcfuncname.' to wrap remote method '.$methodname);\r
692                                                 return false;\r
693                                         }\r
694                                 }\r
695                                 else\r
696                                 {\r
697                                         $results['function'] = $xmlrpcfuncname;\r
698                                         return $results;\r
699                                 }\r
700                         }\r
701                 }\r
702         }\r
703 \r
704         /**\r
705         * Similar to wrap_xmlrpc_method, but will generate a php class that wraps\r
706         * all xmlrpc methods exposed by the remote server as own methods.\r
707         * For more details see wrap_xmlrpc_method.\r
708         * @param xmlrpc_client $client the client obj all set to query the desired server\r
709         * @param array $extra_options list of options for wrapped code\r
710         * @return mixed false on error, the name of the created class if all ok or an array with code, class name and comments (if the appropriatevoption is set in extra_options)\r
711         */\r
712         function wrap_xmlrpc_server($client, $extra_options=array())\r
713         {\r
714                 $methodfilter = isset($extra_options['method_filter']) ? $extra_options['method_filter'] : '';\r
715                 //$signum = isset($extra_options['signum']) ? (int)$extra_options['signum'] : 0;\r
716                 $timeout = isset($extra_options['timeout']) ? (int)$extra_options['timeout'] : 0;\r
717                 $protocol = isset($extra_options['protocol']) ? $extra_options['protocol'] : '';\r
718                 $newclassname = isset($extra_options['new_class_name']) ? $extra_options['new_class_name'] : '';\r
719                 $encode_php_objects = isset($extra_options['encode_php_objs']) ? (bool)$extra_options['encode_php_objs'] : false;\r
720                 $decode_php_objects = isset($extra_options['decode_php_objs']) ? (bool)$extra_options['decode_php_objs'] : false;\r
721                 $verbatim_client_copy = isset($extra_options['simple_client_copy']) ? !($extra_options['simple_client_copy']) : true;\r
722                 $buildit = isset($extra_options['return_source']) ? !($extra_options['return_source']) : true;\r
723                 $prefix = isset($extra_options['prefix']) ? $extra_options['prefix'] : 'xmlrpc';\r
724 \r
725                 $msgclass = $prefix.'msg';\r
726                 //$valclass = $prefix.'val';\r
727                 $decodefunc = 'php_'.$prefix.'_decode';\r
728 \r
729                 $msg = new $msgclass('system.listMethods');\r
730                 $response =& $client->send($msg, $timeout, $protocol);\r
731                 if($response->faultCode())\r
732                 {\r
733                         error_log('XML-RPC: could not retrieve method list from remote server');\r
734                         return false;\r
735                 }\r
736                 else\r
737                 {\r
738                         $mlist = $response->value();\r
739                         if ($client->return_type != 'phpvals')\r
740                         {\r
741                                 $mlist = $decodefunc($mlist);\r
742                         }\r
743                         if(!is_array($mlist) || !count($mlist))\r
744                         {\r
745                                 error_log('XML-RPC: could not retrieve meaningful method list from remote server');\r
746                                 return false;\r
747                         }\r
748                         else\r
749                         {\r
750                                 // pick a suitable name for the new function, avoiding collisions\r
751                                 if($newclassname != '')\r
752                                 {\r
753                                         $xmlrpcclassname = $newclassname;\r
754                                 }\r
755                                 else\r
756                                 {\r
757                                         $xmlrpcclassname = $prefix.'_'.preg_replace(array('/\./', '/[^a-zA-Z0-9_\x7f-\xff]/'),\r
758                                                 array('_', ''), $client->server).'_client';\r
759                                 }\r
760                                 while($buildit && class_exists($xmlrpcclassname))\r
761                                 {\r
762                                         $xmlrpcclassname .= 'x';\r
763                                 }\r
764 \r
765                                 /// @todo add function setdebug() to new class, to enable/disable debugging\r
766                                 $source = "class $xmlrpcclassname\n{\nvar \$client;\n\n";\r
767                                 $source .= "function $xmlrpcclassname()\n{\n";\r
768                                 $source .= build_client_wrapper_code($client, $verbatim_client_copy, $prefix);\r
769                                 $source .= "\$this->client =& \$client;\n}\n\n";\r
770                                 $opts = array('simple_client_copy' => 2, 'return_source' => true,\r
771                                         'timeout' => $timeout, 'protocol' => $protocol,\r
772                                         'encode_php_objs' => $encode_php_objects, 'prefix' => $prefix,\r
773                                         'decode_php_objs' => $decode_php_objects\r
774                                         );\r
775                                 /// @todo build javadoc for class definition, too\r
776                                 foreach($mlist as $mname)\r
777                                 {\r
778                                         if ($methodfilter == '' || preg_match($methodfilter, $mname))\r
779                                         {\r
780                                                 $opts['new_function_name'] = preg_replace(array('/\./', '/[^a-zA-Z0-9_\x7f-\xff]/'),\r
781                                                         array('_', ''), $mname);\r
782                                                 $methodwrap = wrap_xmlrpc_method($client, $mname, $opts);\r
783                                                 if ($methodwrap)\r
784                                                 {\r
785                                                         if (!$buildit)\r
786                                                         {\r
787                                                                 $source .= $methodwrap['docstring'];\r
788                                                         }\r
789                                                         $source .= $methodwrap['source']."\n";\r
790                                                 }\r
791                                                 else\r
792                                                 {\r
793                                                         error_log('XML-RPC: will not create class method to wrap remote method '.$mname);\r
794                                                 }\r
795                                         }\r
796                                 }\r
797                                 $source .= "}\n";\r
798                                 if ($buildit)\r
799                                 {\r
800                                         $allOK = 0;\r
801                                         eval($source.'$allOK=1;');\r
802                                         // alternative\r
803                                         //$xmlrpcfuncname = create_function('$m', $innercode);\r
804                                         if($allOK)\r
805                                         {\r
806                                                 return $xmlrpcclassname;\r
807                                         }\r
808                                         else\r
809                                         {\r
810                                                 error_log('XML-RPC: could not create class '.$xmlrpcclassname.' to wrap remote server '.$client->server);\r
811                                                 return false;\r
812                                         }\r
813                                 }\r
814                                 else\r
815                                 {\r
816                                         return array('class' => $xmlrpcclassname, 'code' => $source, 'docstring' => '');\r
817                                 }\r
818                         }\r
819                 }\r
820         }\r
821 \r
822         /**\r
823         * Given the necessary info, build php code that creates a new function to\r
824         * invoke a remote xmlrpc method.\r
825         * Take care that no full checking of input parameters is done to ensure that\r
826         * valid php code is emitted.\r
827         * Note: real spaghetti code follows...\r
828         * @access private\r
829         */\r
830         function build_remote_method_wrapper_code($client, $methodname, $xmlrpcfuncname,\r
831                 $msig, $mdesc='', $timeout=0, $protocol='', $client_copy_mode=0, $prefix='xmlrpc',\r
832                 $decode_php_objects=false, $encode_php_objects=false, $decode_fault=false,\r
833                 $fault_response='')\r
834         {\r
835                 $code = "function $xmlrpcfuncname (";\r
836                 if ($client_copy_mode < 2)\r
837                 {\r
838                         // client copy mode 0 or 1 == partial / full client copy in emitted code\r
839                         $innercode = build_client_wrapper_code($client, $client_copy_mode, $prefix);\r
840                         $innercode .= "\$client->setDebug(\$debug);\n";\r
841                         $this_ = '';\r
842                 }\r
843                 else\r
844                 {\r
845                         // client copy mode 2 == no client copy in emitted code\r
846                         $innercode = '';\r
847                         $this_ = 'this->';\r
848                 }\r
849                 $innercode .= "\$msg = new {$prefix}msg('$methodname');\n";\r
850 \r
851                 if ($mdesc != '')\r
852                 {\r
853                         // take care that PHP comment is not terminated unwillingly by method description\r
854                         $mdesc = "/**\n* ".str_replace('*/', '* /', $mdesc)."\n";\r
855                 }\r
856                 else\r
857                 {\r
858                         $mdesc = "/**\nFunction $xmlrpcfuncname\n";\r
859                 }\r
860 \r
861                 // param parsing\r
862                 $plist = array();\r
863                 $pcount = count($msig);\r
864                 for($i = 1; $i < $pcount; $i++)\r
865                 {\r
866                         $plist[] = "\$p$i";\r
867                         $ptype = $msig[$i];\r
868                         if($ptype == 'i4' || $ptype == 'int' || $ptype == 'boolean' || $ptype == 'double' ||\r
869                                 $ptype == 'string' || $ptype == 'dateTime.iso8601' || $ptype == 'base64' || $ptype == 'null')\r
870                         {\r
871                                 // only build directly xmlrpcvals when type is known and scalar\r
872                                 $innercode .= "\$p$i = new {$prefix}val(\$p$i, '$ptype');\n";\r
873                         }\r
874                         else\r
875                         {\r
876                                 if ($encode_php_objects)\r
877                                 {\r
878                                         $innercode .= "\$p$i =& php_{$prefix}_encode(\$p$i, array('encode_php_objs'));\n";\r
879                                 }\r
880                                 else\r
881                                 {\r
882                                         $innercode .= "\$p$i =& php_{$prefix}_encode(\$p$i);\n";\r
883                                 }\r
884                         }\r
885                         $innercode .= "\$msg->addparam(\$p$i);\n";\r
886                         $mdesc .= '* @param '.xmlrpc_2_php_type($ptype)." \$p$i\n";\r
887                 }\r
888                 if ($client_copy_mode < 2)\r
889                 {\r
890                         $plist[] = '$debug=0';\r
891                         $mdesc .= "* @param int \$debug when 1 (or 2) will enable debugging of the underlying {$prefix} call (defaults to 0)\n";\r
892                 }\r
893                 $plist = implode(', ', $plist);\r
894                 $mdesc .= '* @return '.xmlrpc_2_php_type($msig[0])." (or an {$prefix}resp obj instance if call fails)\n*/\n";\r
895 \r
896                 $innercode .= "\$res =& \${$this_}client->send(\$msg, $timeout, '$protocol');\n";\r
897                 if ($decode_fault)\r
898                 {\r
899                         if (is_string($fault_response) && ((strpos($fault_response, '%faultCode%') !== false) || (strpos($fault_response, '%faultString%') !== false)))\r
900                         {\r
901                                 $respcode = "str_replace(array('%faultCode%', '%faultString%'), array(\$res->faultCode(), \$res->faultString()), '".str_replace("'", "''", $fault_response)."')";\r
902                         }\r
903                         else\r
904                         {\r
905                                 $respcode = var_export($fault_response, true);\r
906                         }\r
907                 }\r
908                 else\r
909                 {\r
910                         $respcode = '$res';\r
911                 }\r
912                 if ($decode_php_objects)\r
913                 {\r
914                         $innercode .= "if (\$res->faultcode()) return $respcode; else return php_{$prefix}_decode(\$res->value(), array('decode_php_objs'));";\r
915                 }\r
916                 else\r
917                 {\r
918                         $innercode .= "if (\$res->faultcode()) return $respcode; else return php_{$prefix}_decode(\$res->value());";\r
919                 }\r
920 \r
921                 $code = $code . $plist. ") {\n" . $innercode . "\n}\n";\r
922 \r
923                 return array('source' => $code, 'docstring' => $mdesc);\r
924         }\r
925 \r
926         /**\r
927         * Given necessary info, generate php code that will rebuild a client object\r
928         * Take care that no full checking of input parameters is done to ensure that\r
929         * valid php code is emitted.\r
930         * @access private\r
931         */\r
932         function build_client_wrapper_code($client, $verbatim_client_copy, $prefix='xmlrpc')\r
933         {\r
934                 $code = "\$client = new {$prefix}_client('".str_replace("'", "\'", $client->path).\r
935                         "', '" . str_replace("'", "\'", $client->server) . "', $client->port);\n";\r
936 \r
937                 // copy all client fields to the client that will be generated runtime\r
938                 // (this provides for future expansion or subclassing of client obj)\r
939                 if ($verbatim_client_copy)\r
940                 {\r
941                         foreach($client as $fld => $val)\r
942                         {\r
943                                 if($fld != 'debug' && $fld != 'return_type')\r
944                                 {\r
945                                         $val = var_export($val, true);\r
946                                         $code .= "\$client->$fld = $val;\n";\r
947                                 }\r
948                         }\r
949                 }\r
950                 // only make sure that client always returns the correct data type\r
951                 $code .= "\$client->return_type = '{$prefix}vals';\n";\r
952                 //$code .= "\$client->setDebug(\$debug);\n";\r
953                 return $code;\r
954         }\r
955 ?>