View Javadoc
1   package org.kuali.common.httplib.api.model;
2   
3   import static com.google.common.io.ByteSource.wrap;
4   import static com.google.common.io.ByteStreams.copy;
5   import static org.kuali.common.httplib.impl.HttpUtils.fromOptionalHeader;
6   import static org.kuali.common.jute.base.Optionals.fromAbsentToNegative;
7   import static org.kuali.common.jute.reflect.Reflection.checkNoNulls;
8   
9   import java.io.ByteArrayOutputStream;
10  import java.io.IOException;
11  import java.io.InputStream;
12  import java.io.OutputStream;
13  
14  import org.apache.http.Header;
15  import org.apache.http.HttpEntity;
16  
17  import com.fasterxml.jackson.annotation.JsonIgnore;
18  import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
19  import com.google.common.io.ByteSource;
20  
21  @JsonDeserialize(builder = ByteSourceEntity.Builder.class)
22  public final class ByteSourceEntity implements HttpEntity {
23  
24      private final ContentMetadata metadata;
25      private final ByteSource byteSource;
26      private final boolean truncated;
27  
28      private ByteSourceEntity(Builder builder) {
29          this.truncated = builder.truncated;
30          this.metadata = builder.metadata;
31          this.byteSource = builder.byteSource;
32      }
33  
34      public static ByteSourceEntity copyOf(HttpEntity entity) throws IOException {
35          if (entity instanceof ByteSourceEntity) {
36              return (ByteSourceEntity) entity;
37          } else {
38              Builder builder = builder(entity);
39              ByteArrayOutputStream baos = new ByteArrayOutputStream();
40              entity.writeTo(baos);
41              builder.withByteSource(wrap(baos.toByteArray()));
42              return builder.build();
43          }
44      }
45  
46      public static ByteSourceEntity build(HttpEntity entity, ByteSource byteSource, boolean truncated) {
47          return builder(entity).withByteSource(byteSource).withTruncated(truncated).build();
48      }
49  
50      public static Builder builder(HttpEntity entity) {
51          Builder builder = builder();
52          builder.withMetadata(ContentMetadata.build(entity));
53          return builder;
54      }
55  
56      public static Builder builder() {
57          return new Builder();
58      }
59  
60      public static class Builder implements org.apache.commons.lang3.builder.Builder<ByteSourceEntity> {
61  
62          private boolean truncated = false;
63          private ContentMetadata metadata;
64          private ByteSource byteSource;
65  
66          public Builder withMetadata(ContentMetadata metadata) {
67              this.metadata = metadata;
68              return this;
69          }
70  
71          public Builder withByteSource(ByteSource byteSource) {
72              this.byteSource = byteSource;
73              return this;
74          }
75  
76          public Builder withTruncated(boolean truncated) {
77              this.truncated = truncated;
78              return this;
79          }
80  
81          @Override
82          public ByteSourceEntity build() {
83              return checkNoNulls(new ByteSourceEntity(this));
84          }
85  
86      }
87  
88      public boolean isTruncated() {
89          return truncated;
90      }
91  
92      public ContentMetadata getMetadata() {
93          return metadata;
94      }
95  
96      @Override
97      @JsonIgnore
98      public boolean isChunked() {
99          return false;
100     }
101 
102     @Override
103     @JsonIgnore
104     public boolean isStreaming() {
105         return false;
106     }
107 
108     @Override
109     @JsonIgnore
110     public boolean isRepeatable() {
111         return true;
112     }
113 
114     @Override
115     @JsonIgnore
116     public long getContentLength() {
117         return fromAbsentToNegative(metadata.getContentLength());
118     }
119 
120     @Override
121     @JsonIgnore
122     public Header getContentType() {
123         return fromOptionalHeader(metadata.getContentType());
124     }
125 
126     @Override
127     @JsonIgnore
128     public Header getContentEncoding() {
129         return fromOptionalHeader(metadata.getContentEncoding());
130     }
131 
132     @Override
133     @JsonIgnore
134     public InputStream getContent() throws IOException {
135         return byteSource.openStream();
136     }
137 
138     public ByteSource getByteSource() {
139         return byteSource;
140     }
141 
142     @Override
143     public void writeTo(OutputStream out) throws IOException {
144         copy(getContent(), out);
145     }
146 
147     /**
148      * Do not call this method. It doesn't do anything
149      *
150      * @deprecated
151      * @see getContent()
152      * @see writeTo(OutputStream out)
153      */
154     @Override
155     @Deprecated
156     public void consumeContent() {}
157 
158 }