EMMA Coverage Report (generated Tue Jun 21 05:51:52 EDT 2011)
[all classes][org.jclouds.openstack.swift.functions]

COVERAGE SUMMARY FOR SOURCE FILE [ParseObjectInfoFromHeaders.java]

nameclass, %method, %block, %line, %
ParseObjectInfoFromHeaders.java100% (1/1)100% (3/3)100% (42/42)100% (13/13)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ParseObjectInfoFromHeaders100% (1/1)100% (3/3)100% (42/42)100% (13/13)
ParseObjectInfoFromHeaders (ParseSystemAndUserMetadataFromHeaders, ResourceTo... 100% (1/1)100% (9/9)100% (4/4)
apply (HttpResponse): MutableObjectInfoWithMetadata 100% (1/1)100% (26/26)100% (7/7)
setContext (HttpRequest): ParseObjectInfoFromHeaders 100% (1/1)100% (7/7)100% (2/2)

1/**
2 *
3 * Copyright (C) 2011 Cloud Conscious, LLC. <info@cloudconscious.com>
4 *
5 * ====================================================================
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 * ====================================================================
18 */
19package org.jclouds.openstack.swift.functions;
20 
21import static org.jclouds.http.HttpUtils.attemptToParseSizeAndRangeFromHeaders;
22 
23import javax.inject.Inject;
24 
25import org.jclouds.blobstore.domain.BlobMetadata;
26import org.jclouds.blobstore.functions.ParseSystemAndUserMetadataFromHeaders;
27import org.jclouds.crypto.CryptoStreams;
28import org.jclouds.http.HttpRequest;
29import org.jclouds.http.HttpResponse;
30import org.jclouds.openstack.swift.blobstore.functions.ResourceToObjectInfo;
31import org.jclouds.openstack.swift.domain.MutableObjectInfoWithMetadata;
32import org.jclouds.rest.InvocationContext;
33 
34import com.google.common.base.Function;
35 
36/**
37 * This parses @{link {@link MutableObjectInfoWithMetadata} from HTTP headers.
38 * 
39 * @author Adrian Cole
40 */
41public class ParseObjectInfoFromHeaders implements Function<HttpResponse, MutableObjectInfoWithMetadata>,
42         InvocationContext<ParseObjectInfoFromHeaders> {
43   private final ParseSystemAndUserMetadataFromHeaders blobMetadataParser;
44   private final ResourceToObjectInfo blobToObjectInfo;
45 
46   @Inject
47   public ParseObjectInfoFromHeaders(ParseSystemAndUserMetadataFromHeaders blobMetadataParser,
48            ResourceToObjectInfo blobToObjectInfo) {
49      this.blobMetadataParser = blobMetadataParser;
50      this.blobToObjectInfo = blobToObjectInfo;
51   }
52 
53   /**
54    * parses the http response headers to create a new {@link MutableObjectInfoWithMetadata} object.
55    */
56   public MutableObjectInfoWithMetadata apply(HttpResponse from) {
57      BlobMetadata base = blobMetadataParser.apply(from);
58      MutableObjectInfoWithMetadata to = blobToObjectInfo.apply(base);
59      to.setBytes(attemptToParseSizeAndRangeFromHeaders(from));
60      String eTagHeader = from.getFirstHeaderOrNull("Etag");
61      if (eTagHeader != null) {
62         to.setHash(CryptoStreams.hex(eTagHeader));
63      }
64      return to;
65   }
66 
67   @Override
68   public ParseObjectInfoFromHeaders setContext(HttpRequest request) {
69      blobMetadataParser.setContext(request);
70      return this;
71   }
72 
73}

[all classes][org.jclouds.openstack.swift.functions]
EMMA 2.0.5312 (C) Vladimir Roubtsov