123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- <?php
-
-
-
- class Raven_Serializer
- {
-
-
- const DEFAULT_MB_DETECT_ORDER = 'auto';
-
-
-
- const WESTERN_MB_DETECT_ORDER = 'UTF-8, ASCII, ISO-8859-1, ISO-8859-2, ISO-8859-3, ISO-8859-4, ISO-8859-5, ISO-8859-6, ISO-8859-7, ISO-8859-8, ISO-8859-9, ISO-8859-10, ISO-8859-13, ISO-8859-14, ISO-8859-15, ISO-8859-16, Windows-1251, Windows-1252, Windows-1254';
-
-
-
- protected $mb_detect_order = self::DEFAULT_MB_DETECT_ORDER;
-
-
-
- protected $message_limit = Raven_Client::MESSAGE_LIMIT;
-
-
-
- public function __construct($mb_detect_order = null, $message_limit = null)
- {
- if ($mb_detect_order != null) {
- $this->mb_detect_order = $mb_detect_order;
- }
-
- if ($message_limit != null) {
- $this->message_limit = (int) $message_limit;
- }
- }
-
-
-
- public function serialize($value, $max_depth = 3, $_depth = 0)
- {
- $className = is_object($value) ? get_class($value) : null;
- $toArray = is_array($value) || $className === 'stdClass';
- if ($toArray && $_depth < $max_depth) {
- $new = array();
- foreach ($value as $k => $v) {
- $new[$this->serializeValue($k)] = $this->serialize($v, $max_depth, $_depth + 1);
- }
-
- return $new;
- }
- return $this->serializeValue($value);
- }
-
- protected function serializeString($value)
- {
- $value = (string) $value;
- if (function_exists('mb_detect_encoding')
- && function_exists('mb_convert_encoding')
- ) {
-
- if ($currentEncoding = mb_detect_encoding($value, $this->mb_detect_order)) {
- $value = mb_convert_encoding($value, 'UTF-8', $currentEncoding);
- } else {
- $value = mb_convert_encoding($value, 'UTF-8');
- }
- }
-
- if (strlen($value) > $this->message_limit) {
- $value = substr($value, 0, $this->message_limit - 10) . ' {clipped}';
- }
-
- return $value;
- }
-
-
-
- protected function serializeValue($value)
- {
- if (is_null($value) || is_bool($value) || is_float($value) || is_integer($value)) {
- return $value;
- } elseif (is_object($value) || gettype($value) == 'object') {
- return 'Object '.get_class($value);
- } elseif (is_resource($value)) {
- return 'Resource '.get_resource_type($value);
- } elseif (is_array($value)) {
- return 'Array of length ' . count($value);
- } else {
- return $this->serializeString($value);
- }
- }
-
-
-
-
- public function getMbDetectOrder()
- {
- return $this->mb_detect_order;
- }
-
-
-
- public function setMbDetectOrder($mb_detect_order)
- {
- $this->mb_detect_order = $mb_detect_order;
-
- return $this;
- }
-
-
-
- public function getMessageLimit()
- {
- return $this->message_limit;
- }
-
-
-
- public function setMessageLimit($message_limit)
- {
- $this->message_limit = (int)$message_limit;
- }
- }
|