diff options
author | ycxiao@chromium.org <ycxiao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-04 23:28:15 +0000 |
---|---|---|
committer | ycxiao@chromium.org <ycxiao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-04 23:28:15 +0000 |
commit | a4d965d6457ad587e19821eb5541082e3d17fdc9 (patch) | |
tree | 783cce366834675ed1080c23885a2484500a8f52 /chrome/browser/browsing_data_cookie_helper.h | |
parent | 199f0db1e6024df05750b6560cd6a672909864c2 (diff) | |
download | chromium_src-a4d965d6457ad587e19821eb5541082e3d17fdc9.zip chromium_src-a4d965d6457ad587e19821eb5541082e3d17fdc9.tar.gz chromium_src-a4d965d6457ad587e19821eb5541082e3d17fdc9.tar.bz2 |
Creat BrowsingDataCookieHelper and CannedBrowsingDataCookieHelper for logging cookies at UI thread.
BUG=XXX
TEST=XXX
Review URL: http://codereview.chromium.org/7355025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95534 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browsing_data_cookie_helper.h')
-rw-r--r-- | chrome/browser/browsing_data_cookie_helper.h | 134 |
1 files changed, 134 insertions, 0 deletions
diff --git a/chrome/browser/browsing_data_cookie_helper.h b/chrome/browser/browsing_data_cookie_helper.h new file mode 100644 index 0000000..6f93054 --- /dev/null +++ b/chrome/browser/browsing_data_cookie_helper.h @@ -0,0 +1,134 @@ +// Copyright (c) 2011 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 CHROME_BROWSER_BROWSING_DATA_COOKIE_HELPER_H_ +#define CHROME_BROWSER_BROWSING_DATA_COOKIE_HELPER_H_ +#pragma once + +#include <string> + +#include "base/basictypes.h" +#include "base/callback.h" +#include "base/memory/ref_counted.h" +#include "net/base/cookie_monster.h" + +class GURL; +class Profile; + +namespace net { +class URLRequestContextGetter; +} + +// This class fetches cookie information on behalf of a caller +// on the UI thread. +// A client of this class need to call StartFetching from the UI thread to +// initiate the flow, and it'll be notified by the callback in its UI +// thread at some later point. +// The client must call CancelNotification() if it's destroyed before the +// callback is notified. +class BrowsingDataCookieHelper + : public base::RefCountedThreadSafe<BrowsingDataCookieHelper> { + public: + explicit BrowsingDataCookieHelper(Profile* profile); + + // Starts the fetching process, which will notify its completion via + // callback. + // This must be called only in the UI thread. + virtual void StartFetching( + const base::Callback<void(const net::CookieList& cookies)>& callback); + + // Cancels the notification callback (i.e., the window that created it no + // longer exists). + // This must be called only in the UI thread. + virtual void CancelNotification(); + + // Requests a single cookie to be deleted in the IO thread. This must be + // called in the UI thread. + virtual void DeleteCookie(const net::CookieMonster::CanonicalCookie& cookie); + + protected: + friend class base::RefCountedThreadSafe<BrowsingDataCookieHelper>; + virtual ~BrowsingDataCookieHelper(); + + private: + // Fetch the cookies. This must be called in the IO thread. + void FetchCookiesOnIOThread(); + + // Callback function for get cookie. This must be called in the IO thread. + void OnFetchComplete(const net::CookieList& cookies); + + // Notifies the completion callback. This must be called in the UI thread. + void NotifyInUIThread(const net::CookieList& cookies); + + // Delete a single cookie. This must be called in IO thread. + void DeleteCookieOnIOThread( + const net::CookieMonster::CanonicalCookie& cookie); + + // Indicates whether or not we're currently fetching information: + // it's true when StartFetching() is called in the UI thread, and it's reset + // after we notify the callback in the UI thread. + // This only mutates on the UI thread. + bool is_fetching_; + + Profile* profile_; + + scoped_refptr<net::URLRequestContextGetter> request_context_getter_; + + // This only mutates on the UI thread. + base::Callback<void(const net::CookieList& cookies)> completion_callback_; + + DISALLOW_COPY_AND_ASSIGN(BrowsingDataCookieHelper); +}; + +// This class is a thin wrapper around BrowsingDataCookieHelper that does not +// fetch its information from the persistent cookie store, but gets them passed +// as a parameter during construction. +class CannedBrowsingDataCookieHelper : public BrowsingDataCookieHelper { + public: + explicit CannedBrowsingDataCookieHelper(Profile* profile); + + // Return a copy of the cookie helper. Only one consumer can use the + // StartFetching method at a time, so we need to create a copy of the helper + // everytime we instantiate a cookies tree model for it. + CannedBrowsingDataCookieHelper* Clone(); + + // Adds cookies and delete the current cookies with the same Name, Domain, + // and Path as the newly created ones. + void AddReadCookies(const GURL& url, + const net::CookieList& cookie_list); + + // Adds cookies that will be stored by the CookieMonster. Designed to mirror + // the logic of SetCookieWithOptions. + void AddChangedCookie(const GURL& url, + const std::string& cookie_line, + const net::CookieOptions& options); + + // Clears the list of canned cookies. + void Reset(); + + // True if no cookie are currently stored. + bool empty() const; + + // BrowsingDataCookieHelper methods. + virtual void StartFetching( + const net::CookieMonster::GetCookieListCallback& callback); + virtual void CancelNotification(); + + private: + // Check if the cookie list contains a cookie with the same name, + // domain, and path as the newly created cookie. Delete the old cookie + // if does. + bool DeleteMetchingCookie( + const net::CookieMonster::CanonicalCookie& add_cookie); + + virtual ~CannedBrowsingDataCookieHelper(); + + net::CookieList cookie_list_; + + Profile* profile_; + + DISALLOW_COPY_AND_ASSIGN(CannedBrowsingDataCookieHelper); +}; + +#endif // CHROME_BROWSER_BROWSING_DATA_COOKIE_HELPER_H_ |