blob: cd2a11f7d66fd38db4956e12239384b632541011 [file] [log] [blame]
// Copyright 2013 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_CHILD_QUOTA_MESSAGE_FILTER_H_
#define CONTENT_CHILD_QUOTA_MESSAGE_FILTER_H_
#include <map>
#include "base/macros.h"
#include "base/synchronization/lock.h"
#include "content/child/worker_thread_message_filter.h"
namespace content {
class QuotaMessageFilter : public WorkerThreadMessageFilter {
public:
explicit QuotaMessageFilter(ThreadSafeSender* thread_safe_sender);
// Generates a new request_id, registers { request_id, thread_id } map to
// the message filter and returns the request_id.
// This method can be called on any thread.
int GenerateRequestID(int thread_id);
// Clears all requests from the thread_id.
void ClearThreadRequests(int thread_id);
protected:
~QuotaMessageFilter() override;
private:
// WorkerThreadMessageFilter:
bool ShouldHandleMessage(const IPC::Message& msg) const override;
void OnFilteredMessageReceived(const IPC::Message& msg) override;
bool GetWorkerThreadIdForMessage(const IPC::Message& msg,
int* ipc_thread_id) override;
typedef std::map<int, int> RequestIdToThreadId;
base::Lock request_id_map_lock_;
RequestIdToThreadId request_id_map_;
int next_request_id_;
DISALLOW_COPY_AND_ASSIGN(QuotaMessageFilter);
};
} // namespace content
#endif // CONTENT_CHILD_QUOTA_MESSAGE_FILTER_H_