You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FileSender.java 6.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. /*
  2. * Copyright (C) 2009-2010, Google Inc.
  3. * and other copyright owners as documented in the project's IP log.
  4. *
  5. * This program and the accompanying materials are made available
  6. * under the terms of the Eclipse Distribution License v1.0 which
  7. * accompanies this distribution, is reproduced below, and is
  8. * available at http://www.eclipse.org/org/documents/edl-v10.php
  9. *
  10. * All rights reserved.
  11. *
  12. * Redistribution and use in source and binary forms, with or
  13. * without modification, are permitted provided that the following
  14. * conditions are met:
  15. *
  16. * - Redistributions of source code must retain the above copyright
  17. * notice, this list of conditions and the following disclaimer.
  18. *
  19. * - Redistributions in binary form must reproduce the above
  20. * copyright notice, this list of conditions and the following
  21. * disclaimer in the documentation and/or other materials provided
  22. * with the distribution.
  23. *
  24. * - Neither the name of the Eclipse Foundation, Inc. nor the
  25. * names of its contributors may be used to endorse or promote
  26. * products derived from this software without specific prior
  27. * written permission.
  28. *
  29. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  30. * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  31. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  32. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  33. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  34. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  35. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  36. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  37. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  38. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  39. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  40. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  41. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  42. */
  43. package org.eclipse.jgit.http.server;
  44. import static javax.servlet.http.HttpServletResponse.SC_PARTIAL_CONTENT;
  45. import static javax.servlet.http.HttpServletResponse.SC_REQUESTED_RANGE_NOT_SATISFIABLE;
  46. import static org.eclipse.jgit.util.HttpSupport.HDR_ACCEPT_RANGES;
  47. import static org.eclipse.jgit.util.HttpSupport.HDR_CONTENT_LENGTH;
  48. import static org.eclipse.jgit.util.HttpSupport.HDR_CONTENT_RANGE;
  49. import static org.eclipse.jgit.util.HttpSupport.HDR_IF_RANGE;
  50. import static org.eclipse.jgit.util.HttpSupport.HDR_RANGE;
  51. import java.io.EOFException;
  52. import java.io.File;
  53. import java.io.FileNotFoundException;
  54. import java.io.IOException;
  55. import java.io.OutputStream;
  56. import java.io.RandomAccessFile;
  57. import java.text.MessageFormat;
  58. import java.util.Enumeration;
  59. import javax.servlet.http.HttpServletRequest;
  60. import javax.servlet.http.HttpServletResponse;
  61. import org.eclipse.jgit.lib.ObjectId;
  62. import org.eclipse.jgit.util.IO;
  63. /**
  64. * Dumps a file over HTTP GET (or its information via HEAD).
  65. * <p>
  66. * Supports a single byte range requested via {@code Range} HTTP header. This
  67. * feature supports a dumb client to resume download of a larger object file.
  68. */
  69. final class FileSender {
  70. private final File path;
  71. private final RandomAccessFile source;
  72. private final long lastModified;
  73. private final long fileLen;
  74. private long pos;
  75. private long end;
  76. FileSender(final File path) throws FileNotFoundException {
  77. this.path = path;
  78. this.source = new RandomAccessFile(path, "r");
  79. try {
  80. this.lastModified = path.lastModified();
  81. this.fileLen = source.getChannel().size();
  82. this.end = fileLen;
  83. } catch (IOException e) {
  84. try {
  85. source.close();
  86. } catch (IOException closeError) {
  87. // Ignore any error closing the stream.
  88. }
  89. final FileNotFoundException r;
  90. r = new FileNotFoundException(MessageFormat.format(HttpServerText.get().cannotGetLengthOf, path));
  91. r.initCause(e);
  92. throw r;
  93. }
  94. }
  95. void close() {
  96. try {
  97. source.close();
  98. } catch (IOException e) {
  99. // Ignore close errors on a read-only stream.
  100. }
  101. }
  102. long getLastModified() {
  103. return lastModified;
  104. }
  105. String getTailChecksum() throws IOException {
  106. final int n = 20;
  107. final byte[] buf = new byte[n];
  108. IO.readFully(source.getChannel(), fileLen - n, buf, 0, n);
  109. return ObjectId.fromRaw(buf).getName();
  110. }
  111. void serve(final HttpServletRequest req, final HttpServletResponse rsp,
  112. final boolean sendBody) throws IOException {
  113. if (!initRangeRequest(req, rsp)) {
  114. rsp.sendError(SC_REQUESTED_RANGE_NOT_SATISFIABLE);
  115. return;
  116. }
  117. rsp.setHeader(HDR_ACCEPT_RANGES, "bytes");
  118. rsp.setHeader(HDR_CONTENT_LENGTH, Long.toString(end - pos));
  119. if (sendBody) {
  120. final OutputStream out = rsp.getOutputStream();
  121. try {
  122. final byte[] buf = new byte[4096];
  123. while (pos < end) {
  124. final int r = (int) Math.min(buf.length, end - pos);
  125. final int n = source.read(buf, 0, r);
  126. if (n < 0) {
  127. throw new EOFException(MessageFormat.format(HttpServerText.get().unexpectedeOFOn, path));
  128. }
  129. out.write(buf, 0, n);
  130. pos += n;
  131. }
  132. out.flush();
  133. } finally {
  134. out.close();
  135. }
  136. }
  137. }
  138. private boolean initRangeRequest(final HttpServletRequest req,
  139. final HttpServletResponse rsp) throws IOException {
  140. final Enumeration<String> rangeHeaders = getRange(req);
  141. if (!rangeHeaders.hasMoreElements()) {
  142. // No range headers, the request is fine.
  143. return true;
  144. }
  145. final String range = rangeHeaders.nextElement();
  146. if (rangeHeaders.hasMoreElements()) {
  147. // To simplify the code we support only one range.
  148. return false;
  149. }
  150. final int eq = range.indexOf('=');
  151. final int dash = range.indexOf('-');
  152. if (eq < 0 || dash < 0 || !range.startsWith("bytes=")) {
  153. return false;
  154. }
  155. final String ifRange = req.getHeader(HDR_IF_RANGE);
  156. if (ifRange != null && !getTailChecksum().equals(ifRange)) {
  157. // If the client asked us to verify the ETag and its not
  158. // what they expected we need to send the entire content.
  159. return true;
  160. }
  161. try {
  162. if (eq + 1 == dash) {
  163. // "bytes=-500" means last 500 bytes
  164. pos = Long.parseLong(range.substring(dash + 1));
  165. pos = fileLen - pos;
  166. } else {
  167. // "bytes=500-" (position 500 to end)
  168. // "bytes=500-1000" (position 500 to 1000)
  169. pos = Long.parseLong(range.substring(eq + 1, dash));
  170. if (dash < range.length() - 1) {
  171. end = Long.parseLong(range.substring(dash + 1));
  172. end++; // range was inclusive, want exclusive
  173. }
  174. }
  175. } catch (NumberFormatException e) {
  176. // We probably hit here because of a non-digit such as
  177. // "," appearing at the end of the first range telling
  178. // us there is a second range following. To simplify
  179. // the code we support only one range.
  180. return false;
  181. }
  182. if (end > fileLen) {
  183. end = fileLen;
  184. }
  185. if (pos >= end) {
  186. return false;
  187. }
  188. rsp.setStatus(SC_PARTIAL_CONTENT);
  189. rsp.setHeader(HDR_CONTENT_RANGE, "bytes " + pos + "-" + (end - 1) + "/"
  190. + fileLen);
  191. source.seek(pos);
  192. return true;
  193. }
  194. @SuppressWarnings("unchecked")
  195. private static Enumeration<String> getRange(final HttpServletRequest req) {
  196. return req.getHeaders(HDR_RANGE);
  197. }
  198. }