/[projects]/android/Side9/src/dk/thoerup/side9/Side9WidgetProvider.java
ViewVC logotype

Diff of /android/Side9/src/dk/thoerup/side9/Side9WidgetProvider.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 681 by torben, Wed Apr 28 08:18:41 2010 UTC revision 774 by torben, Tue Jun 1 07:09:48 2010 UTC
# Line 1  Line 1 
1  package dk.thoerup.side9;  package dk.thoerup.side9;
2    
3    import java.io.File;
4    import java.io.FileOutputStream;
5  import java.io.IOException;  import java.io.IOException;
 import java.net.URL;  
 import java.net.URLConnection;  
6    
7  import android.app.PendingIntent;  import android.app.PendingIntent;
8  import android.appwidget.AppWidgetManager;  import android.appwidget.AppWidgetManager;
9  import android.appwidget.AppWidgetProvider;  import android.appwidget.AppWidgetProvider;
10    import android.content.ComponentName;
11  import android.content.Context;  import android.content.Context;
12  import android.content.Intent;  import android.content.Intent;
13    import android.content.SharedPreferences;
14  import android.graphics.Bitmap;  import android.graphics.Bitmap;
15  import android.graphics.BitmapFactory;  import android.graphics.BitmapFactory;
16  import android.net.ConnectivityManager;  import android.net.ConnectivityManager;
 import android.net.Uri;  
17  import android.util.Log;  import android.util.Log;
18  import android.widget.RemoteViews;  import android.widget.RemoteViews;
19    import dk.thoerup.androidutils.HttpUtil;
20    
21  public class Side9WidgetProvider extends AppWidgetProvider  {  public class Side9WidgetProvider extends AppWidgetProvider  {
22            
23                    public static final String TAG = "Side9Pigen";
24    
25          //The data needs to be static, since BroadcastReceivers (which WidgetProviders extends) are only valid during onReceive()          //The data needs to be static, since BroadcastReceivers (which WidgetProviders extends) are only valid during onReceive()
26          private static Side9Data usedData;          private static Side9Data usedData;
27            private static Bitmap usedBitmap;
28            private static long timestamp;
29    
30            final static long UDPATESPAN = 3*60*60*1000;
31                    
32            final static String SAVEDIR = "/sdcard/Side9/";
33    
34    
35            static  {
36                    timestamp = 0L;
37            }
38    
39          public Side9WidgetProvider() {          public Side9WidgetProvider() {
40                  Log.i("Side9Pigen", "WidgetProvider constructor called");                  Log.i(TAG, "WidgetProvider constructor called");
41          }          }
42            
43          private void setImage(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds, Bitmap image) {          private void setImage(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds, Bitmap image) {
44          // Perform this loop procedure for each App Widget that belongs to this provider                  // Perform this loop procedure for each App Widget that belongs to this provider
45                  final int N = appWidgetIds.length;                  final int N = appWidgetIds.length;
46          for (int i=0; i<N; i++) {                  for (int i=0; i<N; i++) {
47              int appWidgetId = appWidgetIds[i];                          int appWidgetId = appWidgetIds[i];
48                                        
49              RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.side9widget);                          RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.side9widget);
50                                        
51              if (image != null) {                          if (image != null) {
52                  views.setImageViewBitmap(R.id.side9picture, image);                                  views.setImageViewBitmap(R.id.side9picture, image);
53              } else {                          } else {
54                  views.setImageViewResource(R.id.side9picture, R.drawable.side9logo);                                  views.setImageViewResource(R.id.side9picture, R.drawable.side9logo);
55              }                          }
56              //views.setTextViewText(R.id.caption, newData.caption);                          //views.setTextViewText(R.id.caption, newData.caption);
57                
58                
59              // Launch a browser when user clicks on the image  
60              Intent viewIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(Side9Xml.BASEURL));                          
61              viewIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);                          //View single file
62              PendingIntent pending = PendingIntent.getActivity(context, 0, viewIntent, Intent.FLAG_ACTIVITY_NEW_TASK);                        //                      Intent viewIntent = new Intent(android.content.Intent.ACTION_VIEW);
63              views.setOnClickPendingIntent(R.id.side9picture, pending);                                //              viewIntent.setDataAndType(Uri.parse("file:///sdcard/Side9/20100531_400.jpg"), "image/png");
64                                        
65              // Tell the AppWidgetManager to perform an update on the current App Widget                          //view single file
66              appWidgetManager.updateAppWidget(appWidgetId, views);                          //Intent viewIntent = new Intent(Intent.ACTION_VIEW);
67                                        //Uri u = Uri.withAppendedPath(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, "1" );
68              Log.i("Side9Pigen", "done " + appWidgetId);                          //viewIntent.setData(u);
69          }                                
70                            //Intent viewIntent = new Intent();
71                            //viewIntent.setClassName("com.android.camera", "com.android.camera.GalleryPicker");
72                            
73    
74                            Intent viewIntent = new Intent();
75                            viewIntent.addCategory(Intent.CATEGORY_LAUNCHER);
76                            viewIntent.setAction(Intent.ACTION_MAIN);
77                            viewIntent.setComponent(new ComponentName("com.android.camera", ".GalleryPicker"));
78                            viewIntent.setFlags(0x10200000);
79    
80                            
81                            
82                            
83                            PendingIntent pending = PendingIntent.getActivity(context, 0, viewIntent, Intent.FLAG_ACTIVITY_NEW_TASK);                          
84                            views.setOnClickPendingIntent(R.id.side9picture, pending);                          
85    
86                            // Tell the AppWidgetManager to perform an update on the current App Widget
87                            appWidgetManager.updateAppWidget(appWidgetId, views);
88    
89                            Log.i(TAG, "done " + appWidgetId);
90                    }      
91          }          }
92                    
93          @Override          @Override
94          public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {          public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
95                  super.onUpdate(context, appWidgetManager, appWidgetIds);                  super.onUpdate(context, appWidgetManager, appWidgetIds);
96                    
97                                    Log.i(TAG, "onUpdate:");
98                    
99                  Log.e("Side9Pigen", "onUpdate:");                  if (usedBitmap == null) { //load default view
100                                            usedBitmap = BitmapFactory.decodeResource(context.getResources(), R.drawable.side9logo);
101                    }
102    
103    
104    
105                  ConnectivityManager connMgr = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);                  ConnectivityManager connMgr = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
106                  if (connMgr.getBackgroundDataSetting() == false)                  if (connMgr.getBackgroundDataSetting() == false)
107                  {                  {
108                          Log.i("Side9Pigen", "background data disabled");                          Log.i(TAG, "background data disabled");
109                          return;                          return;
110                  }                  }
111    
112                    if (System.currentTimeMillis() > (timestamp+UDPATESPAN) ) {
113                            Log.i(TAG, "time elapsed, force XML reload");
114                            usedData = null;
115                    }
116    
117                    try {
118                            Side9Data newData = Side9Xml.loadXml();
119    
120                            if (! newData.equals(usedData)) {
121    
122    
123                                    Log.i(TAG, "(Re)loading image:" + newData.url);
124    
125                                    Bitmap image = getImageData(context, newData);
126    
127                                    usedData = newData; // if we made it to here without exceptions, save the new data
128                                    usedBitmap = image;
129                                    timestamp = System.currentTimeMillis();
130                                    
131    
132                            } // endif
133    
134                    } catch (Exception e) {
135                            Log.e("Side9Pigen", "update failed", e);
136                    }
137    
138                    setImage(context,appWidgetManager,appWidgetIds, usedBitmap);
139                    Log.i("Side9Pigen", "update completed");
140            }
141            
142            Bitmap getImageData(Context context, Side9Data data) throws IOException {      
143                    
144                    SharedPreferences prefs = context.getSharedPreferences(TAG, Context.MODE_PRIVATE);
145                    boolean saveImage = prefs.getBoolean("saveimage", false);
146                    
147                    File file = new File( SAVEDIR + data.getFilename() );
148                                    
149          try {                  /* if the picture changes later on the day we do NOT want to use an old and invalid image              
150                  Side9Data newData = Side9Xml.loadXml();                  if (saveImage == true) {                        
151                                            if (file.exists()) {
152                  if (! newData.equals(usedData)) {                                  return BitmapFactory.decodeFile(file.getAbsolutePath());
153                                                    }
154                                            }*/
155                          Log.i("Side9Pigen", "(Re)loading image:" + newData.url);                                  
156                                                                    byte imageData[] = HttpUtil.getContent(data.url, 2500);
157                          URL imgUrl = new URL( newData.url );                              
158                                            if (saveImage == true) {
159                          URLConnection conn = imgUrl.openConnection();                          File savedir = new File(SAVEDIR);
160                          Bitmap image = BitmapFactory.decodeStream( conn.getInputStream() );                          savedir.mkdirs();
161                          if (true)                          
162                                  throw new IOException("assdasd");                          if (file.exists()) {
163                                                            file.delete();
164                          setImage(context,appWidgetManager,appWidgetIds, image);                          }
165                                                    
166                          usedData = newData; // if we made it to here without exceptions, save the new data                          FileOutputStream fos = new FileOutputStream(file);
167                                                    fos.write(imageData);
168                  } // endif                          fos.close();
169                    }
170                                    
171          } catch (Exception e) {                  return BitmapFactory.decodeByteArray(imageData, 0, imageData.length);
                 Log.e("Side9Pigen", "update failed", e);  
                   
                 if (usedData == null) {  
                         setImage(context,appWidgetManager,appWidgetIds, null);  
                 }  
         }  
172          }          }
173    
174            
175          //Called when the last widget is removed/disabled          //Called when the last widget is removed/disabled
176          @Override          @Override
177          public void onDisabled(Context context) {          public void onDisabled(Context context) {
178                  super.onDisabled(context);                  super.onDisabled(context);
179                                    Log.i(TAG, "onDisabled");
180    
181                  usedData = null; //free memory                  usedData = null; //free memory
182                    usedBitmap = null;
183          }          }
184    
185  }  }

Legend:
Removed from v.681  
changed lines
  Added in v.774

  ViewVC Help
Powered by ViewVC 1.1.20