Exemplo 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 \WindowsAzure\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->getBody();
         $headers = $response->getHeader();
         try {
             HttpClient::throwIfError($response->getStatus(), $response->getReasonPhrase(), $response->getBody(), $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->getHeader());
         }
     }
     $result->setEntries($entries);
     return $result;
 }
Exemplo n.º 2
0
 /**
  * Does actual work for update and merge entity APIs.
  * 
  * @param string                     $table   The table name.
  * @param Models\Entity              $entity  The entity instance to use.
  * @param string                     $verb    The HTTP method.
  * @param boolean                    $useETag The flag to include etag or not.
  * @param Models\TableServiceOptions $options The optional parameters.
  * 
  * @return Models\UpdateEntityResult
  */
 private function _putOrMergeEntityImpl($table, $entity, $verb, $useETag, $options)
 {
     $context = $this->_constructPutOrMergeEntityContext($table, $entity, $verb, $useETag, $options);
     $response = $this->sendContext($context);
     return UpdateEntityResult::create($response->getHeader());
 }