[email protected] | d8e44d2 | 2014-05-15 23:14:05 | [diff] [blame] | 1 | // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef COMPONENTS_GCM_DRIVER_GCM_DRIVER_ANDROID_H |
| 6 | #define COMPONENTS_GCM_DRIVER_GCM_DRIVER_ANDROID_H |
| 7 | |
| 8 | #include <jni.h> |
| 9 | |
[email protected] | 385c64ef | 2014-06-03 23:16:54 | [diff] [blame] | 10 | #include "base/android/scoped_java_ref.h" |
[email protected] | 21b7765 | 2014-05-31 01:21:09 | [diff] [blame] | 11 | #include "base/compiler_specific.h" |
| 12 | #include "base/macros.h" |
| 13 | #include "components/gcm_driver/gcm_driver.h" |
| 14 | |
[email protected] | d8e44d2 | 2014-05-15 23:14:05 | [diff] [blame] | 15 | namespace gcm { |
| 16 | |
[email protected] | 385c64ef | 2014-06-03 23:16:54 | [diff] [blame] | 17 | // GCMDriver implementation for Android, using Android GCM APIs. |
[email protected] | 21b7765 | 2014-05-31 01:21:09 | [diff] [blame] | 18 | class GCMDriverAndroid : public GCMDriver { |
[email protected] | d8e44d2 | 2014-05-15 23:14:05 | [diff] [blame] | 19 | public: |
[email protected] | 21b7765 | 2014-05-31 01:21:09 | [diff] [blame] | 20 | GCMDriverAndroid(); |
dcheng | e27b1ef | 2015-02-04 23:34:11 | [diff] [blame] | 21 | ~GCMDriverAndroid() override; |
[email protected] | 21b7765 | 2014-05-31 01:21:09 | [diff] [blame] | 22 | |
[email protected] | 385c64ef | 2014-06-03 23:16:54 | [diff] [blame] | 23 | // Methods called from Java via JNI: |
| 24 | void OnRegisterFinished(JNIEnv* env, |
| 25 | jobject obj, |
| 26 | jstring app_id, |
| 27 | jstring registration_id, |
| 28 | jboolean success); |
| 29 | void OnUnregisterFinished(JNIEnv* env, |
| 30 | jobject obj, |
| 31 | jstring app_id, |
| 32 | jboolean success); |
| 33 | void OnMessageReceived(JNIEnv* env, |
| 34 | jobject obj, |
| 35 | jstring app_id, |
| 36 | jstring sender_id, |
| 37 | jstring collapse_key, |
| 38 | jobjectArray data_keys_and_values); |
| 39 | void OnMessagesDeleted(JNIEnv* env, |
| 40 | jobject obj, |
| 41 | jstring app_id); |
| 42 | |
[email protected] | 21b7765 | 2014-05-31 01:21:09 | [diff] [blame] | 43 | // Register JNI methods. |
[email protected] | d8e44d2 | 2014-05-15 23:14:05 | [diff] [blame] | 44 | static bool RegisterBindings(JNIEnv* env); |
[email protected] | 21b7765 | 2014-05-31 01:21:09 | [diff] [blame] | 45 | |
[email protected] | c27c1079 | 2014-06-05 15:27:23 | [diff] [blame] | 46 | // GCMDriver implementation: |
dcheng | e27b1ef | 2015-02-04 23:34:11 | [diff] [blame] | 47 | void OnSignedIn() override; |
| 48 | void OnSignedOut() override; |
| 49 | void Enable() override; |
| 50 | void AddConnectionObserver(GCMConnectionObserver* observer) override; |
| 51 | void RemoveConnectionObserver(GCMConnectionObserver* observer) override; |
| 52 | void Disable() override; |
| 53 | GCMClient* GetGCMClientForTesting() const override; |
| 54 | bool IsStarted() const override; |
| 55 | bool IsConnected() const override; |
| 56 | void GetGCMStatistics(const GetGCMStatisticsCallback& callback, |
| 57 | bool clear_logs) override; |
| 58 | void SetGCMRecording(const GetGCMStatisticsCallback& callback, |
| 59 | bool recording) override; |
| 60 | void SetAccountTokens( |
mostynb | fe59f48 | 2014-10-06 15:04:46 | [diff] [blame] | 61 | const std::vector<GCMClient::AccountTokenInfo>& account_tokens) override; |
dcheng | e27b1ef | 2015-02-04 23:34:11 | [diff] [blame] | 62 | void UpdateAccountMapping(const AccountMapping& account_mapping) override; |
| 63 | void RemoveAccountMapping(const std::string& account_id) override; |
| 64 | base::Time GetLastTokenFetchTime() override; |
| 65 | void SetLastTokenFetchTime(const base::Time& time) override; |
| 66 | void WakeFromSuspendForHeartbeat(bool wake) override; |
[email protected] | c27c1079 | 2014-06-05 15:27:23 | [diff] [blame] | 67 | |
| 68 | protected: |
| 69 | // GCMDriver implementation: |
dcheng | e27b1ef | 2015-02-04 23:34:11 | [diff] [blame] | 70 | GCMClient::Result EnsureStarted(GCMClient::StartMode start_mode) override; |
| 71 | void RegisterImpl(const std::string& app_id, |
| 72 | const std::vector<std::string>& sender_ids) override; |
| 73 | void UnregisterImpl(const std::string& app_id) override; |
johnme | 07b355a | 2015-02-19 17:00:51 | [diff] [blame^] | 74 | void UnregisterWithSenderIdImpl(const std::string& app_id, |
| 75 | const std::string& sender_id) override; |
dcheng | e27b1ef | 2015-02-04 23:34:11 | [diff] [blame] | 76 | void SendImpl(const std::string& app_id, |
| 77 | const std::string& receiver_id, |
| 78 | const GCMClient::OutgoingMessage& message) override; |
[email protected] | c27c1079 | 2014-06-05 15:27:23 | [diff] [blame] | 79 | |
[email protected] | 21b7765 | 2014-05-31 01:21:09 | [diff] [blame] | 80 | private: |
[email protected] | 385c64ef | 2014-06-03 23:16:54 | [diff] [blame] | 81 | base::android::ScopedJavaGlobalRef<jobject> java_ref_; |
| 82 | |
[email protected] | 21b7765 | 2014-05-31 01:21:09 | [diff] [blame] | 83 | DISALLOW_COPY_AND_ASSIGN(GCMDriverAndroid); |
[email protected] | d8e44d2 | 2014-05-15 23:14:05 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | } // namespace gcm |
| 87 | |
[email protected] | 21b7765 | 2014-05-31 01:21:09 | [diff] [blame] | 88 | #endif // COMPONENTS_GCM_DRIVER_GCM_DRIVER_ANDROID_H |