SDK 中 DownloadManager.java

 http://www.oschina.net/code/explore/android-2.2-froyo/com/android/mms/util/DownloadManager.java

 

/**

002 * Copyright (C) 2008 Esmertec AG.
003 * Copyright (C) 2008 The Android Open Source Project
004 *
005 * Licensed under the Apache License, Version 2.0 (the "License");
006 * you may not use this file except in compliance with the License.
007 * You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017  
018package com.android.mms.util;
019  
020import com.android.mms.R;
021import com.android.mms.data.Contact;
022import com.android.mms.ui.MessagingPreferenceActivity;
023import com.google.android.mms.MmsException;
024import com.google.android.mms.pdu.EncodedStringValue;
025import com.google.android.mms.pdu.NotificationInd;
026import com.google.android.mms.pdu.PduPersister;
027import android.database.sqlite.SqliteWrapper;
028import com.android.internal.telephony.TelephonyIntents;
029import com.android.internal.telephony.TelephonyProperties;
030  
031import android.content.BroadcastReceiver;
032import android.content.ContentValues;
033import android.content.Context;
034import android.content.Intent;
035import android.content.IntentFilter;
036import android.content.SharedPreferences;
037import android.content.SharedPreferences.OnSharedPreferenceChangeListener;
038import android.database.Cursor;
039import android.net.Uri;
040import android.os.Handler;
041import android.preference.PreferenceManager;
042import android.provider.Telephony.Mms;
043import android.telephony.ServiceState;
044import android.util.Config;
045import android.util.Log;
046import android.widget.Toast;
047  
048import android.os.SystemProperties;
049  
050public class DownloadManager {
051    privatestatic final String TAG = "DownloadManager";
052    privatestatic final boolean DEBUG = false;
053    privatestatic final boolean LOCAL_LOGV = DEBUG ? Config.LOGD : Config.LOGV;
054  
055    privatestatic final int DEFERRED_MASK           = 0x04;
056  
057    publicstatic final int STATE_UNSTARTED         = 0x80;
058    publicstatic final int STATE_DOWNLOADING       = 0x81;
059    publicstatic final int STATE_TRANSIENT_FAILURE = 0x82;
060    publicstatic final int STATE_PERMANENT_FAILURE = 0x87;
061  
062    privatefinal Context mContext;
063    privatefinal Handler mHandler;
064    privatefinal SharedPreferences mPreferences;
065    privateboolean mAutoDownload;
066  
067    privatefinal OnSharedPreferenceChangeListener mPreferencesChangeListener =
068        newOnSharedPreferenceChangeListener() {
069        publicvoid onSharedPreferenceChanged(SharedPreferences prefs, String key) {
070            if(MessagingPreferenceActivity.AUTO_RETRIEVAL.equals(key)
071                    || MessagingPreferenceActivity.RETRIEVAL_DURING_ROAMING.equals(key)) {
072                if(LOCAL_LOGV) {
073                    Log.v(TAG,"Preferences updated.");
074                }
075  
076                synchronized(sInstance) {
077                    mAutoDownload = getAutoDownloadState(prefs);
078                    if(LOCAL_LOGV) {
079                        Log.v(TAG,"mAutoDownload ------> " + mAutoDownload);
080                    }
081                }
082            }
083        }
084    };
085  
086    privatefinal BroadcastReceiver mRoamingStateListener =
087        newBroadcastReceiver() {
088        @Override
089        publicvoid onReceive(Context context, Intent intent) {
090            if(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED.equals(intent.getAction())) {
091                if(LOCAL_LOGV) {
092                    Log.v(TAG,"Service state changed: " + intent.getExtras());
093                }
094  
095                ServiceState state = ServiceState.newFromBundle(intent.getExtras());
096                booleanisRoaming = state.getRoaming();
097                if(LOCAL_LOGV) {
098                    Log.v(TAG,"roaming ------> " + isRoaming);
099                }
100                synchronized(sInstance) {
101                    mAutoDownload = getAutoDownloadState(mPreferences, isRoaming);
102                    if(LOCAL_LOGV) {
103                        Log.v(TAG,"mAutoDownload ------> " + mAutoDownload);
104                    }
105                }
106            }
107        }
108    };
109  
110    privatestatic DownloadManager sInstance;
111  
112    privateDownloadManager(Context context) {
113        mContext = context;
114        mHandler =new Handler();
115        mPreferences = PreferenceManager.getDefaultSharedPreferences(context);
116        mPreferences.registerOnSharedPreferenceChangeListener(mPreferencesChangeListener);
117  
118        context.registerReceiver(
119                mRoamingStateListener,
120                newIntentFilter(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED));
121  
122        mAutoDownload = getAutoDownloadState(mPreferences);
123        if(LOCAL_LOGV) {
124            Log.v(TAG,"mAutoDownload ------> " + mAutoDownload);
125        }
126    }
127  
128    publicboolean isAuto() {
129        returnmAutoDownload;
130    }
131  
132    publicstatic void init(Context context) {
133        if(LOCAL_LOGV) {
134            Log.v(TAG,"DownloadManager.init()");
135        }
136  
137        if(sInstance != null) {
138            Log.w(TAG,"Already initialized.");
139        }
140        sInstance =new DownloadManager(context);
141    }
142  
143    publicstatic DownloadManager getInstance() {
144        if(sInstance == null) {
145            thrownew IllegalStateException("Uninitialized.");
146        }
147        returnsInstance;
148    }
149  
150    staticboolean getAutoDownloadState(SharedPreferences prefs) {
151        returngetAutoDownloadState(prefs, isRoaming());
152    }
153  
154    staticboolean getAutoDownloadState(SharedPreferences prefs,boolean roaming) {
155        booleanautoDownload = prefs.getBoolean(
156                MessagingPreferenceActivity.AUTO_RETRIEVAL,true);
157  
158        if(LOCAL_LOGV) {
159            Log.v(TAG,"auto download without roaming -> " + autoDownload);
160        }
161  
162        if(autoDownload) {
163            booleanalwaysAuto = prefs.getBoolean(
164                    MessagingPreferenceActivity.RETRIEVAL_DURING_ROAMING,false);
165  
166            if(LOCAL_LOGV) {
167                Log.v(TAG,"auto download during roaming -> " + alwaysAuto);
168            }
169  
170            if(!roaming || alwaysAuto) {
171                returntrue;
172            }
173        }
174        returnfalse;
175    }
176  
177    staticboolean isRoaming() {
178        // TODO: fix and put in Telephony layer
179        String roaming = SystemProperties.get(
180                TelephonyProperties.PROPERTY_OPERATOR_ISROAMING,null);
181        if(LOCAL_LOGV) {
182            Log.v(TAG,"roaming ------> " + roaming);
183        }
184        return"true".equals(roaming);
185    }
186  
187    publicvoid markState(finalUri uri, int state) {
188        // Notify user if the message has expired.
189        try{
190            NotificationInd nInd = (NotificationInd) PduPersister.getPduPersister(mContext)
191                    .load(uri);
192            if((nInd.getExpiry() < System.currentTimeMillis()/1000L)
193                && (state == STATE_DOWNLOADING)) {
194                mHandler.post(newRunnable() {
195                    publicvoid run() {
196                        Toast.makeText(mContext, R.string.dl_expired_notification,
197                                Toast.LENGTH_LONG).show();
198                    }
199                });
200                SqliteWrapper.delete(mContext, mContext.getContentResolver(), uri,null, null);
201                return;
202            }
203        }catch(MmsException e) {
204            Log.e(TAG, e.getMessage(), e);
205            return;
206        }
207  
208        // Notify user if downloading permanently failed.
209        if(state == STATE_PERMANENT_FAILURE) {
210            mHandler.post(newRunnable() {
211                publicvoid run() {
212                    try{
213                        Toast.makeText(mContext, getMessage(uri),
214                                Toast.LENGTH_LONG).show();
215                    }catch (MmsException e) {
216                        Log.e(TAG, e.getMessage(), e);
217                    }
218                }
219            });
220        }else if(!mAutoDownload) {
221            state |= DEFERRED_MASK;
222        }
223  
224        // Use the STATUS field to store the state of downloading process
225        // because it's useless for M-Notification.ind.
226        ContentValues values =new ContentValues(1);
227        values.put(Mms.STATUS, state);
228        SqliteWrapper.update(mContext, mContext.getContentResolver(),
229                    uri, values,null, null);
230    }
231  
232    publicvoid showErrorCodeToast(interrorStr) {
233        finalint errStr = errorStr;
234        mHandler.post(newRunnable() {
235            publicvoid run() {
236                try{
237                    Toast.makeText(mContext, errStr, Toast.LENGTH_LONG).show();
238                }catch (Exception e) {
239                    Log.e(TAG,"Caught an exception in showErrorCodeToast");
240                }
241            }
242        });
243    }
244  
245    privateString getMessage(Uri uri) throwsMmsException {
246        NotificationInd ind = (NotificationInd) PduPersister
247                .getPduPersister(mContext).load(uri);
248  
249        EncodedStringValue v = ind.getSubject();
250        String subject = (v !=null) ? v.getString()
251                : mContext.getString(R.string.no_subject);
252  
253        v = ind.getFrom();
254        String from = (v !=null)
255                ? Contact.get(v.getString(),false).getName()
256                : mContext.getString(R.string.unknown_sender);
257  
258        returnmContext.getString(R.string.dl_failure_notification, subject, from);
259    }
260  
261    publicint getState(Uri uri) {
262        Cursor cursor = SqliteWrapper.query(mContext, mContext.getContentResolver(),
263                            uri,new String[] {Mms.STATUS},null, null,null);
264  
265        if(cursor != null) {
266            try{
267                if(cursor.moveToFirst()) {
268                    returncursor.getInt(0) &~ DEFERRED_MASK;
269                }
270            }finally {
271                cursor.close();
272            }
273        }
274        returnSTATE_UNSTARTED;
275    }
276}

/**

002 * Copyright (C) 2008 Esmertec AG.
003 * Copyright (C) 2008 The Android Open Source Project
004 *
005 * Licensed under the Apache License, Version 2.0 (the "License");
006 * you may not use this file except in compliance with the License.
007 * You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017  
018package com.android.mms.util;
019  
020import com.android.mms.R;
021import com.android.mms.data.Contact;
022import com.android.mms.ui.MessagingPreferenceActivity;
023import com.google.android.mms.MmsException;
024import com.google.android.mms.pdu.EncodedStringValue;
025import com.google.android.mms.pdu.NotificationInd;
026import com.google.android.mms.pdu.PduPersister;
027import android.database.sqlite.SqliteWrapper;
028import com.android.internal.telephony.TelephonyIntents;
029import com.android.internal.telephony.TelephonyProperties;
030  
031import android.content.BroadcastReceiver;
032import android.content.ContentValues;
033import android.content.Context;
034import android.content.Intent;
035import android.content.IntentFilter;
036import android.content.SharedPreferences;
037import android.content.SharedPreferences.OnSharedPreferenceChangeListener;
038import android.database.Cursor;
039import android.net.Uri;
040import android.os.Handler;
041import android.preference.PreferenceManager;
042import android.provider.Telephony.Mms;
043import android.telephony.ServiceState;
044import android.util.Config;
045import android.util.Log;
046import android.widget.Toast;
047  
048import android.os.SystemProperties;
049  
050public class DownloadManager {
051    privatestatic final String TAG = "DownloadManager";
052    privatestatic final boolean DEBUG = false;
053    privatestatic final boolean LOCAL_LOGV = DEBUG ? Config.LOGD : Config.LOGV;
054  
055    privatestatic final int DEFERRED_MASK           = 0x04;
056  
057    publicstatic final int STATE_UNSTARTED         = 0x80;
058    publicstatic final int STATE_DOWNLOADING       = 0x81;
059    publicstatic final int STATE_TRANSIENT_FAILURE = 0x82;
060    publicstatic final int STATE_PERMANENT_FAILURE = 0x87;
061  
062    privatefinal Context mContext;
063    privatefinal Handler mHandler;
064    privatefinal SharedPreferences mPreferences;
065    privateboolean mAutoDownload;
066  
067    privatefinal OnSharedPreferenceChangeListener mPreferencesChangeListener =
068        newOnSharedPreferenceChangeListener() {
069        publicvoid onSharedPreferenceChanged(SharedPreferences prefs, String key) {
070            if(MessagingPreferenceActivity.AUTO_RETRIEVAL.equals(key)
071                    || MessagingPreferenceActivity.RETRIEVAL_DURING_ROAMING.equals(key)) {
072                if(LOCAL_LOGV) {
073                    Log.v(TAG,"Preferences updated.");
074                }
075  
076                synchronized(sInstance) {
077                    mAutoDownload = getAutoDownloadState(prefs);
078                    if(LOCAL_LOGV) {
079                        Log.v(TAG,"mAutoDownload ------> " + mAutoDownload);
080                    }
081                }
082            }
083        }
084    };
085  
086    privatefinal BroadcastReceiver mRoamingStateListener =
087        newBroadcastReceiver() {
088        @Override
089        publicvoid onReceive(Context context, Intent intent) {
090            if(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED.equals(intent.getAction())) {
091                if(LOCAL_LOGV) {
092                    Log.v(TAG,"Service state changed: " + intent.getExtras());
093                }
094  
095                ServiceState state = ServiceState.newFromBundle(intent.getExtras());
096                booleanisRoaming = state.getRoaming();
097                if(LOCAL_LOGV) {
098                    Log.v(TAG,"roaming ------> " + isRoaming);
099                }
100                synchronized(sInstance) {
101                    mAutoDownload = getAutoDownloadState(mPreferences, isRoaming);
102                    if(LOCAL_LOGV) {
103                        Log.v(TAG,"mAutoDownload ------> " + mAutoDownload);
104                    }
105                }
106            }
107        }
108    };
109  
110    privatestatic DownloadManager sInstance;
111  
112    privateDownloadManager(Context context) {
113        mContext = context;
114        mHandler =new Handler();
115        mPreferences = PreferenceManager.getDefaultSharedPreferences(context);
116        mPreferences.registerOnSharedPreferenceChangeListener(mPreferencesChangeListener);
117  
118        context.registerReceiver(
119                mRoamingStateListener,
120                newIntentFilter(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED));
121  
122        mAutoDownload = getAutoDownloadState(mPreferences);
123        if(LOCAL_LOGV) {
124            Log.v(TAG,"mAutoDownload ------> " + mAutoDownload);
125        }
126    }
127  
128    publicboolean isAuto() {
129        returnmAutoDownload;
130    }
131  
132    publicstatic void init(Context context) {
133        if(LOCAL_LOGV) {
134            Log.v(TAG,"DownloadManager.init()");
135        }
136  
137        if(sInstance != null) {
138            Log.w(TAG,"Already initialized.");
139        }
140        sInstance =new DownloadManager(context);
141    }
142  
143    publicstatic DownloadManager getInstance() {
144        if(sInstance == null) {
145            thrownew IllegalStateException("Uninitialized.");
146        }
147        returnsInstance;
148    }
149  
150    staticboolean getAutoDownloadState(SharedPreferences prefs) {
151        returngetAutoDownloadState(prefs, isRoaming());
152    }
153  
154    staticboolean getAutoDownloadState(SharedPreferences prefs,boolean roaming) {
155        booleanautoDownload = prefs.getBoolean(
156                MessagingPreferenceActivity.AUTO_RETRIEVAL,true);
157  
158        if(LOCAL_LOGV) {
159            Log.v(TAG,"auto download without roaming -> " + autoDownload);
160        }
161  
162        if(autoDownload) {
163            booleanalwaysAuto = prefs.getBoolean(
164                    MessagingPreferenceActivity.RETRIEVAL_DURING_ROAMING,false);
165  
166            if(LOCAL_LOGV) {
167                Log.v(TAG,"auto download during roaming -> " + alwaysAuto);
168            }
169  
170            if(!roaming || alwaysAuto) {
171                returntrue;
172            }
173        }
174        returnfalse;
175    }
176  
177    staticboolean isRoaming() {
178        // TODO: fix and put in Telephony layer
179        String roaming = SystemProperties.get(
180                TelephonyProperties.PROPERTY_OPERATOR_ISROAMING,null);
181        if(LOCAL_LOGV) {
182            Log.v(TAG,"roaming ------> " + roaming);
183        }
184        return"true".equals(roaming);
185    }
186  
187    publicvoid markState(finalUri uri, int state) {
188        // Notify user if the message has expired.
189        try{
190            NotificationInd nInd = (NotificationInd) PduPersister.getPduPersister(mContext)
191                    .load(uri);
192            if((nInd.getExpiry() < System.currentTimeMillis()/1000L)
193                && (state == STATE_DOWNLOADING)) {
194                mHandler.post(newRunnable() {
195                    publicvoid run() {
196                        Toast.makeText(mContext, R.string.dl_expired_notification,
197                                Toast.LENGTH_LONG).show();
198                    }
199                });
200                SqliteWrapper.delete(mContext, mContext.getContentResolver(), uri,null, null);
201                return;
202            }
203        }catch(MmsException e) {
204            Log.e(TAG, e.getMessage(), e);
205            return;
206        }
207  
208        // Notify user if downloading permanently failed.
209        if(state == STATE_PERMANENT_FAILURE) {
210            mHandler.post(newRunnable() {
211                publicvoid run() {
212                    try{
213                        Toast.makeText(mContext, getMessage(uri),
214                                Toast.LENGTH_LONG).show();
215                    }catch (MmsException e) {
216                        Log.e(TAG, e.getMessage(), e);
217                    }
218                }
219            });
220        }else if(!mAutoDownload) {
221            state |= DEFERRED_MASK;
222        }
223  
224        // Use the STATUS field to store the state of downloading process
225        // because it's useless for M-Notification.ind.
226        ContentValues values =new ContentValues(1);
227        values.put(Mms.STATUS, state);
228        SqliteWrapper.update(mContext, mContext.getContentResolver(),
229                    uri, values,null, null);
230    }
231  
232    publicvoid showErrorCodeToast(interrorStr) {
233        finalint errStr = errorStr;
234        mHandler.post(newRunnable() {
235            publicvoid run() {
236                try{
237                    Toast.makeText(mContext, errStr, Toast.LENGTH_LONG).show();
238                }catch (Exception e) {
239                    Log.e(TAG,"Caught an exception in showErrorCodeToast");
240                }
241            }
242        });
243    }
244  
245    privateString getMessage(Uri uri) throwsMmsException {
246        NotificationInd ind = (NotificationInd) PduPersister
247                .getPduPersister(mContext).load(uri);
248  
249        EncodedStringValue v = ind.getSubject();
250        String subject = (v !=null) ? v.getString()
251                : mContext.getString(R.string.no_subject);
252  
253        v = ind.getFrom();
254        String from = (v !=null)
255                ? Contact.get(v.getString(),false).getName()
256                : mContext.getString(R.string.unknown_sender);
257  
258        returnmContext.getString(R.string.dl_failure_notification, subject, from);
259    }
260  
261    publicint getState(Uri uri) {
262        Cursor cursor = SqliteWrapper.query(mContext, mContext.getContentResolver(),
263                            uri,new String[] {Mms.STATUS},null, null,null);
264  
265        if(cursor != null) {
266            try{
267                if(cursor.moveToFirst()) {
268                    returncursor.getInt(0) &~ DEFERRED_MASK;
269                }
270            }finally {
271                cursor.close();
272            }
273        }
274        returnSTATE_UNSTARTED;
275    }
276}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值