// 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_COMMON_INDEXED_DB_PROXY_WEBIDBCURSOR_IMPL_H_ #define CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBCURSOR_IMPL_H_ #include #include #include "base/basictypes.h" #include "content/common/indexed_db/indexed_db_key.h" #include "content/public/common/serialized_script_value.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCursor.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKey.h" namespace content { class RendererWebIDBCursorImpl : public WebKit::WebIDBCursor { public: explicit RendererWebIDBCursorImpl(int32 ipc_cursor_id); virtual ~RendererWebIDBCursorImpl(); virtual void advance(unsigned long count, WebKit::WebIDBCallbacks* callback, WebKit::WebExceptionCode& ec); virtual void continueFunction(const WebKit::WebIDBKey& key, WebKit::WebIDBCallbacks* callback, WebKit::WebExceptionCode& ec); virtual void deleteFunction(WebKit::WebIDBCallbacks* callback, WebKit::WebExceptionCode& ec); virtual void postSuccessHandlerCallback(); void SetPrefetchData( const std::vector& keys, const std::vector& primary_keys, const std::vector& values); void CachedContinue(WebKit::WebIDBCallbacks* callbacks); void ResetPrefetchCache(); private: int32 ipc_cursor_id_; // Prefetch cache. std::deque prefetch_keys_; std::deque prefetch_primary_keys_; std::deque prefetch_values_; // Number of continue calls that would qualify for a pre-fetch. int continue_count_; // Number of items used from the last prefetch. int used_prefetches_; // Number of onsuccess handlers we are waiting for. int pending_onsuccess_callbacks_; // Number of items to request in next prefetch. int prefetch_amount_; enum { kPrefetchContinueThreshold = 2 }; enum { kMinPrefetchAmount = 5 }; enum { kMaxPrefetchAmount = 100 }; }; } // namespace content #endif // CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBCURSOR_IMPL_H_