// 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 CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_ANDROID_H_ #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_ANDROID_H_ #include #include #include "base/android/jni_weak_ref.h" #include "base/callback.h" #include "base/compiler_specific.h" #include "base/macros.h" #include "base/time/time.h" #include "components/invalidation/public/invalidation_util.h" #include "components/sync_driver/sync_prefs.h" #include "components/sync_driver/sync_service_observer.h" #include "google/cacheinvalidation/include/types.h" #include "google_apis/gaia/google_service_auth_error.h" class Profile; class ProfileSyncService; // Android wrapper of the ProfileSyncService which provides access from the Java // layer. Note that on Android, there's only a single profile, and therefore // a single instance of this wrapper. The name of the Java class is // ProfileSyncService. // This class should only be accessed from the UI thread. class ProfileSyncServiceAndroid : public sync_driver::SyncServiceObserver { public: ProfileSyncServiceAndroid(JNIEnv* env, jobject obj); ~ProfileSyncServiceAndroid() override; // This method should be called once right after contructing the object. // Returns false if we didn't get a ProfileSyncService. bool Init(); // sync_driver::SyncServiceObserver: void OnStateChanged() override; // Pure ProfileSyncService calls. jboolean IsSyncRequested(JNIEnv* env, const base::android::JavaParamRef& obj); void RequestStart(JNIEnv* env, const base::android::JavaParamRef& obj); void RequestStop(JNIEnv* env, const base::android::JavaParamRef& obj); void SignOutSync(JNIEnv* env, const base::android::JavaParamRef& obj); jboolean IsSyncActive(JNIEnv* env, const base::android::JavaParamRef& obj); jboolean IsBackendInitialized( JNIEnv* env, const base::android::JavaParamRef& obj); void SetSetupInProgress(JNIEnv* env, const base::android::JavaParamRef& obj, jboolean in_progress); jboolean IsFirstSetupComplete( JNIEnv* env, const base::android::JavaParamRef& obj); void SetFirstSetupComplete(JNIEnv* env, const base::android::JavaParamRef& obj); base::android::ScopedJavaLocalRef GetActiveDataTypes( JNIEnv* env, const base::android::JavaParamRef& obj); base::android::ScopedJavaLocalRef GetPreferredDataTypes( JNIEnv* env, const base::android::JavaParamRef& obj); void SetPreferredDataTypes( JNIEnv* env, const base::android::JavaParamRef& obj, jboolean sync_everything, const base::android::JavaParamRef& model_type_selection); jboolean IsCryptographerReady(JNIEnv* env, const base::android::JavaParamRef&); jboolean IsEncryptEverythingAllowed( JNIEnv* env, const base::android::JavaParamRef& obj); jboolean IsEncryptEverythingEnabled( JNIEnv* env, const base::android::JavaParamRef& obj); void EnableEncryptEverything(JNIEnv* env, const base::android::JavaParamRef& obj); jboolean IsPassphraseRequiredForDecryption( JNIEnv* env, const base::android::JavaParamRef& obj); jboolean IsUsingSecondaryPassphrase( JNIEnv* env, const base::android::JavaParamRef& obj); base::android::ScopedJavaLocalRef GetCustomPassphraseKey( JNIEnv* env, const base::android::JavaParamRef& obj); jint GetPassphraseType(JNIEnv* env, const base::android::JavaParamRef& obj); void SetEncryptionPassphrase( JNIEnv* env, const base::android::JavaParamRef& obj, const base::android::JavaParamRef& passphrase); jboolean SetDecryptionPassphrase( JNIEnv* env, const base::android::JavaParamRef& obj, const base::android::JavaParamRef& passphrase); jboolean HasExplicitPassphraseTime( JNIEnv* env, const base::android::JavaParamRef&); jlong GetExplicitPassphraseTime(JNIEnv* env, const base::android::JavaParamRef&); void FlushDirectory(JNIEnv* env, const base::android::JavaParamRef& obj); base::android::ScopedJavaLocalRef QuerySyncStatusSummary( JNIEnv* env, const base::android::JavaParamRef& obj); void GetAllNodes(JNIEnv* env, const base::android::JavaParamRef& obj, const base::android::JavaParamRef& callback); jint GetAuthError(JNIEnv* env, const base::android::JavaParamRef& obj); jboolean HasUnrecoverableError( JNIEnv* env, const base::android::JavaParamRef& obj); // Pure SyncPrefs calls. jboolean IsPassphrasePrompted( JNIEnv* env, const base::android::JavaParamRef& obj); void SetPassphrasePrompted(JNIEnv* env, const base::android::JavaParamRef& obj, jboolean prompted); void SetSyncSessionsId(JNIEnv* env, const base::android::JavaParamRef& obj, const base::android::JavaParamRef& tag); jboolean HasKeepEverythingSynced( JNIEnv* env, const base::android::JavaParamRef& obj); // UI string getters. base::android::ScopedJavaLocalRef GetSyncEnterGooglePassphraseBodyWithDateText( JNIEnv* env, const base::android::JavaParamRef&); base::android::ScopedJavaLocalRef GetSyncEnterCustomPassphraseBodyWithDateText( JNIEnv* env, const base::android::JavaParamRef&); base::android::ScopedJavaLocalRef GetCurrentSignedInAccountText( JNIEnv* env, const base::android::JavaParamRef&); base::android::ScopedJavaLocalRef GetSyncEnterCustomPassphraseBodyText( JNIEnv* env, const base::android::JavaParamRef&); // Functionality only available for testing purposes. // Returns sync internals in a JSON-formatted Java string. base::android::ScopedJavaLocalRef GetAboutInfoForTest( JNIEnv* env, const base::android::JavaParamRef& obj); // Returns a timestamp for when a sync was last executed. The return value is // the internal value of base::Time. jlong GetLastSyncedTimeForTest( JNIEnv* env, const base::android::JavaParamRef& obj); // Overrides ProfileSyncService's NetworkResources object. This is used to // set up the Sync FakeServer for testing. void OverrideNetworkResourcesForTest( JNIEnv* env, const base::android::JavaParamRef& obj, jlong network_resources); static ProfileSyncServiceAndroid* GetProfileSyncServiceAndroid(); // Registers the ProfileSyncServiceAndroid's native methods through JNI. static bool Register(JNIEnv* env); private: // Returns whether sync is allowed by Android. bool IsSyncAllowedByAndroid() const; // A reference to the Chrome profile object. Profile* profile_; // A reference to the sync service for this profile. ProfileSyncService* sync_service_; // The class that handles getting, setting, and persisting sync // preferences. scoped_ptr sync_prefs_; // Java-side ProfileSyncService object. JavaObjectWeakGlobalRef weak_java_profile_sync_service_; DISALLOW_COPY_AND_ASSIGN(ProfileSyncServiceAndroid); }; #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_ANDROID_H_