blob: 7ba47777f970f22b261f86c465f8d9283948510f [file] [log] [blame]
Winson Chung499cb9f2010-07-16 11:18:17 -07001/*
2 * Copyright (C) 2007 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.widget;
18
19import java.util.HashMap;
Winson Chung499cb9f2010-07-16 11:18:17 -070020
21import android.app.Service;
22import android.content.Intent;
23import android.os.IBinder;
Winson Chung499cb9f2010-07-16 11:18:17 -070024
25import com.android.internal.widget.IRemoteViewsFactory;
26
27/**
28 * The service to be connected to for a remote adapter to request RemoteViews. Users should
29 * extend the RemoteViewsService to provide the appropriate RemoteViewsFactory's used to
30 * populate the remote collection view (ListView, GridView, etc).
31 */
32public abstract class RemoteViewsService extends Service {
33
34 private static final String LOG_TAG = "RemoteViewsService";
35
Winson Chung16c8d8a2011-01-20 16:19:33 -080036 // Used for reference counting of RemoteViewsFactories
37 // Because we are now unbinding when we are not using the Service (to allow them to be
38 // reclaimed), the references to the factories that are created need to be stored and used when
39 // the service is restarted (in response to user input for example). When the process is
40 // destroyed, so is this static cache of RemoteViewsFactories.
Winson Chung84bbb022011-02-21 13:57:45 -080041 private static final HashMap<Intent.FilterComparison, RemoteViewsFactory> sRemoteViewFactories =
Winson Chung16c8d8a2011-01-20 16:19:33 -080042 new HashMap<Intent.FilterComparison, RemoteViewsFactory>();
Winson Chung84bbb022011-02-21 13:57:45 -080043 private static final Object sLock = new Object();
Winson Chung499cb9f2010-07-16 11:18:17 -070044
45 /**
46 * An interface for an adapter between a remote collection view (ListView, GridView, etc) and
47 * the underlying data for that view. The implementor is responsible for making a RemoteView
Adam Cohen0e2de6d2011-01-19 17:16:34 -080048 * for each item in the data set. This interface is a thin wrapper around {@link Adapter}.
Winson Chung6394c0e2010-08-16 10:14:56 -070049 *
50 * @see android.widget.Adapter
Winson Chung6eceb00d2010-08-17 18:15:42 -070051 * @see android.appwidget.AppWidgetManager
Winson Chung499cb9f2010-07-16 11:18:17 -070052 */
53 public interface RemoteViewsFactory {
Winson Chung6394c0e2010-08-16 10:14:56 -070054 /**
55 * Called when your factory is first constructed. The same factory may be shared across
56 * multiple RemoteViewAdapters depending on the intent passed.
57 */
Winson Chung499cb9f2010-07-16 11:18:17 -070058 public void onCreate();
Adam Cohen0e2de6d2011-01-19 17:16:34 -080059
Winson Chung6394c0e2010-08-16 10:14:56 -070060 /**
Winson Chung6eceb00d2010-08-17 18:15:42 -070061 * Called when notifyDataSetChanged() is triggered on the remote adapter. This allows a
62 * RemoteViewsFactory to respond to data changes by updating any internal references.
63 *
Adam Cohen0e2de6d2011-01-19 17:16:34 -080064 * Note: expensive tasks can be safely performed synchronously within this method. In the
65 * interim, the old data will be displayed within the widget.
66 *
Winson Chung6eceb00d2010-08-17 18:15:42 -070067 * @see android.appwidget.AppWidgetManager#notifyAppWidgetViewDataChanged(int[], int)
Winson Chung6394c0e2010-08-16 10:14:56 -070068 */
69 public void onDataSetChanged();
Adam Cohen0e2de6d2011-01-19 17:16:34 -080070
Winson Chung6394c0e2010-08-16 10:14:56 -070071 /**
72 * Called when the last RemoteViewsAdapter that is associated with this factory is
73 * unbound.
74 */
Winson Chung499cb9f2010-07-16 11:18:17 -070075 public void onDestroy();
76
Adam Cohen0e2de6d2011-01-19 17:16:34 -080077 /**
78 * See {@link Adapter#getCount()}
79 *
80 * @return Count of items.
81 */
Winson Chung499cb9f2010-07-16 11:18:17 -070082 public int getCount();
Adam Cohen0e2de6d2011-01-19 17:16:34 -080083
84 /**
85 * See {@link Adapter#getView(int, android.view.View, android.view.ViewGroup)}.
86 *
87 * Note: expensive tasks can be safely performed synchronously within this method, and a
88 * loading view will be displayed in the interim. See {@link #getLoadingView()}.
89 *
90 * @param position The position of the item within the Factory's data set of the item whose
91 * view we want.
92 * @return A RemoteViews object corresponding to the data at the specified position.
93 */
Winson Chung499cb9f2010-07-16 11:18:17 -070094 public RemoteViews getViewAt(int position);
Adam Cohen0e2de6d2011-01-19 17:16:34 -080095
96 /**
97 * This allows for the use of a custom loading view which appears between the time that
98 * {@link #getViewAt(int)} is called and returns. If null is returned, a default loading
99 * view will be used.
100 *
101 * @return The RemoteViews representing the desired loading view.
102 */
Winson Chung499cb9f2010-07-16 11:18:17 -0700103 public RemoteViews getLoadingView();
Adam Cohen0e2de6d2011-01-19 17:16:34 -0800104
105 /**
106 * See {@link Adapter#getViewTypeCount()}.
107 *
108 * @return The number of types of Views that will be returned by this factory.
109 */
Winson Chung499cb9f2010-07-16 11:18:17 -0700110 public int getViewTypeCount();
Adam Cohen0e2de6d2011-01-19 17:16:34 -0800111
112 /**
113 * See {@link Adapter#getItemId(int)}.
114 *
115 * @param position The position of the item within the data set whose row id we want.
116 * @return The id of the item at the specified position.
117 */
Winson Chung499cb9f2010-07-16 11:18:17 -0700118 public long getItemId(int position);
Adam Cohen0e2de6d2011-01-19 17:16:34 -0800119
120 /**
121 * See {@link Adapter#hasStableIds()}.
122 *
123 * @return True if the same id always refers to the same object.
124 */
Winson Chung499cb9f2010-07-16 11:18:17 -0700125 public boolean hasStableIds();
126 }
127
128 /**
129 * A private proxy class for the private IRemoteViewsFactory interface through the
130 * public RemoteViewsFactory interface.
131 */
Winson Chung16c8d8a2011-01-20 16:19:33 -0800132 private static class RemoteViewsFactoryAdapter extends IRemoteViewsFactory.Stub {
133 public RemoteViewsFactoryAdapter(RemoteViewsFactory factory, boolean isCreated) {
Winson Chung499cb9f2010-07-16 11:18:17 -0700134 mFactory = factory;
Winson Chung16c8d8a2011-01-20 16:19:33 -0800135 mIsCreated = isCreated;
136 }
137 public synchronized boolean isCreated() {
138 return mIsCreated;
Winson Chung499cb9f2010-07-16 11:18:17 -0700139 }
Winson Chungf58a9612010-09-28 17:36:42 -0700140 public synchronized void onDataSetChanged() {
Adam Cohen2625fea2011-03-23 17:24:30 -0700141 try {
142 mFactory.onDataSetChanged();
143 } catch (Exception ex) {
144 Thread t = Thread.currentThread();
145 Thread.getDefaultUncaughtExceptionHandler().uncaughtException(t, ex);
146 }
Winson Chung6394c0e2010-08-16 10:14:56 -0700147 }
Winson Chungf58a9612010-09-28 17:36:42 -0700148 public synchronized int getCount() {
Adam Cohen2625fea2011-03-23 17:24:30 -0700149 int count = 0;
150 try {
151 count = mFactory.getCount();
152 } catch (Exception ex) {
153 Thread t = Thread.currentThread();
154 Thread.getDefaultUncaughtExceptionHandler().uncaughtException(t, ex);
155 }
156 return count;
Winson Chung499cb9f2010-07-16 11:18:17 -0700157 }
Winson Chungf58a9612010-09-28 17:36:42 -0700158 public synchronized RemoteViews getViewAt(int position) {
Adam Cohen2625fea2011-03-23 17:24:30 -0700159 RemoteViews rv = null;
160 try {
161 rv = mFactory.getViewAt(position);
162 if (rv != null) {
163 rv.setIsWidgetCollectionChild(true);
164 }
165 } catch (Exception ex) {
166 Thread t = Thread.currentThread();
167 Thread.getDefaultUncaughtExceptionHandler().uncaughtException(t, ex);
168 }
Adam Cohenca6fd842010-09-03 18:10:35 -0700169 return rv;
Winson Chung499cb9f2010-07-16 11:18:17 -0700170 }
Winson Chungf58a9612010-09-28 17:36:42 -0700171 public synchronized RemoteViews getLoadingView() {
Adam Cohen2625fea2011-03-23 17:24:30 -0700172 RemoteViews rv = null;
173 try {
174 rv = mFactory.getLoadingView();
175 } catch (Exception ex) {
176 Thread t = Thread.currentThread();
177 Thread.getDefaultUncaughtExceptionHandler().uncaughtException(t, ex);
178 }
179 return rv;
Winson Chung499cb9f2010-07-16 11:18:17 -0700180 }
Winson Chungf58a9612010-09-28 17:36:42 -0700181 public synchronized int getViewTypeCount() {
Adam Cohen2625fea2011-03-23 17:24:30 -0700182 int count = 0;
183 try {
184 count = mFactory.getViewTypeCount();
185 } catch (Exception ex) {
186 Thread t = Thread.currentThread();
187 Thread.getDefaultUncaughtExceptionHandler().uncaughtException(t, ex);
188 }
189 return count;
Winson Chung499cb9f2010-07-16 11:18:17 -0700190 }
Winson Chungf58a9612010-09-28 17:36:42 -0700191 public synchronized long getItemId(int position) {
Adam Cohen2625fea2011-03-23 17:24:30 -0700192 long id = 0;
193 try {
194 id = mFactory.getItemId(position);
195 } catch (Exception ex) {
196 Thread t = Thread.currentThread();
197 Thread.getDefaultUncaughtExceptionHandler().uncaughtException(t, ex);
198 }
199 return id;
Winson Chung499cb9f2010-07-16 11:18:17 -0700200 }
Winson Chungf58a9612010-09-28 17:36:42 -0700201 public synchronized boolean hasStableIds() {
Adam Cohen2625fea2011-03-23 17:24:30 -0700202 boolean hasStableIds = false;
203 try {
204 hasStableIds = mFactory.hasStableIds();
205 } catch (Exception ex) {
206 Thread t = Thread.currentThread();
207 Thread.getDefaultUncaughtExceptionHandler().uncaughtException(t, ex);
208 }
209 return hasStableIds;
Winson Chung499cb9f2010-07-16 11:18:17 -0700210 }
Winson Chung84bbb022011-02-21 13:57:45 -0800211 public void onDestroy(Intent intent) {
212 synchronized (sLock) {
213 Intent.FilterComparison fc = new Intent.FilterComparison(intent);
214 if (RemoteViewsService.sRemoteViewFactories.containsKey(fc)) {
215 RemoteViewsFactory factory = RemoteViewsService.sRemoteViewFactories.get(fc);
Adam Cohen2625fea2011-03-23 17:24:30 -0700216 try {
217 factory.onDestroy();
218 } catch (Exception ex) {
219 Thread t = Thread.currentThread();
220 Thread.getDefaultUncaughtExceptionHandler().uncaughtException(t, ex);
221 }
Winson Chung84bbb022011-02-21 13:57:45 -0800222 RemoteViewsService.sRemoteViewFactories.remove(fc);
223 }
224 }
225 }
Winson Chung499cb9f2010-07-16 11:18:17 -0700226
227 private RemoteViewsFactory mFactory;
Winson Chung16c8d8a2011-01-20 16:19:33 -0800228 private boolean mIsCreated;
Winson Chung499cb9f2010-07-16 11:18:17 -0700229 }
230
231 @Override
232 public IBinder onBind(Intent intent) {
Winson Chung84bbb022011-02-21 13:57:45 -0800233 synchronized (sLock) {
Winson Chung9b3a2cf2010-09-16 14:45:32 -0700234 Intent.FilterComparison fc = new Intent.FilterComparison(intent);
Winson Chung499cb9f2010-07-16 11:18:17 -0700235 RemoteViewsFactory factory = null;
Winson Chung16c8d8a2011-01-20 16:19:33 -0800236 boolean isCreated = false;
Winson Chung84bbb022011-02-21 13:57:45 -0800237 if (!sRemoteViewFactories.containsKey(fc)) {
Winson Chung499cb9f2010-07-16 11:18:17 -0700238 factory = onGetViewFactory(intent);
Winson Chung84bbb022011-02-21 13:57:45 -0800239 sRemoteViewFactories.put(fc, factory);
Winson Chung499cb9f2010-07-16 11:18:17 -0700240 factory.onCreate();
Winson Chung16c8d8a2011-01-20 16:19:33 -0800241 isCreated = false;
Winson Chung499cb9f2010-07-16 11:18:17 -0700242 } else {
Winson Chung84bbb022011-02-21 13:57:45 -0800243 factory = sRemoteViewFactories.get(fc);
Winson Chung16c8d8a2011-01-20 16:19:33 -0800244 isCreated = true;
Winson Chung499cb9f2010-07-16 11:18:17 -0700245 }
Winson Chung16c8d8a2011-01-20 16:19:33 -0800246 return new RemoteViewsFactoryAdapter(factory, isCreated);
Winson Chung499cb9f2010-07-16 11:18:17 -0700247 }
248 }
249
Winson Chung499cb9f2010-07-16 11:18:17 -0700250 /**
251 * To be implemented by the derived service to generate appropriate factories for
252 * the data.
253 */
254 public abstract RemoteViewsFactory onGetViewFactory(Intent intent);
255}