diff options
author | primiano@chromium.org <primiano@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-25 09:47:12 +0000 |
---|---|---|
committer | primiano@chromium.org <primiano@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-25 09:47:12 +0000 |
commit | 31b7610edd7f86ada422938430dc5feed12cfd0c (patch) | |
tree | 512ee8f209ff6050e0fd0e651dfb4e8d00a86b9b /content/browser/speech/chunked_byte_buffer.h | |
parent | 9da2de182cb7d5efb97d9aef1f9003245c72cf83 (diff) | |
download | chromium_src-31b7610edd7f86ada422938430dc5feed12cfd0c.zip chromium_src-31b7610edd7f86ada422938430dc5feed12cfd0c.tar.gz chromium_src-31b7610edd7f86ada422938430dc5feed12cfd0c.tar.bz2 |
Introduced ChunkedByteBuffer class which will be required by next speech recognition CLs (2.x).
BUG=116954
TEST=content_unittest (ChunkedByteBufferTest.BasicTest)
Review URL: http://codereview.chromium.org/10123008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133885 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/speech/chunked_byte_buffer.h')
-rw-r--r-- | content/browser/speech/chunked_byte_buffer.h | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/content/browser/speech/chunked_byte_buffer.h b/content/browser/speech/chunked_byte_buffer.h new file mode 100644 index 0000000..71ccc06 --- /dev/null +++ b/content/browser/speech/chunked_byte_buffer.h @@ -0,0 +1,76 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef CONTENT_BROWSER_SPEECH_CHUNKED_BYTE_BUFFER_H_ +#define CONTENT_BROWSER_SPEECH_CHUNKED_BYTE_BUFFER_H_ +#pragma once + +#include <string> +#include <vector> + +#include "base/basictypes.h" +#include "base/memory/scoped_ptr.h" +#include "base/memory/scoped_vector.h" +#include "content/common/content_export.h" + +namespace speech { + +// Models a chunk-oriented byte buffer. The term chunk is herein defined as an +// arbitrary sequence of bytes that is preceeded by N header bytes, indicating +// its size. Data may be appended to the buffer with no particular respect of +// chunks boundaries. However, chunks can be extracted (FIFO) only when their +// content (according to their header) is fully available in the buffer. +// The current implementation support only 4 byte Big Endian headers. +// Empty chunks (i.e. the sequence 00 00 00 00) are NOT allowed. +// +// E.g. 00 00 00 04 xx xx xx xx 00 00 00 02 yy yy 00 00 00 04 zz zz zz zz +// [----- CHUNK 1 -------] [--- CHUNK 2 ---] [------ CHUNK 3 ------] +class CONTENT_EXPORT ChunkedByteBuffer { + public: + ChunkedByteBuffer(); + ~ChunkedByteBuffer(); + + // Appends |length| bytes starting from |start| to the buffer. + void Append(const uint8* start, size_t length); + + // Appends bytes contained in the |string| to the buffer. + void Append(const std::string& string); + + // Checks whether one or more complete chunks are available in the buffer. + bool HasChunks() const; + + // If enough data is available, reads and removes the first complete chunk + // from the buffer. Returns a NULL pointer if no complete chunk is available. + scoped_ptr< std::vector<uint8> > PopChunk(); + + // Clears all the content of the buffer. + void Clear(); + + // Returns the number of raw bytes (including headers) present. + size_t GetTotalLength() const { return total_bytes_stored_; } + + private: + struct Chunk { + Chunk(); + ~Chunk(); + + std::vector<uint8> header; + scoped_ptr< std::vector<uint8> > content; + size_t ExpectedContentLength() const; + + private: + DISALLOW_COPY_AND_ASSIGN(Chunk); + }; + + ScopedVector<Chunk> chunks_; + scoped_ptr<Chunk> partial_chunk_; + size_t total_bytes_stored_; + + DISALLOW_COPY_AND_ASSIGN(ChunkedByteBuffer); +}; + + +} // namespace speech + +#endif // CONTENT_BROWSER_SPEECH_CHUNKED_BYTE_BUFFER_H_ |