blob: 9ad5a19b2e4a2d3d74e255feaa76f4b3ccd7672f [file] [log] [blame]
Dianne Hackborn231cc602009-04-27 17:10:36 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.content;
18
Dianne Hackborn7a135592009-05-06 00:28:37 -070019import android.accounts.Account;
Fred Quintanad5e4fdc2010-03-30 15:16:21 -070020import android.content.SyncInfo;
Dianne Hackborn231cc602009-04-27 17:10:36 -070021import android.content.ISyncStatusObserver;
Fred Quintanaac9385e2009-06-22 18:00:59 -070022import android.content.SyncAdapterType;
Matthew Williamsfa774182013-06-18 15:44:11 -070023import android.content.SyncRequest;
Dianne Hackborn231cc602009-04-27 17:10:36 -070024import android.content.SyncStatusInfo;
Fred Quintanac5d1c6d2010-01-27 12:17:49 -080025import android.content.PeriodicSync;
Dianne Hackborn231cc602009-04-27 17:10:36 -070026import android.net.Uri;
27import android.os.Bundle;
28import android.database.IContentObserver;
29
30/**
31 * @hide
32 */
33interface IContentService {
Dianne Hackborn231cc602009-04-27 17:10:36 -070034 void unregisterContentObserver(IContentObserver observer);
35
Christopher Tate16aa9732012-09-17 16:23:44 -070036 /**
37 * Register a content observer tied to a specific user's view of the provider.
38 * @param userHandle the user whose view of the provider is to be observed. May be
39 * the calling user without requiring any permission, otherwise the caller needs to
40 * hold the INTERACT_ACROSS_USERS_FULL permission. Pseudousers USER_ALL and
41 * USER_CURRENT are properly handled.
42 */
43 void registerContentObserver(in Uri uri, boolean notifyForDescendants,
44 IContentObserver observer, int userHandle);
45
46 /**
47 * Notify observers of a particular user's view of the provider.
48 * @param userHandle the user whose view of the provider is to be notified. May be
49 * the calling user without requiring any permission, otherwise the caller needs to
50 * hold the INTERACT_ACROSS_USERS_FULL permission. Pseudousers USER_ALL
51 * USER_CURRENT are properly interpreted.
52 */
Dianne Hackborn231cc602009-04-27 17:10:36 -070053 void notifyChange(in Uri uri, IContentObserver observer,
Christopher Tate16aa9732012-09-17 16:23:44 -070054 boolean observerWantsSelfNotifications, boolean syncToNetwork,
55 int userHandle);
Dianne Hackborn231cc602009-04-27 17:10:36 -070056
Fred Quintanaac9385e2009-06-22 18:00:59 -070057 void requestSync(in Account account, String authority, in Bundle extras);
Matthew Williamsfa774182013-06-18 15:44:11 -070058 void sync(in SyncRequest request);
Fred Quintanaac9385e2009-06-22 18:00:59 -070059 void cancelSync(in Account account, String authority);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -080060
Dianne Hackborn231cc602009-04-27 17:10:36 -070061 /**
62 * Check if the provider should be synced when a network tickle is received
63 * @param providerName the provider whose setting we are querying
Fred Quintanac5d1c6d2010-01-27 12:17:49 -080064 * @return true if the provider should be synced when a network tickle is received
Dianne Hackborn231cc602009-04-27 17:10:36 -070065 */
Fred Quintanaac9385e2009-06-22 18:00:59 -070066 boolean getSyncAutomatically(in Account account, String providerName);
Dianne Hackborn231cc602009-04-27 17:10:36 -070067
68 /**
69 * Set whether or not the provider is synced when it receives a network tickle.
70 *
71 * @param providerName the provider whose behavior is being controlled
72 * @param sync true if the provider should be synced when tickles are received for it
73 */
Fred Quintanaac9385e2009-06-22 18:00:59 -070074 void setSyncAutomatically(in Account account, String providerName, boolean sync);
Dianne Hackborn231cc602009-04-27 17:10:36 -070075
Fred Quintana5e787c42009-08-16 23:13:53 -070076 /**
Fred Quintanac5d1c6d2010-01-27 12:17:49 -080077 * Get the frequency of the periodic poll, if any.
78 * @param providerName the provider whose setting we are querying
79 * @return the frequency of the periodic sync in seconds. If 0 then no periodic syncs
80 * will take place.
81 */
82 List<PeriodicSync> getPeriodicSyncs(in Account account, String providerName);
83
84 /**
85 * Set whether or not the provider is to be synced on a periodic basis.
86 *
87 * @param providerName the provider whose behavior is being controlled
88 * @param pollFrequency the period that a sync should be performed, in seconds. If this is
89 * zero or less then no periodic syncs will be performed.
90 */
91 void addPeriodicSync(in Account account, String providerName, in Bundle extras,
92 long pollFrequency);
93
94 /**
95 * Set whether or not the provider is to be synced on a periodic basis.
96 *
97 * @param providerName the provider whose behavior is being controlled
98 * @param pollFrequency the period that a sync should be performed, in seconds. If this is
99 * zero or less then no periodic syncs will be performed.
100 */
101 void removePeriodicSync(in Account account, String providerName, in Bundle extras);
102
103 /**
Fred Quintana5e787c42009-08-16 23:13:53 -0700104 * Check if this account/provider is syncable.
105 * @return >0 if it is syncable, 0 if not, and <0 if the state isn't known yet.
106 */
107 int getIsSyncable(in Account account, String providerName);
108
109 /**
110 * Set whether this account/provider is syncable.
111 * @param syncable, >0 denotes syncable, 0 means not syncable, <0 means unknown
112 */
113 void setIsSyncable(in Account account, String providerName, int syncable);
114
Fred Quintanaac9385e2009-06-22 18:00:59 -0700115 void setMasterSyncAutomatically(boolean flag);
Dianne Hackborn231cc602009-04-27 17:10:36 -0700116
Fred Quintanaac9385e2009-06-22 18:00:59 -0700117 boolean getMasterSyncAutomatically();
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800118
Dianne Hackborn231cc602009-04-27 17:10:36 -0700119 /**
120 * Returns true if there is currently a sync operation for the given
121 * account or authority in the pending list, or actively being processed.
122 */
Dianne Hackborn7a135592009-05-06 00:28:37 -0700123 boolean isSyncActive(in Account account, String authority);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800124
Fred Quintanac6a69552010-09-27 17:05:04 -0700125 List<SyncInfo> getCurrentSyncs();
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800126
Dianne Hackborn231cc602009-04-27 17:10:36 -0700127 /**
Fred Quintanaac9385e2009-06-22 18:00:59 -0700128 * Returns the types of the SyncAdapters that are registered with the system.
129 * @return Returns the types of the SyncAdapters that are registered with the system.
130 */
131 SyncAdapterType[] getSyncAdapterTypes();
132
133 /**
Dianne Hackborn231cc602009-04-27 17:10:36 -0700134 * Returns the status that matches the authority. If there are multiples accounts for
135 * the authority, the one with the latest "lastSuccessTime" status is returned.
136 * @param authority the authority whose row should be selected
137 * @return the SyncStatusInfo for the authority, or null if none exists
138 */
Fred Quintanaac9385e2009-06-22 18:00:59 -0700139 SyncStatusInfo getSyncStatus(in Account account, String authority);
Dianne Hackborn231cc602009-04-27 17:10:36 -0700140
141 /**
142 * Return true if the pending status is true of any matching authorities.
143 */
Fred Quintanaac9385e2009-06-22 18:00:59 -0700144 boolean isSyncPending(in Account account, String authority);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800145
Dianne Hackborn231cc602009-04-27 17:10:36 -0700146 void addStatusChangeListener(int mask, ISyncStatusObserver callback);
Fred Quintanac5d1c6d2010-01-27 12:17:49 -0800147
Dianne Hackborn231cc602009-04-27 17:10:36 -0700148 void removeStatusChangeListener(ISyncStatusObserver callback);
149}