summaryrefslogtreecommitdiffstats
path: root/mgrapp/src/com/google/codereview/rpc/MessageRequestEntity.java
blob: ba9afd3724c0e91d0ad83d59130da1e2d127f5f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package com.google.codereview.rpc;

import com.google.protobuf.Message;

import org.apache.commons.httpclient.methods.RequestEntity;
import org.spearce.jgit.lib.NullProgressMonitor;
import org.spearce.jgit.util.TemporaryBuffer;

import java.io.IOException;
import java.io.OutputStream;
import java.util.zip.DeflaterOutputStream;

/**
 * Formats a protocol buffer Message into an HTTP request body.
 * <p>
 * The compressed binary serialized form is always used.
 */
public class MessageRequestEntity implements RequestEntity {
  /** Content-Type for a protocol buffer. */
  public static final String TYPE = "application/x-google-protobuf";

  private final Message msg;
  private final String name;
  private final TemporaryBuffer temp;

  /**
   * Create a new request for a single message.
   * 
   * @param m the message to serialize and transmit.
   * @throws IOException the message could not be compressed into temporary
   *         storage. The local file system may be full, or the message is
   *         unable to compress itself.
   */
  public MessageRequestEntity(final Message m) throws IOException {
    msg = m;
    name = msg.getDescriptorForType().getFullName();
    temp = new TemporaryBuffer();
    final DeflaterOutputStream dos = new DeflaterOutputStream(temp);
    try {
      msg.writeTo(dos);
    } finally {
      dos.close();
    }
  }

  public long getContentLength() {
    return (int) temp.length();
  }

  public String getContentType() {
    return TYPE + "; name=" + name + "; compress=deflate";
  }

  public boolean isRepeatable() {
    return true;
  }

  public void writeRequest(final OutputStream out) throws IOException {
    temp.writeTo(out, NullProgressMonitor.INSTANCE);
  }

  public void destroy() {
    temp.destroy();
  }

  @Override
  public String toString() {
    final StringBuilder r = new StringBuilder();
    r.append(name);
    r.append('\n');
    r.append(msg.toString());
    return r.toString();
  }
}