Ejemplo n.º 1
0
 /**
  * Creates BatchResult object.
  * 
  * @param string            $body           The HTTP response body.
  * @param array             $operations     The batch operations.
  * @param array             $contexts       The batch operations context.
  * @param IAtomReaderWriter $atomSerializer The Atom reader and writer.
  * @param IMimeReaderWriter $mimeSerializer The MIME reader and writer.
  * 
  * @return \MicrosoftAzure\Storage\Table\Models\BatchResult
  * 
  * @throws \InvalidArgumentException 
  */
 public static function create($body, $operations, $contexts, $atomSerializer, $mimeSerializer)
 {
     $result = new BatchResult();
     $responses = self::_constructResponses($body, $mimeSerializer);
     $callbackName = __CLASS__ . '::_compareUsingContentId';
     $count = count($responses);
     $entries = array();
     // Sort $responses based on Content-ID so they match order of $operations.
     uasort($responses, $callbackName);
     for ($i = 0; $i < $count; $i++) {
         $context = $contexts[$i];
         $response = $responses[$i];
         $operation = $operations[$i];
         $type = $operation->getType();
         $body = $response->body;
         $headers = HttpFormatter::formatHeaders($response->headers);
         try {
             ServiceRestProxy::throwIfError($response->statusCode, $response->reason, $response->body, $context->getStatusCodes());
             switch ($type) {
                 case BatchOperationType::INSERT_ENTITY_OPERATION:
                     $entries[] = InsertEntityResult::create($body, $headers, $atomSerializer);
                     break;
                 case BatchOperationType::UPDATE_ENTITY_OPERATION:
                 case BatchOperationType::MERGE_ENTITY_OPERATION:
                 case BatchOperationType::INSERT_REPLACE_ENTITY_OPERATION:
                 case BatchOperationType::INSERT_MERGE_ENTITY_OPERATION:
                     $entries[] = UpdateEntityResult::create($headers);
                     break;
                 case BatchOperationType::DELETE_ENTITY_OPERATION:
                     $entries[] = Resources::BATCH_ENTITY_DEL_MSG;
                     break;
                 default:
                     throw new \InvalidArgumentException();
             }
         } catch (ServiceException $e) {
             $entries[] = BatchError::create($e, $response->headers);
         }
     }
     $result->setEntries($entries);
     return $result;
 }
Ejemplo n.º 2
0
 /**
  * Initializes new TableRestProxy object.
  *
  * @param string            $uri            The storage account uri.
  * @param IAtomReaderWriter $atomSerializer The atom serializer.
  * @param IMimeReaderWriter $mimeSerializer The MIME serializer.
  * @param ISerializable     $dataSerializer The data serializer.
  * @param array             $options        Array of options to pass to the service
  */
 public function __construct($uri, $atomSerializer, $mimeSerializer, $dataSerializer, $options = [])
 {
     parent::__construct($uri, Resources::EMPTY_STRING, $dataSerializer, $options);
     $this->_atomSerializer = $atomSerializer;
     $this->_mimeSerializer = $mimeSerializer;
 }