toxmlrpc.inc.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <?php
  2. /**
  3. * Helper functions to convert between ADODB recordset objects and XMLRPC values.
  4. * Uses John Lim's AdoDB and Edd Dumbill's phpxmlrpc libs
  5. *
  6. * @author Daniele Baroncelli
  7. * @author Gaetano Giunta
  8. * @copyright (c) 2003 Giunta/Baroncelli. All rights reserved.
  9. *
  10. * @todo some more error checking here and there
  11. * @todo document the xmlrpc-struct used to encode recordset info
  12. */
  13. /**
  14. * Include the main libraries
  15. */
  16. require_once('xmlrpc.inc');
  17. require_once('adodb.inc.php');
  18. /**
  19. * Builds an xmlrpc struct value out of an AdoDB recordset
  20. */
  21. function rs2xmlrpcval(&$adodbrs) {
  22. $numfields = $adodbrs->FieldCount();
  23. $numrecords = $adodbrs->RecordCount();
  24. // build structure holding recordset information
  25. $fieldstruct = array();
  26. for ($i = 0; $i < $numfields; $i++) {
  27. $fld = $adodbrs->FetchField($i);
  28. $fieldarray = array();
  29. if (isset($fld->name))
  30. $fieldarray["name"] = new xmlrpcval ($fld->name);
  31. if (isset($fld->type))
  32. $fieldarray["type"] = new xmlrpcval ($fld->type);
  33. if (isset($fld->max_length))
  34. $fieldarray["max_length"] = new xmlrpcval ($fld->max_length, "int");
  35. if (isset($fld->not_null))
  36. $fieldarray["not_null"] = new xmlrpcval ($fld->not_null, "boolean");
  37. if (isset($fld->has_default))
  38. $fieldarray["has_default"] = new xmlrpcval ($fld->has_default, "boolean");
  39. if (isset($fld->default_value))
  40. $fieldarray["default_value"] = new xmlrpcval ($fld->default_value);
  41. $fieldstruct[$i] = new xmlrpcval ($fieldarray, "struct");
  42. }
  43. $fieldcount = new xmlrpcval ($numfields, "int");
  44. $recordcount = new xmlrpcval ($numrecords, "int");
  45. $sql = new xmlrpcval ($adodbrs->sql);
  46. $fieldinfo = new xmlrpcval ($fieldstruct, "array");
  47. $header = new xmlrpcval ( array(
  48. "fieldcount" => $fieldcount,
  49. "recordcount" => $recordcount,
  50. "sql" => $sql,
  51. "fieldinfo" => $fieldinfo
  52. ), "struct");
  53. // build structure containing recordset data
  54. $rows = array();
  55. while (!$adodbrs->EOF) {
  56. $columns = array();
  57. // This should work on all cases of fetch mode: assoc, num, both or default
  58. if ($adodbrs->fetchMode == 'ADODB_FETCH_BOTH' || count($adodbrs->fields) == 2 * $adodbrs->FieldCount())
  59. for ($i = 0; $i < $numfields; $i++)
  60. if ($columns[$i] === null)
  61. $columns[$i] = new xmlrpcval ('');
  62. else
  63. $columns[$i] = xmlrpc_encode ($adodbrs->fields[$i]);
  64. else
  65. foreach ($adodbrs->fields as $val)
  66. if ($val === null)
  67. $columns[$i] = new xmlrpcval ('');
  68. else
  69. $columns[] = xmlrpc_encode ($val);
  70. $rows[] = new xmlrpcval ($columns, "array");
  71. $adodbrs->MoveNext();
  72. }
  73. $body = new xmlrpcval ($rows, "array");
  74. // put it all together and build final xmlrpc struct
  75. $xmlrpcrs = new xmlrpcval ( array(
  76. "header" => $header,
  77. "body" => $body,
  78. ), "struct");
  79. return $xmlrpcrs;
  80. }
  81. /**
  82. * Returns an xmlrpc struct value as string out of an AdoDB recordset
  83. */
  84. function rs2xmlrpcstring (&$adodbrs) {
  85. $xmlrpc = rs2xmlrpcval ($adodbrs);
  86. if ($xmlrpc)
  87. return $xmlrpc->serialize();
  88. else
  89. return null;
  90. }
  91. /**
  92. * Given a well-formed xmlrpc struct object returns an AdoDB object
  93. *
  94. * @todo add some error checking on the input value
  95. */
  96. function xmlrpcval2rs (&$xmlrpcval) {
  97. $fields_array = array();
  98. $data_array = array();
  99. // rebuild column information
  100. $header =& $xmlrpcval->structmem('header');
  101. $numfields = $header->structmem('fieldcount');
  102. $numfields = $numfields->scalarval();
  103. $numrecords = $header->structmem('recordcount');
  104. $numrecords = $numrecords->scalarval();
  105. $sqlstring = $header->structmem('sql');
  106. $sqlstring = $sqlstring->scalarval();
  107. $fieldinfo =& $header->structmem('fieldinfo');
  108. for ($i = 0; $i < $numfields; $i++) {
  109. $temp =& $fieldinfo->arraymem($i);
  110. $fld = new ADOFieldObject();
  111. while (list($key,$value) = $temp->structeach()) {
  112. if ($key == "name") $fld->name = $value->scalarval();
  113. if ($key == "type") $fld->type = $value->scalarval();
  114. if ($key == "max_length") $fld->max_length = $value->scalarval();
  115. if ($key == "not_null") $fld->not_null = $value->scalarval();
  116. if ($key == "has_default") $fld->has_default = $value->scalarval();
  117. if ($key == "default_value") $fld->default_value = $value->scalarval();
  118. } // while
  119. $fields_array[] = $fld;
  120. } // for
  121. // fetch recordset information into php array
  122. $body =& $xmlrpcval->structmem('body');
  123. for ($i = 0; $i < $numrecords; $i++) {
  124. $data_array[$i]= array();
  125. $xmlrpcrs_row =& $body->arraymem($i);
  126. for ($j = 0; $j < $numfields; $j++) {
  127. $temp =& $xmlrpcrs_row->arraymem($j);
  128. $data_array[$i][$j] = $temp->scalarval();
  129. } // for j
  130. } // for i
  131. // finally build in-memory recordset object and return it
  132. $rs = new ADORecordSet_array();
  133. $rs->InitArrayFields($data_array,$fields_array);
  134. return $rs;
  135. }
  136. ?>