private RandomAccessFile getTmpBucket() {
   try {
     TempFile tempFile = tempFileManager.createTempFile();
     return new RandomAccessFile(tempFile.getName(), "rw");
   } catch (Exception e) {
     throw new Error(e); // we won't recover, so throw an error
   }
 }
Beispiel #2
0
 private RandomAccessFile getTmpBucket() {
   try {
     TempFile tempFile = tempFileManager.createTempFile();
     return new RandomAccessFile(tempFile.getName(), "rw");
   } catch (Exception e) {
     System.err.println("Error: " + e.getMessage());
   }
   return null;
 }
 /**
  * Retrieves the content of a sent file and saves it to a temporary file. The full path to the
  * saved file is returned.
  */
 private String saveTmpFile(ByteBuffer b, int offset, int len) {
   String path = "";
   if (len > 0) {
     FileOutputStream fileOutputStream = null;
     try {
       TempFile tempFile = tempFileManager.createTempFile();
       ByteBuffer src = b.duplicate();
       fileOutputStream = new FileOutputStream(tempFile.getName());
       FileChannel dest = fileOutputStream.getChannel();
       src.position(offset).limit(offset + len);
       dest.write(src.slice());
       path = tempFile.getName();
     } catch (Exception e) { // Catch exception if any
       throw new Error(e); // we won't recover, so throw an error
     } finally {
       safeClose(fileOutputStream);
     }
   }
   return path;
 }
 @After
 public void after() {
   manager.deleteTempDir();
 }
 @Before
 public void before() {
   manager = new TempFileManager();
   manager.setUserHomeToTempDir();
 }
    @Override
    public void execute() throws IOException {
      try {
        // Read the first 8192 bytes.
        // The full header should fit in here.
        // Apache's default header limit is 8KB.
        // Do NOT assume that a single read will get the entire header
        // at once!
        byte[] buf = new byte[BUFSIZE];
        splitbyte = 0;
        rlen = 0;
        {
          int read = -1;
          try {
            read = inputStream.read(buf, 0, BUFSIZE);
          } catch (Exception e) {
            safeClose(inputStream);
            safeClose(outputStream);
            throw new SocketException("NanoHttpd Shutdown");
          }
          if (read == -1) {
            // socket was been closed
            safeClose(inputStream);
            safeClose(outputStream);
            throw new SocketException("NanoHttpd Shutdown");
          }
          while (read > 0) {
            rlen += read;
            splitbyte = findHeaderEnd(buf, rlen);
            if (splitbyte > 0) break;
            read = inputStream.read(buf, rlen, BUFSIZE - rlen);
          }
        }

        if (splitbyte < rlen) {
          inputStream.unread(buf, splitbyte, rlen - splitbyte);
        }

        parms = new HashMap<String, String>();
        if (null == headers) {
          headers = new HashMap<String, String>();
        }

        // Create a BufferedReader for parsing the header.
        BufferedReader hin =
            new BufferedReader(new InputStreamReader(new ByteArrayInputStream(buf, 0, rlen)));

        // Decode the header into parms and header java properties
        Map<String, String> pre = new HashMap<String, String>();
        decodeHeader(hin, pre, parms, headers);

        method = Method.lookup(pre.get("method"));
        if (method == null) {
          throw new ResponseException(Response.Status.BAD_REQUEST, "BAD REQUEST: Syntax error.");
        }

        uri = pre.get("uri");

        cookies = new CookieHandler(headers);

        // Ok, now do the serve()
        Response r = serve(this);
        if (r == null) {
          throw new ResponseException(
              Response.Status.INTERNAL_ERROR,
              "SERVER INTERNAL ERROR: Serve() returned a null response.");
        } else {
          cookies.unloadQueue(r);
          r.setRequestMethod(method);
          r.send(outputStream);
        }
      } catch (SocketException e) {
        // throw it out to close socket object (finalAccept)
        throw e;
      } catch (SocketTimeoutException ste) {
        throw ste;
      } catch (IOException ioe) {
        Response r =
            new Response(
                Response.Status.INTERNAL_ERROR,
                MIME_PLAINTEXT,
                "SERVER INTERNAL ERROR: IOException: " + ioe.getMessage());
        r.send(outputStream);
        safeClose(outputStream);
      } catch (ResponseException re) {
        Response r = new Response(re.getStatus(), MIME_PLAINTEXT, re.getMessage());
        r.send(outputStream);
        safeClose(outputStream);
      } finally {
        tempFileManager.clear();
      }
    }