Beispiel #1
0
  public void readHeader(HTTPRequest request) throws IOException {
    InputStream is =
        myRepository.getDebugLog().createLogStream(SVNLogType.NETWORK, getInputStream());

    try {
      // may throw EOF exception.
      HTTPStatus status = HTTPParser.parseStatus(is, myCharset);
      HTTPHeader header = HTTPHeader.parseHeader(is, myCharset);
      request.setStatus(status);
      request.setResponseHeader(header);
    } catch (ParseException e) {
      // in case of parse exception:
      // try to read remaining and log it.
      String line = HTTPParser.readLine(is, myCharset);
      while (line != null && line.length() > 0) {
        line = HTTPParser.readLine(is, myCharset);
      }

      throw new IOException(e.getMessage());
    } finally {
      myRepository.getDebugLog().flushStream(is);
    }
  }