2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsHttpChunkedDecoder_h__
|
|
|
|
#define nsHttpChunkedDecoder_h__
|
|
|
|
|
2009-10-21 16:01:16 -07:00
|
|
|
#include "nsHttp.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsError.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsHttpHeaderArray.h"
|
|
|
|
|
|
|
|
class nsHttpChunkedDecoder
|
|
|
|
{
|
|
|
|
public:
|
2012-07-30 07:20:58 -07:00
|
|
|
nsHttpChunkedDecoder() : mTrailers(nullptr)
|
2007-03-22 10:30:00 -07:00
|
|
|
, mChunkRemaining(0)
|
2011-10-17 07:59:28 -07:00
|
|
|
, mReachedEOF(false)
|
|
|
|
, mWaitEOF(false) {}
|
2007-03-22 10:30:00 -07:00
|
|
|
~nsHttpChunkedDecoder() { delete mTrailers; }
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool ReachedEOF() { return mReachedEOF; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// called by the transaction to handle chunked content.
|
|
|
|
nsresult HandleChunkedContent(char *buf,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t count,
|
|
|
|
uint32_t *contentRead,
|
|
|
|
uint32_t *contentRemaining);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsHttpHeaderArray *Trailers() { return mTrailers; }
|
|
|
|
|
|
|
|
nsHttpHeaderArray *TakeTrailers() { nsHttpHeaderArray *h = mTrailers;
|
2012-07-30 07:20:58 -07:00
|
|
|
mTrailers = nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
return h; }
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t GetChunkRemaining() { return mChunkRemaining; }
|
2012-04-09 07:21:17 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
private:
|
|
|
|
nsresult ParseChunkRemaining(char *buf,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t count,
|
|
|
|
uint32_t *countRead);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
private:
|
|
|
|
nsHttpHeaderArray *mTrailers;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mChunkRemaining;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCString mLineBuf; // may hold a partial line
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mReachedEOF;
|
|
|
|
bool mWaitEOF;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|