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.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  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.util.Enumeration;
  58. import javax.servlet.http.HttpServletRequest;
  59. import javax.servlet.http.HttpServletResponse;
  60. import org.eclipse.jgit.lib.ObjectId;
  61. import org.eclipse.jgit.util.IO;
  62. /**
  63. * Dumps a file over HTTP GET (or its information via HEAD).
  64. * <p>
  65. * Supports a single byte range requested via {@code Range} HTTP header. This
  66. * feature supports a dumb client to resume download of a larger object file.
  67. */
  68. final class FileSender {
  69. private final File path;
  70. private final RandomAccessFile source;
  71. private final long lastModified;
  72. private final long fileLen;
  73. private long pos;
  74. private long end;
  75. FileSender(final File path) throws FileNotFoundException {
  76. this.path = path;
  77. this.source = new RandomAccessFile(path, "r");
  78. try {
  79. this.lastModified = path.lastModified();
  80. this.fileLen = source.getChannel().size();
  81. this.end = fileLen;
  82. } catch (IOException e) {
  83. try {
  84. source.close();
  85. } catch (IOException closeError) {
  86. // Ignore any error closing the stream.
  87. }
  88. final FileNotFoundException r;
  89. r = new FileNotFoundException("Cannot get length of " + path);
  90. r.initCause(e);
  91. throw r;
  92. }
  93. }
  94. void close() {
  95. try {
  96. source.close();
  97. } catch (IOException e) {
  98. // Ignore close errors on a read-only stream.
  99. }
  100. }
  101. long getLastModified() {
  102. return lastModified;
  103. }
  104. String getTailChecksum() throws IOException {
  105. final int n = 20;
  106. final byte[] buf = new byte[n];
  107. IO.readFully(source.getChannel(), fileLen - n, buf, 0, n);
  108. return ObjectId.fromRaw(buf).getName();
  109. }
  110. void serve(final HttpServletRequest req, final HttpServletResponse rsp,
  111. final boolean sendBody) throws IOException {
  112. if (!initRangeRequest(req, rsp)) {
  113. rsp.sendError(SC_REQUESTED_RANGE_NOT_SATISFIABLE);
  114. return;
  115. }
  116. rsp.setHeader(HDR_ACCEPT_RANGES, "bytes");
  117. rsp.setHeader(HDR_CONTENT_LENGTH, Long.toString(end - pos));
  118. if (sendBody) {
  119. final OutputStream out = rsp.getOutputStream();
  120. try {
  121. final byte[] buf = new byte[4096];
  122. while (pos < end) {
  123. final int r = (int) Math.min(buf.length, end - pos);
  124. final int n = source.read(buf, 0, r);
  125. if (n < 0) {
  126. throw new EOFException("Unexpected EOF on " + path);
  127. }
  128. out.write(buf, 0, n);
  129. pos += n;
  130. }
  131. out.flush();
  132. } finally {
  133. out.close();
  134. }
  135. }
  136. }
  137. private boolean initRangeRequest(final HttpServletRequest req,
  138. final HttpServletResponse rsp) throws IOException {
  139. final Enumeration<String> rangeHeaders = getRange(req);
  140. if (!rangeHeaders.hasMoreElements()) {
  141. // No range headers, the request is fine.
  142. return true;
  143. }
  144. final String range = rangeHeaders.nextElement();
  145. if (rangeHeaders.hasMoreElements()) {
  146. // To simplify the code we support only one range.
  147. return false;
  148. }
  149. final int eq = range.indexOf('=');
  150. final int dash = range.indexOf('-');
  151. if (eq < 0 || dash < 0 || !range.startsWith("bytes=")) {
  152. return false;
  153. }
  154. final String ifRange = req.getHeader(HDR_IF_RANGE);
  155. if (ifRange != null && !getTailChecksum().equals(ifRange)) {
  156. // If the client asked us to verify the ETag and its not
  157. // what they expected we need to send the entire content.
  158. return true;
  159. }
  160. try {
  161. if (eq + 1 == dash) {
  162. // "bytes=-500" means last 500 bytes
  163. pos = Long.parseLong(range.substring(dash + 1));
  164. pos = fileLen - pos;
  165. } else {
  166. // "bytes=500-" (position 500 to end)
  167. // "bytes=500-1000" (position 500 to 1000)
  168. pos = Long.parseLong(range.substring(eq + 1, dash));
  169. if (dash < range.length() - 1) {
  170. end = Long.parseLong(range.substring(dash + 1));
  171. end++; // range was inclusive, want exclusive
  172. }
  173. }
  174. } catch (NumberFormatException e) {
  175. // We probably hit here because of a non-digit such as
  176. // "," appearing at the end of the first range telling
  177. // us there is a second range following. To simplify
  178. // the code we support only one range.
  179. return false;
  180. }
  181. if (end > fileLen) {
  182. end = fileLen;
  183. }
  184. if (pos >= end) {
  185. return false;
  186. }
  187. rsp.setStatus(SC_PARTIAL_CONTENT);
  188. rsp.setHeader(HDR_CONTENT_RANGE, "bytes " + pos + "-" + (end - 1) + "/"
  189. + fileLen);
  190. source.seek(pos);
  191. return true;
  192. }
  193. @SuppressWarnings("unchecked")
  194. private static Enumeration<String> getRange(final HttpServletRequest req) {
  195. return req.getHeaders(HDR_RANGE);
  196. }
  197. }