Messaging: Remove duplicate code
* mmslib contains basically the same code as android.support.v7.mms.pdu does, so align them code-wise and remove the mmslib duplicates * Since mmslib contains a few usages that are now not accessible anymore, make the classes or methods public where it complains Change-Id: I10b8716c0e45079e4795fda4489dc1a9535026f3
This commit is contained in:
@@ -44,7 +44,7 @@ public class AcknowledgeInd extends GenericPdu {
|
|||||||
*
|
*
|
||||||
* @param headers Headers for this PDU.
|
* @param headers Headers for this PDU.
|
||||||
*/
|
*/
|
||||||
AcknowledgeInd(PduHeaders headers) {
|
public AcknowledgeInd(PduHeaders headers) {
|
||||||
super(headers);
|
super(headers);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -18,8 +18,10 @@
|
|||||||
|
|
||||||
package android.support.v7.mms.pdu;
|
package android.support.v7.mms.pdu;
|
||||||
|
|
||||||
|
import androidx.collection.SimpleArrayMap;
|
||||||
|
import android.util.SparseArray;
|
||||||
|
|
||||||
import java.io.UnsupportedEncodingException;
|
import java.io.UnsupportedEncodingException;
|
||||||
import java.util.HashMap;
|
|
||||||
|
|
||||||
public class CharacterSets {
|
public class CharacterSets {
|
||||||
/**
|
/**
|
||||||
@@ -28,6 +30,252 @@ public class CharacterSets {
|
|||||||
* From wap-230-wsp-20010705-a.pdf
|
* From wap-230-wsp-20010705-a.pdf
|
||||||
* Any-charset = <Octet 128>
|
* Any-charset = <Octet 128>
|
||||||
* Equivalent to the special RFC2616 charset value "*"
|
* Equivalent to the special RFC2616 charset value "*"
|
||||||
|
*
|
||||||
|
* Link to all the charsets: http://www.iana.org/assignments/character-sets/character-sets.xhtml
|
||||||
|
* Use Charset.availableCharsets() to see if a potential charset is supported in java:
|
||||||
|
* private void dumpCharsets() {
|
||||||
|
* logvv("dumpCharsets");
|
||||||
|
* SortedMap<String, Charset> charsets = Charset.availableCharsets();
|
||||||
|
* for (Entry<String, Charset> entry : charsets.entrySet()) {
|
||||||
|
* String key = entry.getKey();
|
||||||
|
* Charset value = entry.getValue();
|
||||||
|
* logvv("charset key: " + key + " value: " + value);
|
||||||
|
* }
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
* As of March 21, 2014, here is the list from dumpCharsets:
|
||||||
|
* Adobe-Standard-Encoding value: java.nio.charset.CharsetICU[Adobe-Standard-Encoding]
|
||||||
|
* Big5 value: java.nio.charset.CharsetICU[Big5]
|
||||||
|
* Big5-HKSCS value: java.nio.charset.CharsetICU[Big5-HKSCS]
|
||||||
|
* BOCU-1 value: java.nio.charset.CharsetICU[BOCU-1]
|
||||||
|
* CESU-8 value: java.nio.charset.CharsetICU[CESU-8]
|
||||||
|
* cp1363 value: java.nio.charset.CharsetICU[cp1363]
|
||||||
|
* cp851 value: java.nio.charset.CharsetICU[cp851]
|
||||||
|
* cp864 value: java.nio.charset.CharsetICU[cp864]
|
||||||
|
* EUC-JP value: java.nio.charset.CharsetICU[EUC-JP]
|
||||||
|
* EUC-KR value: java.nio.charset.CharsetICU[EUC-KR]
|
||||||
|
* GB18030 value: java.nio.charset.CharsetICU[GB18030]
|
||||||
|
* GBK value: java.nio.charset.CharsetICU[GBK]
|
||||||
|
* hp-roman8 value: java.nio.charset.CharsetICU[hp-roman8]
|
||||||
|
* HZ-GB-2312 value: java.nio.charset.CharsetICU[HZ-GB-2312]
|
||||||
|
* IBM-Thai value: java.nio.charset.CharsetICU[IBM-Thai]
|
||||||
|
* IBM00858 value: java.nio.charset.CharsetICU[IBM00858]
|
||||||
|
* IBM01140 value: java.nio.charset.CharsetICU[IBM01140]
|
||||||
|
* IBM01141 value: java.nio.charset.CharsetICU[IBM01141]
|
||||||
|
* IBM01142 value: java.nio.charset.CharsetICU[IBM01142]
|
||||||
|
* IBM01143 value: java.nio.charset.CharsetICU[IBM01143]
|
||||||
|
* IBM01144 value: java.nio.charset.CharsetICU[IBM01144]
|
||||||
|
* IBM01145 value: java.nio.charset.CharsetICU[IBM01145]
|
||||||
|
* IBM01146 value: java.nio.charset.CharsetICU[IBM01146]
|
||||||
|
* IBM01147 value: java.nio.charset.CharsetICU[IBM01147]
|
||||||
|
* IBM01148 value: java.nio.charset.CharsetICU[IBM01148]
|
||||||
|
* IBM01149 value: java.nio.charset.CharsetICU[IBM01149]
|
||||||
|
* IBM037 value: java.nio.charset.CharsetICU[IBM037]
|
||||||
|
* IBM1026 value: java.nio.charset.CharsetICU[IBM1026]
|
||||||
|
* IBM1047 value: java.nio.charset.CharsetICU[IBM1047]
|
||||||
|
* IBM273 value: java.nio.charset.CharsetICU[IBM273]
|
||||||
|
* IBM277 value: java.nio.charset.CharsetICU[IBM277]
|
||||||
|
* IBM278 value: java.nio.charset.CharsetICU[IBM278]
|
||||||
|
* IBM280 value: java.nio.charset.CharsetICU[IBM280]
|
||||||
|
* IBM284 value: java.nio.charset.CharsetICU[IBM284]
|
||||||
|
* IBM285 value: java.nio.charset.CharsetICU[IBM285]
|
||||||
|
* IBM290 value: java.nio.charset.CharsetICU[IBM290]
|
||||||
|
* IBM297 value: java.nio.charset.CharsetICU[IBM297]
|
||||||
|
* IBM420 value: java.nio.charset.CharsetICU[IBM420]
|
||||||
|
* IBM424 value: java.nio.charset.CharsetICU[IBM424]
|
||||||
|
* IBM437 value: java.nio.charset.CharsetICU[IBM437]
|
||||||
|
* IBM500 value: java.nio.charset.CharsetICU[IBM500]
|
||||||
|
* IBM775 value: java.nio.charset.CharsetICU[IBM775]
|
||||||
|
* IBM850 value: java.nio.charset.CharsetICU[IBM850]
|
||||||
|
* IBM852 value: java.nio.charset.CharsetICU[IBM852]
|
||||||
|
* IBM855 value: java.nio.charset.CharsetICU[IBM855]
|
||||||
|
* IBM857 value: java.nio.charset.CharsetICU[IBM857]
|
||||||
|
* IBM860 value: java.nio.charset.CharsetICU[IBM860]
|
||||||
|
* IBM861 value: java.nio.charset.CharsetICU[IBM861]
|
||||||
|
* IBM862 value: java.nio.charset.CharsetICU[IBM862]
|
||||||
|
* IBM863 value: java.nio.charset.CharsetICU[IBM863]
|
||||||
|
* IBM865 value: java.nio.charset.CharsetICU[IBM865]
|
||||||
|
* IBM866 value: java.nio.charset.CharsetICU[IBM866]
|
||||||
|
* IBM868 value: java.nio.charset.CharsetICU[IBM868]
|
||||||
|
* IBM869 value: java.nio.charset.CharsetICU[IBM869]
|
||||||
|
* IBM870 value: java.nio.charset.CharsetICU[IBM870]
|
||||||
|
* IBM871 value: java.nio.charset.CharsetICU[IBM871]
|
||||||
|
* IBM918 value: java.nio.charset.CharsetICU[IBM918]
|
||||||
|
* ISO-2022-CN value: java.nio.charset.CharsetICU[ISO-2022-CN]
|
||||||
|
* ISO-2022-CN-EXT value: java.nio.charset.CharsetICU[ISO-2022-CN-EXT]
|
||||||
|
* ISO-2022-JP value: java.nio.charset.CharsetICU[ISO-2022-JP]
|
||||||
|
* ISO-2022-JP-1 value: java.nio.charset.CharsetICU[ISO-2022-JP-1]
|
||||||
|
* ISO-2022-JP-2 value: java.nio.charset.CharsetICU[ISO-2022-JP-2]
|
||||||
|
* ISO-2022-KR value: java.nio.charset.CharsetICU[ISO-2022-KR]
|
||||||
|
* ISO-8859-1 value: java.nio.charset.CharsetICU[ISO-8859-1]
|
||||||
|
* ISO-8859-10 value: java.nio.charset.CharsetICU[ISO-8859-10]
|
||||||
|
* ISO-8859-13 value: java.nio.charset.CharsetICU[ISO-8859-13]
|
||||||
|
* ISO-8859-14 value: java.nio.charset.CharsetICU[ISO-8859-14]
|
||||||
|
* ISO-8859-15 value: java.nio.charset.CharsetICU[ISO-8859-15]
|
||||||
|
* ISO-8859-2 value: java.nio.charset.CharsetICU[ISO-8859-2]
|
||||||
|
* ISO-8859-3 value: java.nio.charset.CharsetICU[ISO-8859-3]
|
||||||
|
* ISO-8859-4 value: java.nio.charset.CharsetICU[ISO-8859-4]
|
||||||
|
* ISO-8859-5 value: java.nio.charset.CharsetICU[ISO-8859-5]
|
||||||
|
* ISO-8859-6 value: java.nio.charset.CharsetICU[ISO-8859-6]
|
||||||
|
* ISO-8859-7 value: java.nio.charset.CharsetICU[ISO-8859-7]
|
||||||
|
* ISO-8859-8 value: java.nio.charset.CharsetICU[ISO-8859-8]
|
||||||
|
* ISO-8859-9 value: java.nio.charset.CharsetICU[ISO-8859-9]
|
||||||
|
* KOI8-R value: java.nio.charset.CharsetICU[KOI8-R]
|
||||||
|
* KOI8-U value: java.nio.charset.CharsetICU[KOI8-U]
|
||||||
|
* macintosh value: java.nio.charset.CharsetICU[macintosh]
|
||||||
|
* SCSU value: java.nio.charset.CharsetICU[SCSU]
|
||||||
|
* Shift_JIS value: java.nio.charset.CharsetICU[Shift_JIS]
|
||||||
|
* TIS-620 value: java.nio.charset.CharsetICU[TIS-620]
|
||||||
|
* US-ASCII value: java.nio.charset.CharsetICU[US-ASCII]
|
||||||
|
* UTF-16 value: java.nio.charset.CharsetICU[UTF-16]
|
||||||
|
* UTF-16BE value: java.nio.charset.CharsetICU[UTF-16BE]
|
||||||
|
* UTF-16LE value: java.nio.charset.CharsetICU[UTF-16LE]
|
||||||
|
* UTF-32 value: java.nio.charset.CharsetICU[UTF-32]
|
||||||
|
* UTF-32BE value: java.nio.charset.CharsetICU[UTF-32BE]
|
||||||
|
* UTF-32LE value: java.nio.charset.CharsetICU[UTF-32LE]
|
||||||
|
* UTF-7 value: java.nio.charset.CharsetICU[UTF-7]
|
||||||
|
* UTF-8 value: java.nio.charset.CharsetICU[UTF-8]
|
||||||
|
* windows-1250 value: java.nio.charset.CharsetICU[windows-1250]
|
||||||
|
* windows-1251 value: java.nio.charset.CharsetICU[windows-1251]
|
||||||
|
* windows-1252 value: java.nio.charset.CharsetICU[windows-1252]
|
||||||
|
* windows-1253 value: java.nio.charset.CharsetICU[windows-1253]
|
||||||
|
* windows-1254 value: java.nio.charset.CharsetICU[windows-1254]
|
||||||
|
* windows-1255 value: java.nio.charset.CharsetICU[windows-1255]
|
||||||
|
* windows-1256 value: java.nio.charset.CharsetICU[windows-1256]
|
||||||
|
* windows-1257 value: java.nio.charset.CharsetICU[windows-1257]
|
||||||
|
* windows-1258 value: java.nio.charset.CharsetICU[windows-1258]
|
||||||
|
* x-compound-text value: java.nio.charset.CharsetICU[x-compound-text]
|
||||||
|
* x-ebcdic-xml-us value: java.nio.charset.CharsetICU[x-ebcdic-xml-us]
|
||||||
|
* x-gsm-03.38-2000 value: java.nio.charset.CharsetICU[x-gsm-03.38-2000]
|
||||||
|
* x-ibm-1047-s390 value: java.nio.charset.CharsetICU[x-ibm-1047-s390]
|
||||||
|
* x-ibm-1125_P100-1997 value: java.nio.charset.CharsetICU[x-ibm-1125_P100-1997]
|
||||||
|
* x-ibm-1129_P100-1997 value: java.nio.charset.CharsetICU[x-ibm-1129_P100-1997]
|
||||||
|
* x-ibm-1130_P100-1997 value: java.nio.charset.CharsetICU[x-ibm-1130_P100-1997]
|
||||||
|
* x-ibm-1131_P100-1997 value: java.nio.charset.CharsetICU[x-ibm-1131_P100-1997]
|
||||||
|
* x-ibm-1132_P100-1998 value: java.nio.charset.CharsetICU[x-ibm-1132_P100-1998]
|
||||||
|
* x-ibm-1133_P100-1997 value: java.nio.charset.CharsetICU[x-ibm-1133_P100-1997]
|
||||||
|
* x-ibm-1137_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-1137_P100-1999]
|
||||||
|
* x-ibm-1140-s390 value: java.nio.charset.CharsetICU[x-ibm-1140-s390]
|
||||||
|
* x-ibm-1141-s390 value: java.nio.charset.CharsetICU[x-ibm-1141-s390]
|
||||||
|
* x-ibm-1142-s390 value: java.nio.charset.CharsetICU[x-ibm-1142-s390]
|
||||||
|
* x-ibm-1143-s390 value: java.nio.charset.CharsetICU[x-ibm-1143-s390]
|
||||||
|
* x-ibm-1144-s390 value: java.nio.charset.CharsetICU[x-ibm-1144-s390]
|
||||||
|
* x-ibm-1145-s390 value: java.nio.charset.CharsetICU[x-ibm-1145-s390]
|
||||||
|
* x-ibm-1146-s390 value: java.nio.charset.CharsetICU[x-ibm-1146-s390]
|
||||||
|
* x-ibm-1147-s390 value: java.nio.charset.CharsetICU[x-ibm-1147-s390]
|
||||||
|
* x-ibm-1148-s390 value: java.nio.charset.CharsetICU[x-ibm-1148-s390]
|
||||||
|
* x-ibm-1149-s390 value: java.nio.charset.CharsetICU[x-ibm-1149-s390]
|
||||||
|
* x-ibm-1153-s390 value: java.nio.charset.CharsetICU[x-ibm-1153-s390]
|
||||||
|
* x-ibm-1154_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-1154_P100-1999]
|
||||||
|
* x-ibm-1155_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-1155_P100-1999]
|
||||||
|
* x-ibm-1156_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-1156_P100-1999]
|
||||||
|
* x-ibm-1157_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-1157_P100-1999]
|
||||||
|
* x-ibm-1158_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-1158_P100-1999]
|
||||||
|
* x-ibm-1160_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-1160_P100-1999]
|
||||||
|
* x-ibm-1162_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-1162_P100-1999]
|
||||||
|
* x-ibm-1164_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-1164_P100-1999]
|
||||||
|
* x-ibm-1250_P100-1995 value: java.nio.charset.CharsetICU[x-ibm-1250_P100-1995]
|
||||||
|
* x-ibm-1251_P100-1995 value: java.nio.charset.CharsetICU[x-ibm-1251_P100-1995]
|
||||||
|
* x-ibm-1252_P100-2000 value: java.nio.charset.CharsetICU[x-ibm-1252_P100-2000]
|
||||||
|
* x-ibm-1253_P100-1995 value: java.nio.charset.CharsetICU[x-ibm-1253_P100-1995]
|
||||||
|
* x-ibm-1254_P100-1995 value: java.nio.charset.CharsetICU[x-ibm-1254_P100-1995]
|
||||||
|
* x-ibm-1255_P100-1995 value: java.nio.charset.CharsetICU[x-ibm-1255_P100-1995]
|
||||||
|
* x-ibm-1256_P110-1997 value: java.nio.charset.CharsetICU[x-ibm-1256_P110-1997]
|
||||||
|
* x-ibm-1257_P100-1995 value: java.nio.charset.CharsetICU[x-ibm-1257_P100-1995]
|
||||||
|
* x-ibm-1258_P100-1997 value: java.nio.charset.CharsetICU[x-ibm-1258_P100-1997]
|
||||||
|
* x-ibm-12712-s390 value: java.nio.charset.CharsetICU[x-ibm-12712-s390]
|
||||||
|
* x-ibm-12712_P100-1998 value: java.nio.charset.CharsetICU[x-ibm-12712_P100-1998]
|
||||||
|
* x-ibm-1373_P100-2002 value: java.nio.charset.CharsetICU[x-ibm-1373_P100-2002]
|
||||||
|
* x-ibm-1383_P110-1999 value: java.nio.charset.CharsetICU[x-ibm-1383_P110-1999]
|
||||||
|
* x-ibm-1386_P100-2001 value: java.nio.charset.CharsetICU[x-ibm-1386_P100-2001]
|
||||||
|
* x-ibm-16684_P110-2003 value: java.nio.charset.CharsetICU[x-ibm-16684_P110-2003]
|
||||||
|
* x-ibm-16804-s390 value: java.nio.charset.CharsetICU[x-ibm-16804-s390]
|
||||||
|
* x-ibm-16804_X110-1999 value: java.nio.charset.CharsetICU[x-ibm-16804_X110-1999]
|
||||||
|
* x-ibm-25546 value: java.nio.charset.CharsetICU[x-ibm-25546]
|
||||||
|
* x-ibm-33722_P12A_P12A-2009_U2 value:
|
||||||
|
* java.nio.charset.CharsetICU[x-ibm-33722_P12A_P12A-2009_U2]
|
||||||
|
* x-ibm-37-s390 value: java.nio.charset.CharsetICU[x-ibm-37-s390]
|
||||||
|
* x-ibm-4517_P100-2005 value: java.nio.charset.CharsetICU[x-ibm-4517_P100-2005]
|
||||||
|
* x-ibm-4899_P100-1998 value: java.nio.charset.CharsetICU[x-ibm-4899_P100-1998]
|
||||||
|
* x-ibm-4909_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-4909_P100-1999]
|
||||||
|
* x-ibm-4971_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-4971_P100-1999]
|
||||||
|
* x-ibm-5123_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-5123_P100-1999]
|
||||||
|
* x-ibm-5351_P100-1998 value: java.nio.charset.CharsetICU[x-ibm-5351_P100-1998]
|
||||||
|
* x-ibm-5352_P100-1998 value: java.nio.charset.CharsetICU[x-ibm-5352_P100-1998]
|
||||||
|
* x-ibm-5353_P100-1998 value: java.nio.charset.CharsetICU[x-ibm-5353_P100-1998]
|
||||||
|
* x-ibm-5478_P100-1995 value: java.nio.charset.CharsetICU[x-ibm-5478_P100-1995]
|
||||||
|
* x-ibm-803_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-803_P100-1999]
|
||||||
|
* x-ibm-813_P100-1995 value: java.nio.charset.CharsetICU[x-ibm-813_P100-1995]
|
||||||
|
* x-ibm-8482_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-8482_P100-1999]
|
||||||
|
* x-ibm-901_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-901_P100-1999]
|
||||||
|
* x-ibm-902_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-902_P100-1999]
|
||||||
|
* x-ibm-9067_X100-2005 value: java.nio.charset.CharsetICU[x-ibm-9067_X100-2005]
|
||||||
|
* x-ibm-916_P100-1995 value: java.nio.charset.CharsetICU[x-ibm-916_P100-1995]
|
||||||
|
* x-IBM1006 value: java.nio.charset.CharsetICU[x-IBM1006]
|
||||||
|
* x-IBM1025 value: java.nio.charset.CharsetICU[x-IBM1025]
|
||||||
|
* x-IBM1097 value: java.nio.charset.CharsetICU[x-IBM1097]
|
||||||
|
* x-IBM1098 value: java.nio.charset.CharsetICU[x-IBM1098]
|
||||||
|
* x-IBM1112 value: java.nio.charset.CharsetICU[x-IBM1112]
|
||||||
|
* x-IBM1122 value: java.nio.charset.CharsetICU[x-IBM1122]
|
||||||
|
* x-IBM1123 value: java.nio.charset.CharsetICU[x-IBM1123]
|
||||||
|
* x-IBM1124 value: java.nio.charset.CharsetICU[x-IBM1124]
|
||||||
|
* x-IBM1153 value: java.nio.charset.CharsetICU[x-IBM1153]
|
||||||
|
* x-IBM1363 value: java.nio.charset.CharsetICU[x-IBM1363]
|
||||||
|
* x-IBM1364 value: java.nio.charset.CharsetICU[x-IBM1364]
|
||||||
|
* x-IBM1371 value: java.nio.charset.CharsetICU[x-IBM1371]
|
||||||
|
* x-IBM1388 value: java.nio.charset.CharsetICU[x-IBM1388]
|
||||||
|
* x-IBM1390 value: java.nio.charset.CharsetICU[x-IBM1390]
|
||||||
|
* x-IBM1399 value: java.nio.charset.CharsetICU[x-IBM1399]
|
||||||
|
* x-IBM33722 value: java.nio.charset.CharsetICU[x-IBM33722]
|
||||||
|
* x-IBM720 value: java.nio.charset.CharsetICU[x-IBM720]
|
||||||
|
* x-IBM737 value: java.nio.charset.CharsetICU[x-IBM737]
|
||||||
|
* x-IBM856 value: java.nio.charset.CharsetICU[x-IBM856]
|
||||||
|
* x-IBM867 value: java.nio.charset.CharsetICU[x-IBM867]
|
||||||
|
* x-IBM875 value: java.nio.charset.CharsetICU[x-IBM875]
|
||||||
|
* x-IBM922 value: java.nio.charset.CharsetICU[x-IBM922]
|
||||||
|
* x-IBM930 value: java.nio.charset.CharsetICU[x-IBM930]
|
||||||
|
* x-IBM933 value: java.nio.charset.CharsetICU[x-IBM933]
|
||||||
|
* x-IBM935 value: java.nio.charset.CharsetICU[x-IBM935]
|
||||||
|
* x-IBM937 value: java.nio.charset.CharsetICU[x-IBM937]
|
||||||
|
* x-IBM939 value: java.nio.charset.CharsetICU[x-IBM939]
|
||||||
|
* x-IBM942 value: java.nio.charset.CharsetICU[x-IBM942]
|
||||||
|
* x-IBM943 value: java.nio.charset.CharsetICU[x-IBM943]
|
||||||
|
* x-IBM949 value: java.nio.charset.CharsetICU[x-IBM949]
|
||||||
|
* x-IBM949C value: java.nio.charset.CharsetICU[x-IBM949C]
|
||||||
|
* x-IBM950 value: java.nio.charset.CharsetICU[x-IBM950]
|
||||||
|
* x-IBM954 value: java.nio.charset.CharsetICU[x-IBM954]
|
||||||
|
* x-IBM964 value: java.nio.charset.CharsetICU[x-IBM964]
|
||||||
|
* x-IBM970 value: java.nio.charset.CharsetICU[x-IBM970]
|
||||||
|
* x-IBM971 value: java.nio.charset.CharsetICU[x-IBM971]
|
||||||
|
* x-IMAP-mailbox-name value: java.nio.charset.CharsetICU[x-IMAP-mailbox-name]
|
||||||
|
* x-iscii-be value: java.nio.charset.CharsetICU[x-iscii-be]
|
||||||
|
* x-iscii-gu value: java.nio.charset.CharsetICU[x-iscii-gu]
|
||||||
|
* x-iscii-ka value: java.nio.charset.CharsetICU[x-iscii-ka]
|
||||||
|
* x-iscii-ma value: java.nio.charset.CharsetICU[x-iscii-ma]
|
||||||
|
* x-iscii-or value: java.nio.charset.CharsetICU[x-iscii-or]
|
||||||
|
* x-iscii-pa value: java.nio.charset.CharsetICU[x-iscii-pa]
|
||||||
|
* x-iscii-ta value: java.nio.charset.CharsetICU[x-iscii-ta]
|
||||||
|
* x-iscii-te value: java.nio.charset.CharsetICU[x-iscii-te]
|
||||||
|
* x-ISCII91 value: java.nio.charset.CharsetICU[x-ISCII91]
|
||||||
|
* x-ISO-2022-CN-CNS value: java.nio.charset.CharsetICU[x-ISO-2022-CN-CNS]
|
||||||
|
* x-iso-8859-11 value: java.nio.charset.CharsetICU[x-iso-8859-11]
|
||||||
|
* x-JavaUnicode value: java.nio.charset.CharsetICU[x-JavaUnicode]
|
||||||
|
* x-JavaUnicode2 value: java.nio.charset.CharsetICU[x-JavaUnicode2]
|
||||||
|
* x-JIS7 value: java.nio.charset.CharsetICU[x-JIS7]
|
||||||
|
* x-JIS8 value: java.nio.charset.CharsetICU[x-JIS8]
|
||||||
|
* x-LMBCS-1 value: java.nio.charset.CharsetICU[x-LMBCS-1]
|
||||||
|
* x-mac-centraleurroman value: java.nio.charset.CharsetICU[x-mac-centraleurroman]
|
||||||
|
* x-mac-cyrillic value: java.nio.charset.CharsetICU[x-mac-cyrillic]
|
||||||
|
* x-mac-greek value: java.nio.charset.CharsetICU[x-mac-greek]
|
||||||
|
* x-mac-turkish value: java.nio.charset.CharsetICU[x-mac-turkish]
|
||||||
|
* x-MS950-HKSCS value: java.nio.charset.CharsetICU[x-MS950-HKSCS]
|
||||||
|
* x-UnicodeBig value: java.nio.charset.CharsetICU[x-UnicodeBig]
|
||||||
|
* x-UTF-16LE-BOM value: java.nio.charset.CharsetICU[x-UTF-16LE-BOM]
|
||||||
|
* x-UTF16_OppositeEndian value: java.nio.charset.CharsetICU[x-UTF16_OppositeEndian]
|
||||||
|
* x-UTF16_PlatformEndian value: java.nio.charset.CharsetICU[x-UTF16_PlatformEndian]
|
||||||
|
* x-UTF32_OppositeEndian value: java.nio.charset.CharsetICU[x-UTF32_OppositeEndian]
|
||||||
|
* x-UTF32_PlatformEndian value: java.nio.charset.CharsetICU[x-UTF32_PlatformEndian]
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
public static final int ANY_CHARSET = 0x00;
|
public static final int ANY_CHARSET = 0x00;
|
||||||
public static final int US_ASCII = 0x03;
|
public static final int US_ASCII = 0x03;
|
||||||
@@ -41,10 +289,18 @@ public class CharacterSets {
|
|||||||
public static final int ISO_8859_8 = 0x0B;
|
public static final int ISO_8859_8 = 0x0B;
|
||||||
public static final int ISO_8859_9 = 0x0C;
|
public static final int ISO_8859_9 = 0x0C;
|
||||||
public static final int SHIFT_JIS = 0x11;
|
public static final int SHIFT_JIS = 0x11;
|
||||||
|
public static final int EUC_JP = 0x12;
|
||||||
|
public static final int EUC_KR = 0x26;
|
||||||
|
public static final int ISO_2022_JP = 0x27;
|
||||||
|
public static final int ISO_2022_JP_2 = 0x28;
|
||||||
public static final int UTF_8 = 0x6A;
|
public static final int UTF_8 = 0x6A;
|
||||||
|
public static final int GBK = 0x71;
|
||||||
|
public static final int GB18030 = 0x72;
|
||||||
|
public static final int GB2312 = 0x07E9;
|
||||||
public static final int BIG5 = 0x07EA;
|
public static final int BIG5 = 0x07EA;
|
||||||
public static final int UCS2 = 0x03E8;
|
public static final int UCS2 = 0x03E8;
|
||||||
public static final int UTF_16 = 0x03F7;
|
public static final int UTF_16 = 0x03F7;
|
||||||
|
public static final int HZ_GB_2312 = 0x0825;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If the encoding of given data is unsupported, use UTF_8 to decode it.
|
* If the encoding of given data is unsupported, use UTF_8 to decode it.
|
||||||
@@ -55,22 +311,30 @@ public class CharacterSets {
|
|||||||
* Array of MIB enum numbers.
|
* Array of MIB enum numbers.
|
||||||
*/
|
*/
|
||||||
private static final int[] MIBENUM_NUMBERS = {
|
private static final int[] MIBENUM_NUMBERS = {
|
||||||
ANY_CHARSET,
|
ANY_CHARSET,
|
||||||
US_ASCII,
|
US_ASCII,
|
||||||
ISO_8859_1,
|
ISO_8859_1,
|
||||||
ISO_8859_2,
|
ISO_8859_2,
|
||||||
ISO_8859_3,
|
ISO_8859_3,
|
||||||
ISO_8859_4,
|
ISO_8859_4,
|
||||||
ISO_8859_5,
|
ISO_8859_5,
|
||||||
ISO_8859_6,
|
ISO_8859_6,
|
||||||
ISO_8859_7,
|
ISO_8859_7,
|
||||||
ISO_8859_8,
|
ISO_8859_8,
|
||||||
ISO_8859_9,
|
ISO_8859_9,
|
||||||
SHIFT_JIS,
|
SHIFT_JIS,
|
||||||
UTF_8,
|
EUC_JP,
|
||||||
BIG5,
|
EUC_KR,
|
||||||
UCS2,
|
ISO_2022_JP,
|
||||||
UTF_16,
|
ISO_2022_JP_2,
|
||||||
|
UTF_8,
|
||||||
|
GBK,
|
||||||
|
GB18030,
|
||||||
|
GB2312,
|
||||||
|
BIG5,
|
||||||
|
UCS2,
|
||||||
|
UTF_16,
|
||||||
|
HZ_GB_2312,
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -88,10 +352,18 @@ public class CharacterSets {
|
|||||||
public static final String MIMENAME_ISO_8859_8 = "iso-8859-8";
|
public static final String MIMENAME_ISO_8859_8 = "iso-8859-8";
|
||||||
public static final String MIMENAME_ISO_8859_9 = "iso-8859-9";
|
public static final String MIMENAME_ISO_8859_9 = "iso-8859-9";
|
||||||
public static final String MIMENAME_SHIFT_JIS = "shift_JIS";
|
public static final String MIMENAME_SHIFT_JIS = "shift_JIS";
|
||||||
|
public static final String MIMENAME_EUC_JP = "euc-jp";
|
||||||
|
public static final String MIMENAME_EUC_KR = "euc-kr";
|
||||||
|
public static final String MIMENAME_ISO_2022_JP = "iso-2022-jp";
|
||||||
|
public static final String MIMENAME_ISO_2022_JP_2 = "iso-2022-jp-2";
|
||||||
public static final String MIMENAME_UTF_8 = "utf-8";
|
public static final String MIMENAME_UTF_8 = "utf-8";
|
||||||
|
public static final String MIMENAME_GBK = "gbk";
|
||||||
|
public static final String MIMENAME_GB18030 = "gb18030";
|
||||||
|
public static final String MIMENAME_GB2312 = "gb2312";
|
||||||
public static final String MIMENAME_BIG5 = "big5";
|
public static final String MIMENAME_BIG5 = "big5";
|
||||||
public static final String MIMENAME_UCS2 = "iso-10646-ucs-2";
|
public static final String MIMENAME_UCS2 = "iso-10646-ucs-2";
|
||||||
public static final String MIMENAME_UTF_16 = "utf-16";
|
public static final String MIMENAME_UTF_16 = "utf-16";
|
||||||
|
public static final String MIMENAME_HZ_GB_2312 = "hz-gb-2312";
|
||||||
|
|
||||||
public static final String DEFAULT_CHARSET_NAME = MIMENAME_UTF_8;
|
public static final String DEFAULT_CHARSET_NAME = MIMENAME_UTF_8;
|
||||||
|
|
||||||
@@ -99,34 +371,43 @@ public class CharacterSets {
|
|||||||
* Array of the names of character sets.
|
* Array of the names of character sets.
|
||||||
*/
|
*/
|
||||||
private static final String[] MIME_NAMES = {
|
private static final String[] MIME_NAMES = {
|
||||||
MIMENAME_ANY_CHARSET,
|
MIMENAME_ANY_CHARSET,
|
||||||
MIMENAME_US_ASCII,
|
MIMENAME_US_ASCII,
|
||||||
MIMENAME_ISO_8859_1,
|
MIMENAME_ISO_8859_1,
|
||||||
MIMENAME_ISO_8859_2,
|
MIMENAME_ISO_8859_2,
|
||||||
MIMENAME_ISO_8859_3,
|
MIMENAME_ISO_8859_3,
|
||||||
MIMENAME_ISO_8859_4,
|
MIMENAME_ISO_8859_4,
|
||||||
MIMENAME_ISO_8859_5,
|
MIMENAME_ISO_8859_5,
|
||||||
MIMENAME_ISO_8859_6,
|
MIMENAME_ISO_8859_6,
|
||||||
MIMENAME_ISO_8859_7,
|
MIMENAME_ISO_8859_7,
|
||||||
MIMENAME_ISO_8859_8,
|
MIMENAME_ISO_8859_8,
|
||||||
MIMENAME_ISO_8859_9,
|
MIMENAME_ISO_8859_9,
|
||||||
MIMENAME_SHIFT_JIS,
|
MIMENAME_SHIFT_JIS,
|
||||||
MIMENAME_UTF_8,
|
MIMENAME_EUC_JP,
|
||||||
MIMENAME_BIG5,
|
MIMENAME_EUC_KR,
|
||||||
MIMENAME_UCS2,
|
MIMENAME_ISO_2022_JP,
|
||||||
MIMENAME_UTF_16,
|
MIMENAME_ISO_2022_JP_2,
|
||||||
|
MIMENAME_UTF_8,
|
||||||
|
MIMENAME_GBK,
|
||||||
|
MIMENAME_GB18030,
|
||||||
|
MIMENAME_GB2312,
|
||||||
|
MIMENAME_BIG5,
|
||||||
|
MIMENAME_UCS2,
|
||||||
|
MIMENAME_UTF_16,
|
||||||
|
MIMENAME_HZ_GB_2312,
|
||||||
};
|
};
|
||||||
|
|
||||||
private static final HashMap<Integer, String> MIBENUM_TO_NAME_MAP;
|
private static final SparseArray<String> MIBENUM_TO_NAME_MAP;
|
||||||
private static final HashMap<String, Integer> NAME_TO_MIBENUM_MAP;
|
|
||||||
|
private static final SimpleArrayMap<String, Integer> NAME_TO_MIBENUM_MAP;
|
||||||
|
|
||||||
static {
|
static {
|
||||||
// Create the HashMaps.
|
// Create the HashMaps.
|
||||||
MIBENUM_TO_NAME_MAP = new HashMap<>();
|
MIBENUM_TO_NAME_MAP = new SparseArray<>();
|
||||||
NAME_TO_MIBENUM_MAP = new HashMap<>();
|
NAME_TO_MIBENUM_MAP = new SimpleArrayMap<>();
|
||||||
assert(MIBENUM_NUMBERS.length == MIME_NAMES.length);
|
assert(MIBENUM_NUMBERS.length == MIME_NAMES.length);
|
||||||
int count = MIBENUM_NUMBERS.length - 1;
|
final int count = MIBENUM_NUMBERS.length - 1;
|
||||||
for(int i = 0; i <= count; i++) {
|
for (int i = 0; i <= count; i++) {
|
||||||
MIBENUM_TO_NAME_MAP.put(MIBENUM_NUMBERS[i], MIME_NAMES[i]);
|
MIBENUM_TO_NAME_MAP.put(MIBENUM_NUMBERS[i], MIME_NAMES[i]);
|
||||||
NAME_TO_MIBENUM_MAP.put(MIME_NAMES[i], MIBENUM_NUMBERS[i]);
|
NAME_TO_MIBENUM_MAP.put(MIME_NAMES[i], MIBENUM_NUMBERS[i]);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,16 +18,29 @@
|
|||||||
|
|
||||||
package android.support.v7.mms.pdu;
|
package android.support.v7.mms.pdu;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import android.webkit.MimeTypeMap;
|
||||||
|
|
||||||
public class ContentType {
|
public final class ContentType {
|
||||||
|
public static final String THREE_GPP_EXTENSION = "3gp";
|
||||||
|
public static final String VIDEO_MP4_EXTENSION = "mp4";
|
||||||
|
// Default extension used when we don't know one.
|
||||||
|
public static final String DEFAULT_EXTENSION = "dat";
|
||||||
|
|
||||||
|
public static final int TYPE_IMAGE = 0;
|
||||||
|
public static final int TYPE_VIDEO = 1;
|
||||||
|
public static final int TYPE_AUDIO = 2;
|
||||||
|
public static final int TYPE_VCARD = 3;
|
||||||
|
public static final int TYPE_OTHER = 4;
|
||||||
|
|
||||||
|
public static final String ANY_TYPE = "*/*";
|
||||||
public static final String MMS_MESSAGE = "application/vnd.wap.mms-message";
|
public static final String MMS_MESSAGE = "application/vnd.wap.mms-message";
|
||||||
// The phony content type for generic PDUs (e.g. ReadOrig.ind,
|
// The phony content type for generic PDUs (e.g. ReadOrig.ind,
|
||||||
// Notification.ind, Delivery.ind).
|
// Notification.ind, Delivery.ind).
|
||||||
public static final String MMS_GENERIC = "application/vnd.wap.mms-generic";
|
public static final String MMS_GENERIC = "application/vnd.wap.mms-generic";
|
||||||
public static final String MULTIPART_MIXED = "application/vnd.wap.multipart.mixed";
|
public static final String MMS_MULTIPART_MIXED = "application/vnd.wap.multipart.mixed";
|
||||||
public static final String MULTIPART_RELATED = "application/vnd.wap.multipart.related";
|
public static final String MMS_MULTIPART_RELATED = "application/vnd.wap.multipart.related";
|
||||||
public static final String MULTIPART_ALTERNATIVE = "application/vnd.wap.multipart.alternative";
|
public static final String MMS_MULTIPART_ALTERNATIVE =
|
||||||
|
"application/vnd.wap.multipart.alternative";
|
||||||
|
|
||||||
public static final String TEXT_PLAIN = "text/plain";
|
public static final String TEXT_PLAIN = "text/plain";
|
||||||
public static final String TEXT_HTML = "text/html";
|
public static final String TEXT_HTML = "text/html";
|
||||||
@@ -36,6 +49,7 @@ public class ContentType {
|
|||||||
public static final String TEXT_X_VCALENDAR = "text/x-vCalendar";
|
public static final String TEXT_X_VCALENDAR = "text/x-vCalendar";
|
||||||
public static final String TEXT_X_VCARD = "text/x-vCard";
|
public static final String TEXT_X_VCARD = "text/x-vCard";
|
||||||
|
|
||||||
|
public static final String IMAGE_PREFIX = "image/";
|
||||||
public static final String IMAGE_UNSPECIFIED = "image/*";
|
public static final String IMAGE_UNSPECIFIED = "image/*";
|
||||||
public static final String IMAGE_JPEG = "image/jpeg";
|
public static final String IMAGE_JPEG = "image/jpeg";
|
||||||
public static final String IMAGE_JPG = "image/jpg";
|
public static final String IMAGE_JPG = "image/jpg";
|
||||||
@@ -44,192 +58,114 @@ public class ContentType {
|
|||||||
public static final String IMAGE_PNG = "image/png";
|
public static final String IMAGE_PNG = "image/png";
|
||||||
public static final String IMAGE_X_MS_BMP = "image/x-ms-bmp";
|
public static final String IMAGE_X_MS_BMP = "image/x-ms-bmp";
|
||||||
|
|
||||||
public static final String AUDIO_UNSPECIFIED = "audio/*";
|
|
||||||
public static final String AUDIO_AAC = "audio/aac";
|
public static final String AUDIO_AAC = "audio/aac";
|
||||||
public static final String AUDIO_AMR = "audio/amr";
|
public static final String AUDIO_AMR = "audio/amr";
|
||||||
public static final String AUDIO_IMELODY = "audio/imelody";
|
|
||||||
public static final String AUDIO_MID = "audio/mid";
|
public static final String AUDIO_MID = "audio/mid";
|
||||||
public static final String AUDIO_MIDI = "audio/midi";
|
public static final String AUDIO_MIDI = "audio/midi";
|
||||||
public static final String AUDIO_MP3 = "audio/mp3";
|
public static final String AUDIO_MP3 = "audio/mp3";
|
||||||
public static final String AUDIO_MPEG3 = "audio/mpeg3";
|
|
||||||
public static final String AUDIO_MPEG = "audio/mpeg";
|
|
||||||
public static final String AUDIO_MPG = "audio/mpg";
|
|
||||||
public static final String AUDIO_MP4 = "audio/mp4";
|
public static final String AUDIO_MP4 = "audio/mp4";
|
||||||
public static final String AUDIO_X_MID = "audio/x-mid";
|
public static final String AUDIO_X_MID = "audio/x-mid";
|
||||||
public static final String AUDIO_X_MIDI = "audio/x-midi";
|
public static final String AUDIO_X_MIDI = "audio/x-midi";
|
||||||
public static final String AUDIO_X_MP3 = "audio/x-mp3";
|
public static final String AUDIO_X_MP3 = "audio/x-mp3";
|
||||||
public static final String AUDIO_X_MPEG3 = "audio/x-mpeg3";
|
|
||||||
public static final String AUDIO_X_MPEG = "audio/x-mpeg";
|
|
||||||
public static final String AUDIO_X_MPG = "audio/x-mpg";
|
|
||||||
public static final String AUDIO_3GPP = "audio/3gpp";
|
public static final String AUDIO_3GPP = "audio/3gpp";
|
||||||
public static final String AUDIO_X_WAV = "audio/x-wav";
|
public static final String AUDIO_X_WAV = "audio/x-wav";
|
||||||
public static final String AUDIO_OGG = "application/ogg";
|
public static final String AUDIO_OGG = "application/ogg";
|
||||||
|
|
||||||
public static final String VIDEO_UNSPECIFIED = "video/*";
|
public static final String VIDEO_UNSPECIFIED = "video/*";
|
||||||
|
public static final String VIDEO_3GP = "video/3gp";
|
||||||
public static final String VIDEO_3GPP = "video/3gpp";
|
public static final String VIDEO_3GPP = "video/3gpp";
|
||||||
public static final String VIDEO_3G2 = "video/3gpp2";
|
public static final String VIDEO_3G2 = "video/3gpp2";
|
||||||
public static final String VIDEO_H263 = "video/h263";
|
public static final String VIDEO_H263 = "video/h263";
|
||||||
|
public static final String VIDEO_M4V = "video/m4v";
|
||||||
public static final String VIDEO_MP4 = "video/mp4";
|
public static final String VIDEO_MP4 = "video/mp4";
|
||||||
|
public static final String VIDEO_MPEG = "video/mpeg";
|
||||||
|
public static final String VIDEO_MPEG4 = "video/mpeg4";
|
||||||
|
public static final String VIDEO_WEBM = "video/webm";
|
||||||
|
|
||||||
public static final String APP_SMIL = "application/smil";
|
public static final String APP_SMIL = "application/smil";
|
||||||
public static final String APP_WAP_XHTML = "application/vnd.wap.xhtml+xml";
|
public static final String APP_WAP_XHTML = "application/vnd.wap.xhtml+xml";
|
||||||
public static final String APP_XHTML = "application/xhtml+xml";
|
|
||||||
|
|
||||||
public static final String APP_DRM_CONTENT = "application/vnd.oma.drm.content";
|
|
||||||
public static final String APP_DRM_MESSAGE = "application/vnd.oma.drm.message";
|
|
||||||
|
|
||||||
private static final ArrayList<String> sSupportedContentTypes = new ArrayList<>();
|
|
||||||
private static final ArrayList<String> sSupportedImageTypes = new ArrayList<>();
|
|
||||||
private static final ArrayList<String> sSupportedAudioTypes = new ArrayList<>();
|
|
||||||
private static final ArrayList<String> sSupportedVideoTypes = new ArrayList<>();
|
|
||||||
|
|
||||||
static {
|
|
||||||
sSupportedContentTypes.add(TEXT_PLAIN);
|
|
||||||
sSupportedContentTypes.add(TEXT_HTML);
|
|
||||||
sSupportedContentTypes.add(TEXT_VCALENDAR);
|
|
||||||
sSupportedContentTypes.add(TEXT_VCARD);
|
|
||||||
sSupportedContentTypes.add(TEXT_X_VCALENDAR);
|
|
||||||
sSupportedContentTypes.add(TEXT_X_VCARD);
|
|
||||||
|
|
||||||
sSupportedContentTypes.add(IMAGE_JPEG);
|
|
||||||
sSupportedContentTypes.add(IMAGE_GIF);
|
|
||||||
sSupportedContentTypes.add(IMAGE_WBMP);
|
|
||||||
sSupportedContentTypes.add(IMAGE_PNG);
|
|
||||||
sSupportedContentTypes.add(IMAGE_JPG);
|
|
||||||
sSupportedContentTypes.add(IMAGE_X_MS_BMP);
|
|
||||||
//supportedContentTypes.add(IMAGE_SVG); not yet supported.
|
|
||||||
|
|
||||||
sSupportedContentTypes.add(AUDIO_AAC);
|
|
||||||
sSupportedContentTypes.add(AUDIO_AMR);
|
|
||||||
sSupportedContentTypes.add(AUDIO_IMELODY);
|
|
||||||
sSupportedContentTypes.add(AUDIO_MID);
|
|
||||||
sSupportedContentTypes.add(AUDIO_MIDI);
|
|
||||||
sSupportedContentTypes.add(AUDIO_MP3);
|
|
||||||
sSupportedContentTypes.add(AUDIO_MP4);
|
|
||||||
sSupportedContentTypes.add(AUDIO_MPEG3);
|
|
||||||
sSupportedContentTypes.add(AUDIO_MPEG);
|
|
||||||
sSupportedContentTypes.add(AUDIO_MPG);
|
|
||||||
sSupportedContentTypes.add(AUDIO_X_MID);
|
|
||||||
sSupportedContentTypes.add(AUDIO_X_MIDI);
|
|
||||||
sSupportedContentTypes.add(AUDIO_X_MP3);
|
|
||||||
sSupportedContentTypes.add(AUDIO_X_MPEG3);
|
|
||||||
sSupportedContentTypes.add(AUDIO_X_MPEG);
|
|
||||||
sSupportedContentTypes.add(AUDIO_X_MPG);
|
|
||||||
sSupportedContentTypes.add(AUDIO_X_WAV);
|
|
||||||
sSupportedContentTypes.add(AUDIO_3GPP);
|
|
||||||
sSupportedContentTypes.add(AUDIO_OGG);
|
|
||||||
|
|
||||||
sSupportedContentTypes.add(VIDEO_3GPP);
|
|
||||||
sSupportedContentTypes.add(VIDEO_3G2);
|
|
||||||
sSupportedContentTypes.add(VIDEO_H263);
|
|
||||||
sSupportedContentTypes.add(VIDEO_MP4);
|
|
||||||
|
|
||||||
sSupportedContentTypes.add(APP_SMIL);
|
|
||||||
sSupportedContentTypes.add(APP_WAP_XHTML);
|
|
||||||
sSupportedContentTypes.add(APP_XHTML);
|
|
||||||
|
|
||||||
sSupportedContentTypes.add(APP_DRM_CONTENT);
|
|
||||||
sSupportedContentTypes.add(APP_DRM_MESSAGE);
|
|
||||||
|
|
||||||
// add supported image types
|
|
||||||
sSupportedImageTypes.add(IMAGE_JPEG);
|
|
||||||
sSupportedImageTypes.add(IMAGE_GIF);
|
|
||||||
sSupportedImageTypes.add(IMAGE_WBMP);
|
|
||||||
sSupportedImageTypes.add(IMAGE_PNG);
|
|
||||||
sSupportedImageTypes.add(IMAGE_JPG);
|
|
||||||
sSupportedImageTypes.add(IMAGE_X_MS_BMP);
|
|
||||||
|
|
||||||
// add supported audio types
|
|
||||||
sSupportedAudioTypes.add(AUDIO_AAC);
|
|
||||||
sSupportedAudioTypes.add(AUDIO_AMR);
|
|
||||||
sSupportedAudioTypes.add(AUDIO_IMELODY);
|
|
||||||
sSupportedAudioTypes.add(AUDIO_MID);
|
|
||||||
sSupportedAudioTypes.add(AUDIO_MIDI);
|
|
||||||
sSupportedAudioTypes.add(AUDIO_MP3);
|
|
||||||
sSupportedAudioTypes.add(AUDIO_MPEG3);
|
|
||||||
sSupportedAudioTypes.add(AUDIO_MPEG);
|
|
||||||
sSupportedAudioTypes.add(AUDIO_MPG);
|
|
||||||
sSupportedAudioTypes.add(AUDIO_MP4);
|
|
||||||
sSupportedAudioTypes.add(AUDIO_X_MID);
|
|
||||||
sSupportedAudioTypes.add(AUDIO_X_MIDI);
|
|
||||||
sSupportedAudioTypes.add(AUDIO_X_MP3);
|
|
||||||
sSupportedAudioTypes.add(AUDIO_X_MPEG3);
|
|
||||||
sSupportedAudioTypes.add(AUDIO_X_MPEG);
|
|
||||||
sSupportedAudioTypes.add(AUDIO_X_MPG);
|
|
||||||
sSupportedAudioTypes.add(AUDIO_X_WAV);
|
|
||||||
sSupportedAudioTypes.add(AUDIO_3GPP);
|
|
||||||
sSupportedAudioTypes.add(AUDIO_OGG);
|
|
||||||
|
|
||||||
// add supported video types
|
|
||||||
sSupportedVideoTypes.add(VIDEO_3GPP);
|
|
||||||
sSupportedVideoTypes.add(VIDEO_3G2);
|
|
||||||
sSupportedVideoTypes.add(VIDEO_H263);
|
|
||||||
sSupportedVideoTypes.add(VIDEO_MP4);
|
|
||||||
}
|
|
||||||
|
|
||||||
// This class should never be instantiated.
|
// This class should never be instantiated.
|
||||||
private ContentType() {
|
private ContentType() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isSupportedType(String contentType) {
|
public static boolean isTextType(final String contentType) {
|
||||||
return (null != contentType) && sSupportedContentTypes.contains(contentType);
|
return TEXT_PLAIN.equals(contentType)
|
||||||
|
|| TEXT_HTML.equals(contentType)
|
||||||
|
|| APP_WAP_XHTML.equals(contentType);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isSupportedImageType(String contentType) {
|
public static boolean isMediaType(final String contentType) {
|
||||||
return isImageType(contentType) && isSupportedType(contentType);
|
return isImageType(contentType)
|
||||||
|
|| isVideoType(contentType)
|
||||||
|
|| isAudioType(contentType)
|
||||||
|
|| isVCardType(contentType);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isSupportedAudioType(String contentType) {
|
public static boolean isImageType(final String contentType) {
|
||||||
return isAudioType(contentType) && isSupportedType(contentType);
|
return (null != contentType) && contentType.startsWith(IMAGE_PREFIX);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isSupportedVideoType(String contentType) {
|
public static boolean isAudioType(final String contentType) {
|
||||||
return isVideoType(contentType) && isSupportedType(contentType);
|
return (null != contentType) &&
|
||||||
|
(contentType.startsWith("audio/") || contentType.equalsIgnoreCase(AUDIO_OGG));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isTextType(String contentType) {
|
public static boolean isVideoType(final String contentType) {
|
||||||
return (null != contentType) && contentType.startsWith("text/");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean isImageType(String contentType) {
|
|
||||||
return (null != contentType) && contentType.startsWith("image/");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean isAudioType(String contentType) {
|
|
||||||
return (null != contentType) && contentType.startsWith("audio/");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean isVideoType(String contentType) {
|
|
||||||
return (null != contentType) && contentType.startsWith("video/");
|
return (null != contentType) && contentType.startsWith("video/");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isDrmType(String contentType) {
|
public static boolean isVCardType(final String contentType) {
|
||||||
return (null != contentType)
|
return (null != contentType)
|
||||||
&& (contentType.equals(APP_DRM_CONTENT)
|
&& (contentType.equalsIgnoreCase(TEXT_X_VCARD)
|
||||||
|| contentType.equals(APP_DRM_MESSAGE));
|
|| contentType.equalsIgnoreCase(TEXT_VCARD));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isUnspecified(String contentType) {
|
/**
|
||||||
return (null != contentType) && contentType.endsWith("*");
|
* If the content type is a type which can be displayed in the conversation list as a preview.
|
||||||
|
*/
|
||||||
|
public static boolean isConversationListPreviewableType(final String contentType) {
|
||||||
|
return ContentType.isAudioType(contentType) || ContentType.isVideoType(contentType) ||
|
||||||
|
ContentType.isImageType(contentType) || ContentType.isVCardType(contentType);
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings("unchecked")
|
/**
|
||||||
public static ArrayList<String> getImageTypes() {
|
* Given a filename, look at the extension and try and determine the mime type.
|
||||||
return (ArrayList<String>) sSupportedImageTypes.clone();
|
*
|
||||||
|
* @param fileName a filename to determine the type from, such as img1231.jpg
|
||||||
|
* @param contentTypeDefault type to use when the content type can't be determined from the file
|
||||||
|
* extension. It can be null or a type such as ContentType.IMAGE_UNSPECIFIED
|
||||||
|
* @return Content type of the extension.
|
||||||
|
*/
|
||||||
|
public static String getContentTypeFromExtension(final String fileName,
|
||||||
|
final String contentTypeDefault) {
|
||||||
|
final MimeTypeMap mimeTypeMap = MimeTypeMap.getSingleton();
|
||||||
|
final String extension = MimeTypeMap.getFileExtensionFromUrl(fileName);
|
||||||
|
String contentType = mimeTypeMap.getMimeTypeFromExtension(extension);
|
||||||
|
if (contentType == null) {
|
||||||
|
contentType = contentTypeDefault;
|
||||||
|
}
|
||||||
|
return contentType;
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings("unchecked")
|
public static String getExtensionFromMimeType(final String mimeType) {
|
||||||
public static ArrayList<String> getAudioTypes() {
|
final MimeTypeMap mimeTypeMap = MimeTypeMap.getSingleton();
|
||||||
return (ArrayList<String>) sSupportedAudioTypes.clone();
|
final String extension = mimeTypeMap.getExtensionFromMimeType(mimeType);
|
||||||
|
return extension;
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings("unchecked")
|
/**
|
||||||
public static ArrayList<String> getVideoTypes() {
|
* Get the common file extension for a given content type
|
||||||
return (ArrayList<String>) sSupportedVideoTypes.clone();
|
* @param contentType The content type
|
||||||
}
|
* @return The extension without the .
|
||||||
|
*/
|
||||||
@SuppressWarnings("unchecked")
|
public static String getExtension(final String contentType) {
|
||||||
public static ArrayList<String> getSupportedTypes() {
|
if (VIDEO_MP4.equals(contentType)) {
|
||||||
return (ArrayList<String>) sSupportedContentTypes.clone();
|
return VIDEO_MP4_EXTENSION;
|
||||||
|
} else if (VIDEO_3GPP.equals(contentType)) {
|
||||||
|
return THREE_GPP_EXTENSION;
|
||||||
|
} else {
|
||||||
|
return DEFAULT_EXTENSION;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ public class DeliveryInd extends GenericPdu {
|
|||||||
*
|
*
|
||||||
* @param headers Headers for this PDU.
|
* @param headers Headers for this PDU.
|
||||||
*/
|
*/
|
||||||
DeliveryInd(PduHeaders headers) {
|
public DeliveryInd(PduHeaders headers) {
|
||||||
super(headers);
|
super(headers);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -74,11 +74,25 @@ public class EncodedStringValue implements Cloneable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public EncodedStringValue(String data) {
|
public EncodedStringValue(String data) {
|
||||||
|
this(CharacterSets.DEFAULT_CHARSET, data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*
|
||||||
|
* @param data The text in Java String
|
||||||
|
* @throws NullPointerException if Text-string value is null.
|
||||||
|
*/
|
||||||
|
public EncodedStringValue(int charset, String data) {
|
||||||
|
if (null == data) {
|
||||||
|
throw new NullPointerException("EncodedStringValue: Text-string is null");
|
||||||
|
}
|
||||||
|
mCharacterSet = charset;
|
||||||
try {
|
try {
|
||||||
mData = data.getBytes(CharacterSets.DEFAULT_CHARSET_NAME);
|
mData = data.getBytes(CharacterSets.getMimeName(charset));
|
||||||
mCharacterSet = CharacterSets.DEFAULT_CHARSET;
|
|
||||||
} catch (UnsupportedEncodingException e) {
|
} catch (UnsupportedEncodingException e) {
|
||||||
Log.e(TAG, "Default encoding must be supported.", e);
|
Log.e(TAG, "Input encoding " + charset + " must be supported.", e);
|
||||||
|
mData = data.getBytes();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ public class GenericPdu {
|
|||||||
*
|
*
|
||||||
* @return A PduHeaders of this PDU.
|
* @return A PduHeaders of this PDU.
|
||||||
*/
|
*/
|
||||||
PduHeaders getPduHeaders() {
|
public PduHeaders getPduHeaders() {
|
||||||
return mPduHeaders;
|
return mPduHeaders;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -97,7 +97,7 @@ public class GenericPdu {
|
|||||||
* @return the value
|
* @return the value
|
||||||
*/
|
*/
|
||||||
public EncodedStringValue getFrom() {
|
public EncodedStringValue getFrom() {
|
||||||
return mPduHeaders.getEncodedStringValue(PduHeaders.FROM);
|
return mPduHeaders.getEncodedStringValue(PduHeaders.FROM);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -146,4 +146,13 @@ public class MultimediaMessagePdu extends GenericPdu{
|
|||||||
public void setDate(long value) {
|
public void setDate(long value) {
|
||||||
mPduHeaders.setLongInteger(value, PduHeaders.DATE);
|
mPduHeaders.setLongInteger(value, PduHeaders.DATE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the message size
|
||||||
|
*
|
||||||
|
* @return the size of the message
|
||||||
|
*/
|
||||||
|
public long getMessageSize() {
|
||||||
|
return mPduHeaders.getLongInteger(PduHeaders.MESSAGE_SIZE);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ public class NotificationInd extends GenericPdu {
|
|||||||
*
|
*
|
||||||
* @param headers Headers for this PDU.
|
* @param headers Headers for this PDU.
|
||||||
*/
|
*/
|
||||||
NotificationInd(PduHeaders headers) {
|
public NotificationInd(PduHeaders headers) {
|
||||||
super(headers);
|
super(headers);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ public class NotifyRespInd extends GenericPdu {
|
|||||||
*
|
*
|
||||||
* @param headers Headers for this PDU.
|
* @param headers Headers for this PDU.
|
||||||
*/
|
*/
|
||||||
NotifyRespInd(PduHeaders headers) {
|
public NotifyRespInd(PduHeaders headers) {
|
||||||
super(headers);
|
super(headers);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -18,57 +18,16 @@
|
|||||||
|
|
||||||
package android.support.v7.mms.pdu;
|
package android.support.v7.mms.pdu;
|
||||||
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
|
|
||||||
public class PduBody {
|
public class PduBody {
|
||||||
private Vector<PduPart> mParts = null;
|
private Vector<PduPart> mParts = null;
|
||||||
|
|
||||||
private Map<String, PduPart> mPartMapByContentId = null;
|
|
||||||
private Map<String, PduPart> mPartMapByContentLocation = null;
|
|
||||||
private Map<String, PduPart> mPartMapByName = null;
|
|
||||||
private Map<String, PduPart> mPartMapByFileName = null;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
*/
|
*/
|
||||||
public PduBody() {
|
public PduBody() {
|
||||||
mParts = new Vector<>();
|
mParts = new Vector<>();
|
||||||
|
|
||||||
mPartMapByContentId = new HashMap<>();
|
|
||||||
mPartMapByContentLocation = new HashMap<>();
|
|
||||||
mPartMapByName = new HashMap<>();
|
|
||||||
mPartMapByFileName = new HashMap<>();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void putPartToMaps(PduPart part) {
|
|
||||||
// Put part to mPartMapByContentId.
|
|
||||||
byte[] contentId = part.getContentId();
|
|
||||||
if(null != contentId) {
|
|
||||||
mPartMapByContentId.put(new String(contentId), part);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Put part to mPartMapByContentLocation.
|
|
||||||
byte[] contentLocation = part.getContentLocation();
|
|
||||||
if(null != contentLocation) {
|
|
||||||
String clc = new String(contentLocation);
|
|
||||||
mPartMapByContentLocation.put(clc, part);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Put part to mPartMapByName.
|
|
||||||
byte[] name = part.getName();
|
|
||||||
if(null != name) {
|
|
||||||
String clc = new String(name);
|
|
||||||
mPartMapByName.put(clc, part);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Put part to mPartMapByFileName.
|
|
||||||
byte[] fileName = part.getFilename();
|
|
||||||
if(null != fileName) {
|
|
||||||
String clc = new String(fileName);
|
|
||||||
mPartMapByFileName.put(clc, part);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -83,7 +42,6 @@ public class PduBody {
|
|||||||
throw new NullPointerException();
|
throw new NullPointerException();
|
||||||
}
|
}
|
||||||
|
|
||||||
putPartToMaps(part);
|
|
||||||
return mParts.add(part);
|
return mParts.add(part);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -99,20 +57,9 @@ public class PduBody {
|
|||||||
throw new NullPointerException();
|
throw new NullPointerException();
|
||||||
}
|
}
|
||||||
|
|
||||||
putPartToMaps(part);
|
|
||||||
mParts.add(index, part);
|
mParts.add(index, part);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Removes the part at the specified position.
|
|
||||||
*
|
|
||||||
* @param index index of the part to return
|
|
||||||
* @return part at the specified index
|
|
||||||
*/
|
|
||||||
public PduPart removePart(int index) {
|
|
||||||
return mParts.remove(index);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Remove all of the parts.
|
* Remove all of the parts.
|
||||||
*/
|
*/
|
||||||
@@ -130,16 +77,6 @@ public class PduBody {
|
|||||||
return mParts.get(index);
|
return mParts.get(index);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the index of the specified part.
|
|
||||||
*
|
|
||||||
* @param part the part object
|
|
||||||
* @return index the index of the first occurrence of the part in this body
|
|
||||||
*/
|
|
||||||
public int getPartIndex(PduPart part) {
|
|
||||||
return mParts.indexOf(part);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the number of parts.
|
* Get the number of parts.
|
||||||
*
|
*
|
||||||
@@ -148,45 +85,4 @@ public class PduBody {
|
|||||||
public int getPartsNum() {
|
public int getPartsNum() {
|
||||||
return mParts.size();
|
return mParts.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Get pdu part by content id.
|
|
||||||
*
|
|
||||||
* @param cid the value of content id.
|
|
||||||
* @return the pdu part.
|
|
||||||
*/
|
|
||||||
public PduPart getPartByContentId(String cid) {
|
|
||||||
return mPartMapByContentId.get(cid);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get pdu part by Content-Location. Content-Location of part is
|
|
||||||
* the same as filename and name(param of content-type).
|
|
||||||
*
|
|
||||||
* @param contentLocation the content location.
|
|
||||||
* @return the pdu part.
|
|
||||||
*/
|
|
||||||
public PduPart getPartByContentLocation(String contentLocation) {
|
|
||||||
return mPartMapByContentLocation.get(contentLocation);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get pdu part by name.
|
|
||||||
*
|
|
||||||
* @param name the value of filename.
|
|
||||||
* @return the pdu part.
|
|
||||||
*/
|
|
||||||
public PduPart getPartByName(String name) {
|
|
||||||
return mPartMapByName.get(name);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get pdu part by filename.
|
|
||||||
*
|
|
||||||
* @param filename the value of filename.
|
|
||||||
* @return the pdu part.
|
|
||||||
*/
|
|
||||||
public PduPart getPartByFileName(String filename) {
|
|
||||||
return mPartMapByFileName.get(filename);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ public class PduContentTypes {
|
|||||||
* All content types. From:
|
* All content types. From:
|
||||||
* http://www.openmobilealliance.org/tech/omna/omna-wsp-content-type.htm
|
* http://www.openmobilealliance.org/tech/omna/omna-wsp-content-type.htm
|
||||||
*/
|
*/
|
||||||
static final String[] contentTypes = {
|
public static final String[] contentTypes = {
|
||||||
"*/*", /* 0x00 */
|
"*/*", /* 0x00 */
|
||||||
"text/*", /* 0x01 */
|
"text/*", /* 0x01 */
|
||||||
"text/html", /* 0x02 */
|
"text/html", /* 0x02 */
|
||||||
|
|||||||
@@ -18,8 +18,10 @@
|
|||||||
|
|
||||||
package android.support.v7.mms.pdu;
|
package android.support.v7.mms.pdu;
|
||||||
|
|
||||||
|
import android.util.SparseArray;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.HashMap;
|
import java.util.Collections;
|
||||||
|
|
||||||
public class PduHeaders {
|
public class PduHeaders {
|
||||||
/**
|
/**
|
||||||
@@ -321,13 +323,13 @@ public class PduHeaders {
|
|||||||
/**
|
/**
|
||||||
* The map contains the value of all headers.
|
* The map contains the value of all headers.
|
||||||
*/
|
*/
|
||||||
private HashMap<Integer, Object> mHeaderMap = null;
|
private SparseArray<Object> mHeaderMap = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor of PduHeaders.
|
* Constructor of PduHeaders.
|
||||||
*/
|
*/
|
||||||
public PduHeaders() {
|
public PduHeaders() {
|
||||||
mHeaderMap = new HashMap<>();
|
mHeaderMap = new SparseArray<>();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -335,10 +337,10 @@ public class PduHeaders {
|
|||||||
*
|
*
|
||||||
* @param field the field
|
* @param field the field
|
||||||
* @return the octet value of the pdu header
|
* @return the octet value of the pdu header
|
||||||
* with specified header field. Return 0 if
|
* with specified header field. Return 0 if
|
||||||
* the value is not set.
|
* the value is not set.
|
||||||
*/
|
*/
|
||||||
protected int getOctet(int field) {
|
public int getOctet(int field) {
|
||||||
Integer octet = (Integer) mHeaderMap.get(field);
|
Integer octet = (Integer) mHeaderMap.get(field);
|
||||||
if (null == octet) {
|
if (null == octet) {
|
||||||
return 0;
|
return 0;
|
||||||
@@ -354,8 +356,8 @@ public class PduHeaders {
|
|||||||
* @param field the field
|
* @param field the field
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
* @throws InvalidHeaderValueException if the value is invalid.
|
||||||
*/
|
*/
|
||||||
protected void setOctet(int value, int field)
|
public void setOctet(int value, int field)
|
||||||
throws InvalidHeaderValueException{
|
throws InvalidHeaderValueException {
|
||||||
/**
|
/**
|
||||||
* Check whether this field can be set for specific
|
* Check whether this field can be set for specific
|
||||||
* header and check validity of the field.
|
* header and check validity of the field.
|
||||||
@@ -498,7 +500,7 @@ public class PduHeaders {
|
|||||||
* @return the TextString value of the pdu header
|
* @return the TextString value of the pdu header
|
||||||
* with specified header field
|
* with specified header field
|
||||||
*/
|
*/
|
||||||
protected byte[] getTextString(int field) {
|
public byte[] getTextString(int field) {
|
||||||
return (byte[]) mHeaderMap.get(field);
|
return (byte[]) mHeaderMap.get(field);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -509,7 +511,7 @@ public class PduHeaders {
|
|||||||
* @param field the field
|
* @param field the field
|
||||||
* @throws NullPointerException if the value is null.
|
* @throws NullPointerException if the value is null.
|
||||||
*/
|
*/
|
||||||
protected void setTextString(byte[] value, int field) {
|
public void setTextString(byte[] value, int field) {
|
||||||
/**
|
/**
|
||||||
* Check whether this field can be set for specific
|
* Check whether this field can be set for specific
|
||||||
* header and check validity of the field.
|
* header and check validity of the field.
|
||||||
@@ -545,7 +547,7 @@ public class PduHeaders {
|
|||||||
* @return the EncodedStringValue value of the pdu header
|
* @return the EncodedStringValue value of the pdu header
|
||||||
* with specified header field
|
* with specified header field
|
||||||
*/
|
*/
|
||||||
protected EncodedStringValue getEncodedStringValue(int field) {
|
public EncodedStringValue getEncodedStringValue(int field) {
|
||||||
return (EncodedStringValue) mHeaderMap.get(field);
|
return (EncodedStringValue) mHeaderMap.get(field);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -556,7 +558,7 @@ public class PduHeaders {
|
|||||||
* @return the EncodeStringValue array of the pdu header
|
* @return the EncodeStringValue array of the pdu header
|
||||||
* with specified header field
|
* with specified header field
|
||||||
*/
|
*/
|
||||||
protected EncodedStringValue[] getEncodedStringValues(int field) {
|
public EncodedStringValue[] getEncodedStringValues(int field) {
|
||||||
ArrayList<EncodedStringValue> list =
|
ArrayList<EncodedStringValue> list =
|
||||||
(ArrayList<EncodedStringValue>) mHeaderMap.get(field);
|
(ArrayList<EncodedStringValue>) mHeaderMap.get(field);
|
||||||
if (null == list) {
|
if (null == list) {
|
||||||
@@ -573,7 +575,7 @@ public class PduHeaders {
|
|||||||
* @param field the field
|
* @param field the field
|
||||||
* @throws NullPointerException if the value is null.
|
* @throws NullPointerException if the value is null.
|
||||||
*/
|
*/
|
||||||
protected void setEncodedStringValue(EncodedStringValue value, int field) {
|
public void setEncodedStringValue(EncodedStringValue value, int field) {
|
||||||
/**
|
/**
|
||||||
* Check whether this field can be set for specific
|
* Check whether this field can be set for specific
|
||||||
* header and check validity of the field.
|
* header and check validity of the field.
|
||||||
@@ -628,9 +630,7 @@ public class PduHeaders {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ArrayList<EncodedStringValue> list = new ArrayList<>();
|
ArrayList<EncodedStringValue> list = new ArrayList<>();
|
||||||
for (EncodedStringValue encodedStringValue : value) {
|
Collections.addAll(list, value);
|
||||||
list.add(encodedStringValue);
|
|
||||||
}
|
|
||||||
mHeaderMap.put(field, list);
|
mHeaderMap.put(field, list);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -641,8 +641,7 @@ public class PduHeaders {
|
|||||||
* @param field the field
|
* @param field the field
|
||||||
* @throws NullPointerException if the value is null.
|
* @throws NullPointerException if the value is null.
|
||||||
*/
|
*/
|
||||||
protected void appendEncodedStringValue(EncodedStringValue value,
|
public void appendEncodedStringValue(EncodedStringValue value, int field) {
|
||||||
int field) {
|
|
||||||
if (null == value) {
|
if (null == value) {
|
||||||
throw new NullPointerException();
|
throw new NullPointerException();
|
||||||
}
|
}
|
||||||
@@ -673,7 +672,7 @@ public class PduHeaders {
|
|||||||
* with specified header field. if return -1, the
|
* with specified header field. if return -1, the
|
||||||
* field is not existed in pdu header.
|
* field is not existed in pdu header.
|
||||||
*/
|
*/
|
||||||
protected long getLongInteger(int field) {
|
public long getLongInteger(int field) {
|
||||||
Long longInteger = (Long) mHeaderMap.get(field);
|
Long longInteger = (Long) mHeaderMap.get(field);
|
||||||
if (null == longInteger) {
|
if (null == longInteger) {
|
||||||
return -1;
|
return -1;
|
||||||
@@ -688,7 +687,7 @@ public class PduHeaders {
|
|||||||
* @param value the value
|
* @param value the value
|
||||||
* @param field the field
|
* @param field the field
|
||||||
*/
|
*/
|
||||||
protected void setLongInteger(long value, int field) {
|
public void setLongInteger(long value, int field) {
|
||||||
/**
|
/**
|
||||||
* Check whether this field can be set for specific
|
* Check whether this field can be set for specific
|
||||||
* header and check validity of the field.
|
* header and check validity of the field.
|
||||||
@@ -711,4 +710,8 @@ public class PduHeaders {
|
|||||||
}
|
}
|
||||||
mHeaderMap.put(field, value);
|
mHeaderMap.put(field, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean hasHeader(int field) {
|
||||||
|
return mHeaderMap.get(field, null) != null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,36 +19,55 @@
|
|||||||
package android.support.v7.mms.pdu;
|
package android.support.v7.mms.pdu;
|
||||||
|
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
import android.util.SparseArray;
|
||||||
|
|
||||||
import java.io.ByteArrayInputStream;
|
import java.io.ByteArrayInputStream;
|
||||||
import java.io.ByteArrayOutputStream;
|
import java.io.ByteArrayOutputStream;
|
||||||
import java.io.UnsupportedEncodingException;
|
import java.io.UnsupportedEncodingException;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.HashMap;
|
|
||||||
|
|
||||||
public class PduParser {
|
public class PduParser {
|
||||||
/**
|
/**
|
||||||
* The next are WAP values defined in WSP specification.
|
* The log tag.
|
||||||
|
*/
|
||||||
|
private static final String LOG_TAG = "PduParser";
|
||||||
|
|
||||||
|
private static final boolean LOCAL_LOGV = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The next are WAP values defined in WSP specification.
|
||||||
*/
|
*/
|
||||||
private static final int QUOTE = 127;
|
private static final int QUOTE = 127;
|
||||||
|
|
||||||
private static final int LENGTH_QUOTE = 31;
|
private static final int LENGTH_QUOTE = 31;
|
||||||
|
|
||||||
private static final int TEXT_MIN = 32;
|
private static final int TEXT_MIN = 32;
|
||||||
|
|
||||||
private static final int TEXT_MAX = 127;
|
private static final int TEXT_MAX = 127;
|
||||||
|
|
||||||
private static final int SHORT_INTEGER_MAX = 127;
|
private static final int SHORT_INTEGER_MAX = 127;
|
||||||
|
|
||||||
private static final int SHORT_LENGTH_MAX = 30;
|
private static final int SHORT_LENGTH_MAX = 30;
|
||||||
|
|
||||||
private static final int LONG_INTEGER_LENGTH_MAX = 8;
|
private static final int LONG_INTEGER_LENGTH_MAX = 8;
|
||||||
|
|
||||||
private static final int QUOTED_STRING_FLAG = 34;
|
private static final int QUOTED_STRING_FLAG = 34;
|
||||||
|
|
||||||
private static final int END_STRING_FLAG = 0x00;
|
private static final int END_STRING_FLAG = 0x00;
|
||||||
|
|
||||||
//The next two are used by the interface "parseWapString" to
|
//The next two are used by the interface "parseWapString" to
|
||||||
//distinguish Text-String and Quoted-String.
|
//distinguish Text-String and Quoted-String.
|
||||||
private static final int TYPE_TEXT_STRING = 0;
|
private static final int TYPE_TEXT_STRING = 0;
|
||||||
|
|
||||||
private static final int TYPE_QUOTED_STRING = 1;
|
private static final int TYPE_QUOTED_STRING = 1;
|
||||||
|
|
||||||
private static final int TYPE_TOKEN_STRING = 2;
|
private static final int TYPE_TOKEN_STRING = 2;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Specify the part position.
|
* Specify the part position.
|
||||||
*/
|
*/
|
||||||
private static final int THE_FIRST_PART = 0;
|
private static final int THE_FIRST_PART = 0;
|
||||||
|
|
||||||
private static final int THE_LAST_PART = 1;
|
private static final int THE_LAST_PART = 1;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -76,13 +95,6 @@ public class PduParser {
|
|||||||
*/
|
*/
|
||||||
private static byte[] mStartParam = null;
|
private static byte[] mStartParam = null;
|
||||||
|
|
||||||
/**
|
|
||||||
* The log tag.
|
|
||||||
*/
|
|
||||||
private static final String LOG_TAG = "PduParser";
|
|
||||||
private static final boolean DEBUG = false;
|
|
||||||
private static final boolean LOCAL_LOGV = false;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether to parse content-disposition part header
|
* Whether to parse content-disposition part header
|
||||||
*/
|
*/
|
||||||
@@ -125,9 +137,16 @@ public class PduParser {
|
|||||||
log("check mandatory headers failed!");
|
log("check mandatory headers failed!");
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
|
* Get retrieve status. If the header is not there, assuming it is OK status.
|
||||||
|
* Some carriers may choose to not send this header.
|
||||||
|
*/
|
||||||
|
int retrieveStatus = mHeaders.hasHeader(PduHeaders.RETRIEVE_STATUS) ?
|
||||||
|
mHeaders.getOctet(PduHeaders.RETRIEVE_STATUS) : PduHeaders.RETRIEVE_STATUS_OK;
|
||||||
|
|
||||||
if ((PduHeaders.MESSAGE_TYPE_SEND_REQ == messageType) ||
|
if ((PduHeaders.MESSAGE_TYPE_SEND_REQ == messageType) ||
|
||||||
(PduHeaders.MESSAGE_TYPE_RETRIEVE_CONF == messageType)) {
|
(PduHeaders.MESSAGE_TYPE_RETRIEVE_CONF == messageType &&
|
||||||
|
retrieveStatus == PduHeaders.RETRIEVE_STATUS_OK)) {
|
||||||
/* need to parse the parts */
|
/* need to parse the parts */
|
||||||
mBody = parseParts(mPduDataStream);
|
mBody = parseParts(mPduDataStream);
|
||||||
if (null == mBody) {
|
if (null == mBody) {
|
||||||
@@ -169,26 +188,22 @@ public class PduParser {
|
|||||||
}
|
}
|
||||||
RetrieveConf retrieveConf =
|
RetrieveConf retrieveConf =
|
||||||
new RetrieveConf(mHeaders, mBody);
|
new RetrieveConf(mHeaders, mBody);
|
||||||
|
if (retrieveStatus != PduHeaders.RETRIEVE_STATUS_OK) {
|
||||||
|
// For failure only no need to check content type
|
||||||
|
return retrieveConf;
|
||||||
|
}
|
||||||
byte[] contentType = retrieveConf.getContentType();
|
byte[] contentType = retrieveConf.getContentType();
|
||||||
if (null == contentType) {
|
if (null == contentType) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
String ctTypeStr = new String(contentType);
|
String ctTypeStr = new String(contentType);
|
||||||
if (ctTypeStr.equals(ContentType.MULTIPART_MIXED)
|
if (ctTypeStr.equals(ContentType.MMS_MULTIPART_MIXED)
|
||||||
|| ctTypeStr.equals(ContentType.MULTIPART_RELATED)
|
|| ctTypeStr.equals(ContentType.MMS_MULTIPART_RELATED)
|
||||||
|| ctTypeStr.equals(ContentType.MULTIPART_ALTERNATIVE)) {
|
|| ctTypeStr.equals(ContentType.MMS_MULTIPART_ALTERNATIVE)) {
|
||||||
// The MMS content type must be "application/vnd.wap.multipart.mixed"
|
// The MMS content type must be "application/vnd.wap.multipart.mixed"
|
||||||
// or "application/vnd.wap.multipart.related"
|
// or "application/vnd.wap.multipart.related"
|
||||||
// or "application/vnd.wap.multipart.alternative"
|
// or "application/vnd.wap.multipart.alternative"
|
||||||
return retrieveConf;
|
return retrieveConf;
|
||||||
} else if (ctTypeStr.equals(ContentType.MULTIPART_ALTERNATIVE)) {
|
|
||||||
// "application/vnd.wap.multipart.alternative"
|
|
||||||
// should take only the first part.
|
|
||||||
PduPart firstPart = mBody.getPart(0);
|
|
||||||
mBody.removeAll();
|
|
||||||
mBody.addPart(0, firstPart);
|
|
||||||
return retrieveConf;
|
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
case PduHeaders.MESSAGE_TYPE_DELIVERY_IND:
|
case PduHeaders.MESSAGE_TYPE_DELIVERY_IND:
|
||||||
@@ -231,7 +246,7 @@ public class PduParser {
|
|||||||
* @param pduDataStream pdu data input stream
|
* @param pduDataStream pdu data input stream
|
||||||
* @return headers in PduHeaders structure, null when parse fail
|
* @return headers in PduHeaders structure, null when parse fail
|
||||||
*/
|
*/
|
||||||
protected PduHeaders parseHeaders(ByteArrayInputStream pduDataStream){
|
protected PduHeaders parseHeaders(ByteArrayInputStream pduDataStream) {
|
||||||
if (pduDataStream == null) {
|
if (pduDataStream == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@@ -244,7 +259,7 @@ public class PduParser {
|
|||||||
/* parse custom text header */
|
/* parse custom text header */
|
||||||
if ((headerField >= TEXT_MIN) && (headerField <= TEXT_MAX)) {
|
if ((headerField >= TEXT_MIN) && (headerField <= TEXT_MAX)) {
|
||||||
pduDataStream.reset();
|
pduDataStream.reset();
|
||||||
byte [] bVal = parseWapString(pduDataStream, TYPE_TEXT_STRING);
|
byte[] bVal = parseWapString(pduDataStream, TYPE_TEXT_STRING);
|
||||||
if (LOCAL_LOGV) {
|
if (LOCAL_LOGV) {
|
||||||
Log.v(LOG_TAG, "TextHeader: " + new String(bVal));
|
Log.v(LOG_TAG, "TextHeader: " + new String(bVal));
|
||||||
}
|
}
|
||||||
@@ -256,7 +271,8 @@ public class PduParser {
|
|||||||
{
|
{
|
||||||
int messageType = extractByteValue(pduDataStream);
|
int messageType = extractByteValue(pduDataStream);
|
||||||
if (LOCAL_LOGV) {
|
if (LOCAL_LOGV) {
|
||||||
Log.v(LOG_TAG, "parseHeaders: messageType: " + messageType);
|
Log.v(LOG_TAG, "parseHeaders: messageType: " + messageType +
|
||||||
|
" (" + Integer.toHexString(headerField) + ")");
|
||||||
}
|
}
|
||||||
switch (messageType) {
|
switch (messageType) {
|
||||||
// We don't support these kind of messages now.
|
// We don't support these kind of messages now.
|
||||||
@@ -320,7 +336,8 @@ public class PduParser {
|
|||||||
{
|
{
|
||||||
int value = extractByteValue(pduDataStream);
|
int value = extractByteValue(pduDataStream);
|
||||||
if (LOCAL_LOGV) {
|
if (LOCAL_LOGV) {
|
||||||
Log.v(LOG_TAG, "parseHeaders: byte: " + headerField + " value: " +
|
Log.v(LOG_TAG, "parseHeaders: headerField: " + headerField +
|
||||||
|
" (" + Integer.toHexString(headerField) + ") Octect value: " +
|
||||||
value);
|
value);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -345,7 +362,8 @@ public class PduParser {
|
|||||||
try {
|
try {
|
||||||
long value = parseLongInteger(pduDataStream);
|
long value = parseLongInteger(pduDataStream);
|
||||||
if (LOCAL_LOGV) {
|
if (LOCAL_LOGV) {
|
||||||
Log.v(LOG_TAG, "parseHeaders: longint: " + headerField + " value: " +
|
Log.v(LOG_TAG, "parseHeaders: headerField: " + headerField +
|
||||||
|
" (" + Integer.toHexString(headerField) + ") longint value: " +
|
||||||
value);
|
value);
|
||||||
}
|
}
|
||||||
headers.setLongInteger(value, headerField);
|
headers.setLongInteger(value, headerField);
|
||||||
@@ -364,7 +382,8 @@ public class PduParser {
|
|||||||
try {
|
try {
|
||||||
long value = parseIntegerValue(pduDataStream);
|
long value = parseIntegerValue(pduDataStream);
|
||||||
if (LOCAL_LOGV) {
|
if (LOCAL_LOGV) {
|
||||||
Log.v(LOG_TAG, "parseHeaders: int: " + headerField + " value: " +
|
Log.v(LOG_TAG, "parseHeaders: headerField: " + headerField +
|
||||||
|
" (" + Integer.toHexString(headerField) + ") integer value: " +
|
||||||
value);
|
value);
|
||||||
}
|
}
|
||||||
headers.setLongInteger(value, headerField);
|
headers.setLongInteger(value, headerField);
|
||||||
@@ -400,7 +419,9 @@ public class PduParser {
|
|||||||
if (null != value) {
|
if (null != value) {
|
||||||
try {
|
try {
|
||||||
if (LOCAL_LOGV) {
|
if (LOCAL_LOGV) {
|
||||||
Log.v(LOG_TAG, "parseHeaders: string: " + headerField + " value: " +
|
Log.v(LOG_TAG, "parseHeaders: headerField: " + headerField +
|
||||||
|
" (" + Integer.toHexString(headerField) + ") string value: "
|
||||||
|
+
|
||||||
new String(value));
|
new String(value));
|
||||||
}
|
}
|
||||||
headers.setTextString(value, headerField);
|
headers.setTextString(value, headerField);
|
||||||
@@ -429,8 +450,10 @@ public class PduParser {
|
|||||||
if (null != value) {
|
if (null != value) {
|
||||||
try {
|
try {
|
||||||
if (LOCAL_LOGV) {
|
if (LOCAL_LOGV) {
|
||||||
Log.v(LOG_TAG, "parseHeaders: encoded string: " + headerField
|
Log.v(LOG_TAG, "parseHeaders: headerField: " + headerField +
|
||||||
+ " value: " + value.getString());
|
" (" + Integer.toHexString(headerField)
|
||||||
|
+ ") encoded string: " +
|
||||||
|
value.getString());
|
||||||
}
|
}
|
||||||
headers.setEncodedStringValue(value, headerField);
|
headers.setEncodedStringValue(value, headerField);
|
||||||
} catch(NullPointerException e) {
|
} catch(NullPointerException e) {
|
||||||
@@ -510,8 +533,9 @@ public class PduParser {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
if (LOCAL_LOGV) {
|
if (LOCAL_LOGV) {
|
||||||
Log.v(LOG_TAG, "parseHeaders: time value: " + headerField
|
Log.v(LOG_TAG, "parseHeaders: headerField: " + headerField +
|
||||||
+ " value: " + timeValue);
|
" (" + Integer.toHexString(headerField) + ") time value: " +
|
||||||
|
timeValue);
|
||||||
}
|
}
|
||||||
headers.setLongInteger(timeValue, headerField);
|
headers.setLongInteger(timeValue, headerField);
|
||||||
} catch(RuntimeException e) {
|
} catch(RuntimeException e) {
|
||||||
@@ -564,8 +588,9 @@ public class PduParser {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
if (LOCAL_LOGV) {
|
if (LOCAL_LOGV) {
|
||||||
Log.v(LOG_TAG, "parseHeaders: from address: " + headerField
|
Log.v(LOG_TAG, "parseHeaders: headerField: " + headerField +
|
||||||
+ " value: " + from.getString());
|
" (" + Integer.toHexString(headerField) + ") from address: " +
|
||||||
|
from.getString());
|
||||||
}
|
}
|
||||||
headers.setEncodedStringValue(from, PduHeaders.FROM);
|
headers.setEncodedStringValue(from, PduHeaders.FROM);
|
||||||
} catch(NullPointerException e) {
|
} catch(NullPointerException e) {
|
||||||
@@ -582,8 +607,9 @@ public class PduParser {
|
|||||||
pduDataStream.mark(1);
|
pduDataStream.mark(1);
|
||||||
int messageClass = extractByteValue(pduDataStream);
|
int messageClass = extractByteValue(pduDataStream);
|
||||||
if (LOCAL_LOGV) {
|
if (LOCAL_LOGV) {
|
||||||
Log.v(LOG_TAG, "parseHeaders: MESSAGE_CLASS: " + headerField
|
Log.v(LOG_TAG, "parseHeaders: headerField: " + headerField +
|
||||||
+ " value: " + messageClass);
|
" (" + Integer.toHexString(headerField) + ") MESSAGE_CLASS: " +
|
||||||
|
messageClass);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (messageClass >= PduHeaders.MESSAGE_CLASS_PERSONAL) {
|
if (messageClass >= PduHeaders.MESSAGE_CLASS_PERSONAL) {
|
||||||
@@ -635,8 +661,9 @@ public class PduParser {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
if (LOCAL_LOGV) {
|
if (LOCAL_LOGV) {
|
||||||
Log.v(LOG_TAG, "parseHeaders: MMS_VERSION: " + headerField
|
Log.v(LOG_TAG, "parseHeaders: headerField: " + headerField +
|
||||||
+ " value: " + version);
|
" (" + Integer.toHexString(headerField) + ") MMS_VERSION: " +
|
||||||
|
version);
|
||||||
}
|
}
|
||||||
headers.setOctet(version, PduHeaders.MMS_VERSION);
|
headers.setOctet(version, PduHeaders.MMS_VERSION);
|
||||||
} catch(InvalidHeaderValueException e) {
|
} catch(InvalidHeaderValueException e) {
|
||||||
@@ -670,8 +697,9 @@ public class PduParser {
|
|||||||
if (null != previouslySentBy) {
|
if (null != previouslySentBy) {
|
||||||
try {
|
try {
|
||||||
if (LOCAL_LOGV) {
|
if (LOCAL_LOGV) {
|
||||||
Log.v(LOG_TAG, "parseHeaders: PREVIOUSLY_SENT_BY: " + headerField
|
Log.v(LOG_TAG, "parseHeaders: headerField: " + headerField +
|
||||||
+ " value: " + previouslySentBy.getString());
|
" (" + Integer.toHexString(headerField) +
|
||||||
|
") PREVIOUSLY_SENT_BY: " + previouslySentBy.getString());
|
||||||
}
|
}
|
||||||
headers.setEncodedStringValue(previouslySentBy,
|
headers.setEncodedStringValue(previouslySentBy,
|
||||||
PduHeaders.PREVIOUSLY_SENT_BY);
|
PduHeaders.PREVIOUSLY_SENT_BY);
|
||||||
@@ -701,12 +729,13 @@ public class PduParser {
|
|||||||
|
|
||||||
/* Date-value */
|
/* Date-value */
|
||||||
try {
|
try {
|
||||||
long perviouslySentDate = parseLongInteger(pduDataStream);
|
long previouslySentDate = parseLongInteger(pduDataStream);
|
||||||
if (LOCAL_LOGV) {
|
if (LOCAL_LOGV) {
|
||||||
Log.v(LOG_TAG, "parseHeaders: PREVIOUSLY_SENT_DATE: " + headerField
|
Log.v(LOG_TAG, "parseHeaders: headerField: " + headerField +
|
||||||
+ " value: " + perviouslySentDate);
|
" (" + Integer.toHexString(headerField) +
|
||||||
|
") PREVIOUSLY_SENT_DATE: " + previouslySentDate);
|
||||||
}
|
}
|
||||||
headers.setLongInteger(perviouslySentDate,
|
headers.setLongInteger(previouslySentDate,
|
||||||
PduHeaders.PREVIOUSLY_SENT_DATE);
|
PduHeaders.PREVIOUSLY_SENT_DATE);
|
||||||
} catch(RuntimeException e) {
|
} catch(RuntimeException e) {
|
||||||
log(headerField + "is not Long-Integer header field!");
|
log(headerField + "is not Long-Integer header field!");
|
||||||
@@ -722,8 +751,9 @@ public class PduParser {
|
|||||||
* Encoded-string-value
|
* Encoded-string-value
|
||||||
*/
|
*/
|
||||||
if (LOCAL_LOGV) {
|
if (LOCAL_LOGV) {
|
||||||
Log.v(LOG_TAG, "parseHeaders: MM_FLAGS: " + headerField
|
Log.v(LOG_TAG, "parseHeaders: headerField: " + headerField +
|
||||||
+ " NOT REALLY SUPPORTED");
|
" (" + Integer.toHexString(headerField) + ") MM_FLAGS: " +
|
||||||
|
" NOT REALLY SUPPORTED");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* parse Value-length */
|
/* parse Value-length */
|
||||||
@@ -746,7 +776,8 @@ public class PduParser {
|
|||||||
case PduHeaders.MBOX_QUOTAS:
|
case PduHeaders.MBOX_QUOTAS:
|
||||||
{
|
{
|
||||||
if (LOCAL_LOGV) {
|
if (LOCAL_LOGV) {
|
||||||
Log.v(LOG_TAG, "parseHeaders: MBOX_TOTALS: " + headerField);
|
Log.v(LOG_TAG, "parseHeaders: headerField: " + headerField +
|
||||||
|
" (" + Integer.toHexString(headerField) + ") MBOX_");
|
||||||
}
|
}
|
||||||
/* Value-length */
|
/* Value-length */
|
||||||
parseValueLength(pduDataStream);
|
parseValueLength(pduDataStream);
|
||||||
@@ -769,7 +800,8 @@ public class PduParser {
|
|||||||
|
|
||||||
case PduHeaders.ELEMENT_DESCRIPTOR: {
|
case PduHeaders.ELEMENT_DESCRIPTOR: {
|
||||||
if (LOCAL_LOGV) {
|
if (LOCAL_LOGV) {
|
||||||
Log.v(LOG_TAG, "parseHeaders: ELEMENT_DESCRIPTOR: " + headerField);
|
Log.v(LOG_TAG, "parseHeaders: headerField: " + headerField +
|
||||||
|
" (" + Integer.toHexString(headerField) + ") ELEMENT_DESCRIPTOR");
|
||||||
}
|
}
|
||||||
parseContentType(pduDataStream, null);
|
parseContentType(pduDataStream, null);
|
||||||
|
|
||||||
@@ -779,15 +811,16 @@ public class PduParser {
|
|||||||
}
|
}
|
||||||
|
|
||||||
case PduHeaders.CONTENT_TYPE: {
|
case PduHeaders.CONTENT_TYPE: {
|
||||||
HashMap<Integer, Object> map = new HashMap<>();
|
SparseArray<Object> map = new SparseArray<>();
|
||||||
byte[] contentType =
|
byte[] contentType =
|
||||||
parseContentType(pduDataStream, map);
|
parseContentType(pduDataStream, map);
|
||||||
|
|
||||||
if (null != contentType) {
|
if (null != contentType) {
|
||||||
try {
|
try {
|
||||||
if (LOCAL_LOGV) {
|
if (LOCAL_LOGV) {
|
||||||
Log.v(LOG_TAG, "parseHeaders: CONTENT_TYPE: " + headerField +
|
Log.v(LOG_TAG, "parseHeaders: headerField: " + headerField +
|
||||||
Arrays.toString(contentType));
|
" (" + Integer.toHexString(headerField) + ") CONTENT_TYPE: "
|
||||||
|
+ Arrays.toString(contentType));
|
||||||
}
|
}
|
||||||
headers.setTextString(contentType, PduHeaders.CONTENT_TYPE);
|
headers.setTextString(contentType, PduHeaders.CONTENT_TYPE);
|
||||||
} catch(NullPointerException e) {
|
} catch(NullPointerException e) {
|
||||||
@@ -813,7 +846,8 @@ public class PduParser {
|
|||||||
case PduHeaders.ATTRIBUTES:
|
case PduHeaders.ATTRIBUTES:
|
||||||
default: {
|
default: {
|
||||||
if (LOCAL_LOGV) {
|
if (LOCAL_LOGV) {
|
||||||
Log.v(LOG_TAG, "parseHeaders: Unknown header: " + headerField);
|
Log.v(LOG_TAG, "parseHeaders: Unknown header: " + headerField +
|
||||||
|
" (" + Integer.toHexString(headerField) + ")");
|
||||||
}
|
}
|
||||||
log("Unknown header");
|
log("Unknown header");
|
||||||
}
|
}
|
||||||
@@ -848,7 +882,7 @@ public class PduParser {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* parse part's content-type */
|
/* parse part's content-type */
|
||||||
HashMap<Integer, Object> map = new HashMap<>();
|
SparseArray<Object> map = new SparseArray<>();
|
||||||
byte[] contentType = parseContentType(pduDataStream, map);
|
byte[] contentType = parseContentType(pduDataStream, map);
|
||||||
if (null != contentType) {
|
if (null != contentType) {
|
||||||
part.setContentType(contentType);
|
part.setContentType(contentType);
|
||||||
@@ -897,7 +931,7 @@ public class PduParser {
|
|||||||
byte[] partData = new byte[dataLength];
|
byte[] partData = new byte[dataLength];
|
||||||
String partContentType = new String(part.getContentType());
|
String partContentType = new String(part.getContentType());
|
||||||
pduDataStream.read(partData, 0, dataLength);
|
pduDataStream.read(partData, 0, dataLength);
|
||||||
if (partContentType.equalsIgnoreCase(ContentType.MULTIPART_ALTERNATIVE)) {
|
if (partContentType.equalsIgnoreCase(ContentType.MMS_MULTIPART_ALTERNATIVE)) {
|
||||||
// parse "multipart/vnd.wap.multipart.alternative".
|
// parse "multipart/vnd.wap.multipart.alternative".
|
||||||
PduBody childBody = parseParts(new ByteArrayInputStream(partData));
|
PduBody childBody = parseParts(new ByteArrayInputStream(partData));
|
||||||
// take the first part of children.
|
// take the first part of children.
|
||||||
@@ -1031,7 +1065,7 @@ public class PduParser {
|
|||||||
assert(-1 != temp);
|
assert(-1 != temp);
|
||||||
int first = temp & 0xFF;
|
int first = temp & 0xFF;
|
||||||
if (first == 0) {
|
if (first == 0) {
|
||||||
return new EncodedStringValue("");
|
return null; // Blank subject, bail.
|
||||||
}
|
}
|
||||||
|
|
||||||
pduDataStream.reset();
|
pduDataStream.reset();
|
||||||
@@ -1335,7 +1369,7 @@ public class PduParser {
|
|||||||
* @param length length of all the parameters
|
* @param length length of all the parameters
|
||||||
*/
|
*/
|
||||||
protected static void parseContentTypeParams(ByteArrayInputStream pduDataStream,
|
protected static void parseContentTypeParams(ByteArrayInputStream pduDataStream,
|
||||||
HashMap<Integer, Object> map, Integer length) {
|
SparseArray<Object> map, Integer length) {
|
||||||
/**
|
/**
|
||||||
* From wap-230-wsp-20010705-a.pdf
|
* From wap-230-wsp-20010705-a.pdf
|
||||||
* Parameter = Typed-parameter | Untyped-parameter
|
* Parameter = Typed-parameter | Untyped-parameter
|
||||||
@@ -1518,7 +1552,7 @@ public class PduParser {
|
|||||||
* @return Content-Type value
|
* @return Content-Type value
|
||||||
*/
|
*/
|
||||||
protected static byte[] parseContentType(ByteArrayInputStream pduDataStream,
|
protected static byte[] parseContentType(ByteArrayInputStream pduDataStream,
|
||||||
HashMap<Integer, Object> map) {
|
SparseArray<Object> map) {
|
||||||
/**
|
/**
|
||||||
* From wap-230-wsp-20010705-a.pdf
|
* From wap-230-wsp-20010705-a.pdf
|
||||||
* Content-type-value = Constrained-media | Content-general-form
|
* Content-type-value = Constrained-media | Content-general-form
|
||||||
|
|||||||
@@ -19,9 +19,7 @@
|
|||||||
package android.support.v7.mms.pdu;
|
package android.support.v7.mms.pdu;
|
||||||
|
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
|
import android.util.SparseArray;
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The pdu part.
|
* The pdu part.
|
||||||
@@ -108,7 +106,7 @@ public class PduPart {
|
|||||||
/**
|
/**
|
||||||
* Header of part.
|
* Header of part.
|
||||||
*/
|
*/
|
||||||
private Map<Integer, Object> mPartHeader = null;
|
private SparseArray<Object> mPartHeader = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Data uri.
|
* Data uri.
|
||||||
@@ -126,7 +124,7 @@ public class PduPart {
|
|||||||
* Empty Constructor.
|
* Empty Constructor.
|
||||||
*/
|
*/
|
||||||
public PduPart() {
|
public PduPart() {
|
||||||
mPartHeader = new HashMap<>();
|
mPartHeader = new SparseArray<>();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -135,41 +133,18 @@ public class PduPart {
|
|||||||
* @param data the data
|
* @param data the data
|
||||||
*/
|
*/
|
||||||
public void setData(byte[] data) {
|
public void setData(byte[] data) {
|
||||||
if(data == null) {
|
mPartData = data;
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
mPartData = new byte[data.length];
|
|
||||||
System.arraycopy(data, 0, mPartData, 0, data.length);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return A copy of the part data or null if the data wasn't set or
|
* @return The part data or null if the data wasn't set or
|
||||||
* the data is stored as Uri.
|
* the data is stored as Uri.
|
||||||
* @see #getDataUri
|
* @see #getDataUri
|
||||||
*/
|
*/
|
||||||
public byte[] getData() {
|
public byte[] getData() {
|
||||||
if(mPartData == null) {
|
return mPartData;
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
byte[] byteArray = new byte[mPartData.length];
|
|
||||||
System.arraycopy(mPartData, 0, byteArray, 0, mPartData.length);
|
|
||||||
return byteArray;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @return The length of the data, if this object have data, else 0.
|
|
||||||
*/
|
|
||||||
public int getDataLength() {
|
|
||||||
if(mPartData != null){
|
|
||||||
return mPartData.length;
|
|
||||||
} else {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set data uri. The data are stored as Uri.
|
* Set data uri. The data are stored as Uri.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ public class ReadOrigInd extends GenericPdu {
|
|||||||
*
|
*
|
||||||
* @param headers Headers for this PDU.
|
* @param headers Headers for this PDU.
|
||||||
*/
|
*/
|
||||||
ReadOrigInd(PduHeaders headers) {
|
public ReadOrigInd(PduHeaders headers) {
|
||||||
super(headers);
|
super(headers);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ public class ReadRecInd extends GenericPdu {
|
|||||||
*
|
*
|
||||||
* @param headers Headers for this PDU.
|
* @param headers Headers for this PDU.
|
||||||
*/
|
*/
|
||||||
ReadRecInd(PduHeaders headers) {
|
public ReadRecInd(PduHeaders headers) {
|
||||||
super(headers);
|
super(headers);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ public class RetrieveConf extends MultimediaMessagePdu {
|
|||||||
* @param headers Headers for this PDU.
|
* @param headers Headers for this PDU.
|
||||||
* @param body Body of this PDu.
|
* @param body Body of this PDu.
|
||||||
*/
|
*/
|
||||||
RetrieveConf(PduHeaders headers, PduBody body) {
|
public RetrieveConf(PduHeaders headers, PduBody body) {
|
||||||
super(headers, body);
|
super(headers, body);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -197,7 +197,12 @@ public class RetrieveConf extends MultimediaMessagePdu {
|
|||||||
* @return the value
|
* @return the value
|
||||||
*/
|
*/
|
||||||
public int getRetrieveStatus() {
|
public int getRetrieveStatus() {
|
||||||
return mPduHeaders.getOctet(PduHeaders.RETRIEVE_STATUS);
|
/*
|
||||||
|
* If the header is not there, assuming it is OK status.
|
||||||
|
* Some carriers may choose to not send this header.
|
||||||
|
*/
|
||||||
|
return mPduHeaders.hasHeader(PduHeaders.RETRIEVE_STATUS) ?
|
||||||
|
mPduHeaders.getOctet(PduHeaders.RETRIEVE_STATUS) : PduHeaders.RETRIEVE_STATUS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ public class SendReq extends MultimediaMessagePdu {
|
|||||||
* @param headers Headers for this PDU.
|
* @param headers Headers for this PDU.
|
||||||
* @param body Body of this PDu.
|
* @param body Body of this PDu.
|
||||||
*/
|
*/
|
||||||
SendReq(PduHeaders headers, PduBody body) {
|
public SendReq(PduHeaders headers, PduBody body) {
|
||||||
super(headers, body);
|
super(headers, body);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ import android.database.sqlite.SQLiteDoneException;
|
|||||||
import android.database.sqlite.SQLiteStatement;
|
import android.database.sqlite.SQLiteStatement;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.ParcelFileDescriptor;
|
import android.os.ParcelFileDescriptor;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
|
|
||||||
import androidx.collection.ArrayMap;
|
import androidx.collection.ArrayMap;
|
||||||
@@ -45,7 +46,6 @@ import com.android.messaging.ui.UIIntents;
|
|||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.Assert.DoesNotRunOnMainThread;
|
import com.android.messaging.util.Assert.DoesNotRunOnMainThread;
|
||||||
import com.android.messaging.util.AvatarUriUtil;
|
import com.android.messaging.util.AvatarUriUtil;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
import com.android.messaging.util.PhoneUtils;
|
import com.android.messaging.util.PhoneUtils;
|
||||||
import com.android.messaging.util.UriUtil;
|
import com.android.messaging.util.UriUtil;
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ import android.os.Bundle;
|
|||||||
import android.os.SystemClock;
|
import android.os.SystemClock;
|
||||||
import android.provider.ContactsContract;
|
import android.provider.ContactsContract;
|
||||||
import android.provider.ContactsContract.Contacts;
|
import android.provider.ContactsContract.Contacts;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.text.Spannable;
|
import android.text.Spannable;
|
||||||
import android.text.SpannableStringBuilder;
|
import android.text.SpannableStringBuilder;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
@@ -70,7 +71,6 @@ import com.android.messaging.util.AvatarUriUtil;
|
|||||||
import com.android.messaging.util.BugleGservicesKeys;
|
import com.android.messaging.util.BugleGservicesKeys;
|
||||||
import com.android.messaging.util.BuglePrefs;
|
import com.android.messaging.util.BuglePrefs;
|
||||||
import com.android.messaging.util.BuglePrefsKeys;
|
import com.android.messaging.util.BuglePrefsKeys;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.ConversationIdSet;
|
import com.android.messaging.util.ConversationIdSet;
|
||||||
import com.android.messaging.util.ImageUtils;
|
import com.android.messaging.util.ImageUtils;
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
|
|||||||
@@ -18,13 +18,12 @@
|
|||||||
package com.android.messaging.datamodel;
|
package com.android.messaging.datamodel;
|
||||||
|
|
||||||
import android.provider.BaseColumns;
|
import android.provider.BaseColumns;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
|
|
||||||
import com.android.ex.photo.provider.PhotoContract.PhotoViewColumns;
|
import com.android.ex.photo.provider.PhotoContract.PhotoViewColumns;
|
||||||
|
|
||||||
import com.android.messaging.datamodel.DatabaseHelper.MessageColumns;
|
import com.android.messaging.datamodel.DatabaseHelper.MessageColumns;
|
||||||
import com.android.messaging.datamodel.DatabaseHelper.PartColumns;
|
import com.android.messaging.datamodel.DatabaseHelper.PartColumns;
|
||||||
import com.android.messaging.datamodel.DatabaseHelper.ParticipantColumns;
|
import com.android.messaging.datamodel.DatabaseHelper.ParticipantColumns;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* View for the image parts for the conversation. It is used to provide the photoviewer with a
|
* View for the image parts for the conversation. It is used to provide the photoviewer with a
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ import android.content.res.Resources;
|
|||||||
import android.database.Cursor;
|
import android.database.Cursor;
|
||||||
import android.graphics.Typeface;
|
import android.graphics.Typeface;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.text.Html;
|
import android.text.Html;
|
||||||
import android.text.Spannable;
|
import android.text.Spannable;
|
||||||
import android.text.SpannableString;
|
import android.text.SpannableString;
|
||||||
@@ -52,7 +53,6 @@ import com.android.messaging.ui.UIIntents;
|
|||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.AvatarUriUtil;
|
import com.android.messaging.util.AvatarUriUtil;
|
||||||
import com.android.messaging.util.BugleGservicesKeys;
|
import com.android.messaging.util.BugleGservicesKeys;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.ConversationIdSet;
|
import com.android.messaging.util.ConversationIdSet;
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
import com.android.messaging.util.NotificationsUtil;
|
import com.android.messaging.util.NotificationsUtil;
|
||||||
|
|||||||
@@ -25,6 +25,8 @@ import android.os.Bundle;
|
|||||||
import android.os.Parcel;
|
import android.os.Parcel;
|
||||||
import android.os.Parcelable;
|
import android.os.Parcelable;
|
||||||
import android.provider.Telephony.Mms;
|
import android.provider.Telephony.Mms;
|
||||||
|
import android.support.v7.mms.pdu.PduHeaders;
|
||||||
|
import android.support.v7.mms.pdu.RetrieveConf;
|
||||||
import android.telephony.SmsManager;
|
import android.telephony.SmsManager;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
|
|
||||||
@@ -41,8 +43,6 @@ import com.android.messaging.datamodel.SyncManager;
|
|||||||
import com.android.messaging.datamodel.data.MessageData;
|
import com.android.messaging.datamodel.data.MessageData;
|
||||||
import com.android.messaging.datamodel.data.ParticipantData;
|
import com.android.messaging.datamodel.data.ParticipantData;
|
||||||
import com.android.messaging.mmslib.SqliteWrapper;
|
import com.android.messaging.mmslib.SqliteWrapper;
|
||||||
import com.android.messaging.mmslib.pdu.PduHeaders;
|
|
||||||
import com.android.messaging.mmslib.pdu.RetrieveConf;
|
|
||||||
import com.android.messaging.sms.DatabaseMessages;
|
import com.android.messaging.sms.DatabaseMessages;
|
||||||
import com.android.messaging.sms.MmsSender;
|
import com.android.messaging.sms.MmsSender;
|
||||||
import com.android.messaging.sms.MmsUtils;
|
import com.android.messaging.sms.MmsUtils;
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ import android.net.Uri;
|
|||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.os.Parcel;
|
import android.os.Parcel;
|
||||||
import android.os.Parcelable;
|
import android.os.Parcelable;
|
||||||
|
import android.support.v7.mms.pdu.SendConf;
|
||||||
import android.telephony.PhoneNumberUtils;
|
import android.telephony.PhoneNumberUtils;
|
||||||
import android.telephony.SmsManager;
|
import android.telephony.SmsManager;
|
||||||
|
|
||||||
@@ -37,7 +38,6 @@ import com.android.messaging.datamodel.MmsFileProvider;
|
|||||||
import com.android.messaging.datamodel.data.MessageData;
|
import com.android.messaging.datamodel.data.MessageData;
|
||||||
import com.android.messaging.datamodel.data.MessagePartData;
|
import com.android.messaging.datamodel.data.MessagePartData;
|
||||||
import com.android.messaging.datamodel.data.ParticipantData;
|
import com.android.messaging.datamodel.data.ParticipantData;
|
||||||
import com.android.messaging.mmslib.pdu.SendConf;
|
|
||||||
import com.android.messaging.sms.MmsConfig;
|
import com.android.messaging.sms.MmsConfig;
|
||||||
import com.android.messaging.sms.MmsSender;
|
import com.android.messaging.sms.MmsSender;
|
||||||
import com.android.messaging.sms.MmsUtils;
|
import com.android.messaging.sms.MmsUtils;
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ import android.content.Context;
|
|||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.os.Parcel;
|
import android.os.Parcel;
|
||||||
import android.os.Parcelable;
|
import android.os.Parcelable;
|
||||||
|
import android.support.v7.mms.pdu.PduHeaders;
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
|
|
||||||
@@ -33,7 +34,6 @@ import com.android.messaging.datamodel.MessagingContentProvider;
|
|||||||
import com.android.messaging.datamodel.SyncManager;
|
import com.android.messaging.datamodel.SyncManager;
|
||||||
import com.android.messaging.datamodel.data.MessageData;
|
import com.android.messaging.datamodel.data.MessageData;
|
||||||
import com.android.messaging.datamodel.data.ParticipantData;
|
import com.android.messaging.datamodel.data.ParticipantData;
|
||||||
import com.android.messaging.mmslib.pdu.PduHeaders;
|
|
||||||
import com.android.messaging.sms.DatabaseMessages;
|
import com.android.messaging.sms.DatabaseMessages;
|
||||||
import com.android.messaging.sms.MmsUtils;
|
import com.android.messaging.sms.MmsUtils;
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ import android.database.sqlite.SQLiteConstraintException;
|
|||||||
import android.provider.Telephony;
|
import android.provider.Telephony;
|
||||||
import android.provider.Telephony.Mms;
|
import android.provider.Telephony.Mms;
|
||||||
import android.provider.Telephony.Sms;
|
import android.provider.Telephony.Sms;
|
||||||
|
import android.support.v7.mms.pdu.PduHeaders;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
|
|
||||||
import com.android.messaging.datamodel.BugleDatabaseOperations;
|
import com.android.messaging.datamodel.BugleDatabaseOperations;
|
||||||
@@ -33,7 +34,6 @@ import com.android.messaging.datamodel.DatabaseWrapper;
|
|||||||
import com.android.messaging.datamodel.SyncManager.ThreadInfoCache;
|
import com.android.messaging.datamodel.SyncManager.ThreadInfoCache;
|
||||||
import com.android.messaging.datamodel.data.MessageData;
|
import com.android.messaging.datamodel.data.MessageData;
|
||||||
import com.android.messaging.datamodel.data.ParticipantData;
|
import com.android.messaging.datamodel.data.ParticipantData;
|
||||||
import com.android.messaging.mmslib.pdu.PduHeaders;
|
|
||||||
import com.android.messaging.sms.DatabaseMessages.LocalDatabaseMessage;
|
import com.android.messaging.sms.DatabaseMessages.LocalDatabaseMessage;
|
||||||
import com.android.messaging.sms.DatabaseMessages.MmsMessage;
|
import com.android.messaging.sms.DatabaseMessages.MmsMessage;
|
||||||
import com.android.messaging.sms.DatabaseMessages.SmsMessage;
|
import com.android.messaging.sms.DatabaseMessages.SmsMessage;
|
||||||
|
|||||||
@@ -25,6 +25,7 @@ import android.os.Parcel;
|
|||||||
import android.os.Parcelable;
|
import android.os.Parcelable;
|
||||||
import android.os.SystemClock;
|
import android.os.SystemClock;
|
||||||
import android.provider.Telephony.Mms;
|
import android.provider.Telephony.Mms;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.collection.LongSparseArray;
|
import androidx.collection.LongSparseArray;
|
||||||
@@ -46,7 +47,6 @@ import com.android.messaging.util.Assert;
|
|||||||
import com.android.messaging.util.BugleGservicesKeys;
|
import com.android.messaging.util.BugleGservicesKeys;
|
||||||
import com.android.messaging.util.BuglePrefs;
|
import com.android.messaging.util.BuglePrefs;
|
||||||
import com.android.messaging.util.BuglePrefsKeys;
|
import com.android.messaging.util.BuglePrefsKeys;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
import com.android.messaging.util.OsUtil;
|
import com.android.messaging.util.OsUtil;
|
||||||
|
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ import android.database.Cursor;
|
|||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.provider.BaseColumns;
|
import android.provider.BaseColumns;
|
||||||
import android.provider.ContactsContract;
|
import android.provider.ContactsContract;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
import android.text.format.DateUtils;
|
import android.text.format.DateUtils;
|
||||||
|
|
||||||
@@ -31,7 +32,6 @@ import com.android.messaging.datamodel.DatabaseHelper.PartColumns;
|
|||||||
import com.android.messaging.datamodel.DatabaseHelper.ParticipantColumns;
|
import com.android.messaging.datamodel.DatabaseHelper.ParticipantColumns;
|
||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.BugleGservicesKeys;
|
import com.android.messaging.util.BugleGservicesKeys;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.Dates;
|
import com.android.messaging.util.Dates;
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
import com.google.common.base.Predicate;
|
import com.google.common.base.Predicate;
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ import android.graphics.Rect;
|
|||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.Parcel;
|
import android.os.Parcel;
|
||||||
import android.os.Parcelable;
|
import android.os.Parcelable;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
@@ -39,7 +40,6 @@ import com.android.messaging.datamodel.media.ImageRequest;
|
|||||||
import com.android.messaging.sms.MmsUtils;
|
import com.android.messaging.sms.MmsUtils;
|
||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.Assert.DoesNotRunOnMainThread;
|
import com.android.messaging.util.Assert.DoesNotRunOnMainThread;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.GifTranscoder;
|
import com.android.messaging.util.GifTranscoder;
|
||||||
import com.android.messaging.util.ImageUtils;
|
import com.android.messaging.util.ImageUtils;
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
|
|||||||
@@ -21,10 +21,11 @@ import android.os.Handler;
|
|||||||
import android.os.Looper;
|
import android.os.Looper;
|
||||||
import android.os.Parcel;
|
import android.os.Parcel;
|
||||||
import android.os.Parcelable;
|
import android.os.Parcelable;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
|
|
||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
import com.android.messaging.util.UriUtil;
|
import com.android.messaging.util.UriUtil;
|
||||||
|
|
||||||
|
|||||||
@@ -19,10 +19,10 @@ package com.android.messaging.datamodel.media;
|
|||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.graphics.Bitmap;
|
import android.graphics.Bitmap;
|
||||||
import android.graphics.BitmapFactory;
|
import android.graphics.BitmapFactory;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
|
|
||||||
import com.android.messaging.Factory;
|
import com.android.messaging.Factory;
|
||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
|
|
||||||
import java.io.FileNotFoundException;
|
import java.io.FileNotFoundException;
|
||||||
|
|||||||
@@ -1,41 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007 Esmertec AG.
|
|
||||||
* Copyright (C) 2007 The Android Open Source Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Thrown when an invalid header value was set.
|
|
||||||
*/
|
|
||||||
public class InvalidHeaderValueException extends MmsException {
|
|
||||||
private static final long serialVersionUID = -2053384496042052262L;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructs an InvalidHeaderValueException with no detailed message.
|
|
||||||
*/
|
|
||||||
public InvalidHeaderValueException() {
|
|
||||||
super();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructs an InvalidHeaderValueException with the specified detailed message.
|
|
||||||
*
|
|
||||||
* @param message the detailed message.
|
|
||||||
*/
|
|
||||||
public InvalidHeaderValueException(String message) {
|
|
||||||
super(message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,60 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007 Esmertec AG.
|
|
||||||
* Copyright (C) 2007 The Android Open Source Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A generic exception that is thrown by the Mms client.
|
|
||||||
*/
|
|
||||||
public class MmsException extends Exception {
|
|
||||||
private static final long serialVersionUID = -7323249827281485390L;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a new MmsException.
|
|
||||||
*/
|
|
||||||
public MmsException() {
|
|
||||||
super();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a new MmsException with the specified detail message.
|
|
||||||
*
|
|
||||||
* @param message the detail message.
|
|
||||||
*/
|
|
||||||
public MmsException(String message) {
|
|
||||||
super(message);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a new MmsException with the specified cause.
|
|
||||||
*
|
|
||||||
* @param cause the cause.
|
|
||||||
*/
|
|
||||||
public MmsException(Throwable cause) {
|
|
||||||
super(cause);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a new MmsException with the specified detail message and cause.
|
|
||||||
*
|
|
||||||
* @param message the detail message.
|
|
||||||
* @param cause the cause.
|
|
||||||
*/
|
|
||||||
public MmsException(String message, Throwable cause) {
|
|
||||||
super(message, cause);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,89 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007 Esmertec AG.
|
|
||||||
* Copyright (C) 2007 The Android Open Source Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
import com.android.messaging.mmslib.InvalidHeaderValueException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* M-Acknowledge.ind PDU.
|
|
||||||
*/
|
|
||||||
public class AcknowledgeInd extends GenericPdu {
|
|
||||||
/**
|
|
||||||
* Constructor, used when composing a M-Acknowledge.ind pdu.
|
|
||||||
*
|
|
||||||
* @param mmsVersion current viersion of mms
|
|
||||||
* @param transactionId the transaction-id value
|
|
||||||
* @throws InvalidHeaderValueException if parameters are invalid.
|
|
||||||
* @throws NullPointerException if transactionId is null.
|
|
||||||
*/
|
|
||||||
public AcknowledgeInd(int mmsVersion, byte[] transactionId)
|
|
||||||
throws InvalidHeaderValueException {
|
|
||||||
super();
|
|
||||||
|
|
||||||
setMessageType(PduHeaders.MESSAGE_TYPE_ACKNOWLEDGE_IND);
|
|
||||||
setMmsVersion(mmsVersion);
|
|
||||||
setTransactionId(transactionId);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor with given headers.
|
|
||||||
*
|
|
||||||
* @param headers Headers for this PDU.
|
|
||||||
*/
|
|
||||||
AcknowledgeInd(PduHeaders headers) {
|
|
||||||
super(headers);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Report-Allowed field value.
|
|
||||||
*
|
|
||||||
* @return the X-Mms-Report-Allowed value
|
|
||||||
*/
|
|
||||||
public int getReportAllowed() {
|
|
||||||
return mPduHeaders.getOctet(PduHeaders.REPORT_ALLOWED);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Report-Allowed field value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
|
||||||
*/
|
|
||||||
public void setReportAllowed(int value) throws InvalidHeaderValueException {
|
|
||||||
mPduHeaders.setOctet(value, PduHeaders.REPORT_ALLOWED);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Transaction-Id field value.
|
|
||||||
*
|
|
||||||
* @return the X-Mms-Report-Allowed value
|
|
||||||
*/
|
|
||||||
public byte[] getTransactionId() {
|
|
||||||
return mPduHeaders.getTextString(PduHeaders.TRANSACTION_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Transaction-Id field value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setTransactionId(byte[] value) {
|
|
||||||
mPduHeaders.setTextString(value, PduHeaders.TRANSACTION_ID);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,168 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007 Esmertec AG.
|
|
||||||
* Copyright (C) 2007 The Android Open Source Project
|
|
||||||
* Copyright (C) 2024 The LineageOS Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
public class Base64 {
|
|
||||||
/**
|
|
||||||
* Used to get the number of Quadruples.
|
|
||||||
*/
|
|
||||||
static final int FOURBYTE = 4;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Byte used to pad output.
|
|
||||||
*/
|
|
||||||
static final byte PAD = (byte) '=';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The base length.
|
|
||||||
*/
|
|
||||||
static final int BASELENGTH = 255;
|
|
||||||
|
|
||||||
// Create arrays to hold the base64 characters
|
|
||||||
private static final byte[] base64Alphabet = new byte[BASELENGTH];
|
|
||||||
|
|
||||||
// Populating the character arrays
|
|
||||||
static {
|
|
||||||
for (int i = 0; i < BASELENGTH; i++) {
|
|
||||||
base64Alphabet[i] = (byte) -1;
|
|
||||||
}
|
|
||||||
for (int i = 'Z'; i >= 'A'; i--) {
|
|
||||||
base64Alphabet[i] = (byte) (i - 'A');
|
|
||||||
}
|
|
||||||
for (int i = 'z'; i >= 'a'; i--) {
|
|
||||||
base64Alphabet[i] = (byte) (i - 'a' + 26);
|
|
||||||
}
|
|
||||||
for (int i = '9'; i >= '0'; i--) {
|
|
||||||
base64Alphabet[i] = (byte) (i - '0' + 52);
|
|
||||||
}
|
|
||||||
|
|
||||||
base64Alphabet['+'] = 62;
|
|
||||||
base64Alphabet['/'] = 63;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Decodes Base64 data into octects
|
|
||||||
*
|
|
||||||
* @param base64Data Byte array containing Base64 data
|
|
||||||
* @return Array containing decoded data.
|
|
||||||
*/
|
|
||||||
public static byte[] decodeBase64(byte[] base64Data) {
|
|
||||||
// RFC 2045 requires that we discard ALL non-Base64 characters
|
|
||||||
base64Data = discardNonBase64(base64Data);
|
|
||||||
|
|
||||||
// handle the edge case, so we don't have to worry about it later
|
|
||||||
if (base64Data.length == 0) {
|
|
||||||
return new byte[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
int numberQuadruple = base64Data.length / FOURBYTE;
|
|
||||||
byte[] decodedData = null;
|
|
||||||
byte b1 = 0, b2 = 0, b3 = 0, b4 = 0, marker0 = 0, marker1 = 0;
|
|
||||||
|
|
||||||
// Throw away anything not in base64Data
|
|
||||||
|
|
||||||
int encodedIndex = 0;
|
|
||||||
int dataIndex = 0;
|
|
||||||
{
|
|
||||||
// this sizes the output array properly - rlw
|
|
||||||
int lastData = base64Data.length;
|
|
||||||
// ignore the '=' padding
|
|
||||||
while (base64Data[lastData - 1] == PAD) {
|
|
||||||
if (--lastData == 0) {
|
|
||||||
return new byte[0];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
decodedData = new byte[lastData - numberQuadruple];
|
|
||||||
}
|
|
||||||
|
|
||||||
for (int i = 0; i < numberQuadruple; i++) {
|
|
||||||
dataIndex = i * 4;
|
|
||||||
marker0 = base64Data[dataIndex + 2];
|
|
||||||
marker1 = base64Data[dataIndex + 3];
|
|
||||||
|
|
||||||
b1 = base64Alphabet[base64Data[dataIndex]];
|
|
||||||
b2 = base64Alphabet[base64Data[dataIndex + 1]];
|
|
||||||
|
|
||||||
if (marker0 != PAD && marker1 != PAD) {
|
|
||||||
//No PAD e.g 3cQl
|
|
||||||
b3 = base64Alphabet[marker0];
|
|
||||||
b4 = base64Alphabet[marker1];
|
|
||||||
|
|
||||||
decodedData[encodedIndex] = (byte) (b1 << 2 | b2 >> 4);
|
|
||||||
decodedData[encodedIndex + 1] =
|
|
||||||
(byte) (((b2 & 0xf) << 4) | ((b3 >> 2) & 0xf));
|
|
||||||
decodedData[encodedIndex + 2] = (byte) (b3 << 6 | b4);
|
|
||||||
} else if (marker0 == PAD) {
|
|
||||||
//Two PAD e.g. 3c[Pad][Pad]
|
|
||||||
decodedData[encodedIndex] = (byte) (b1 << 2 | b2 >> 4);
|
|
||||||
} else if (marker1 == PAD) {
|
|
||||||
//One PAD e.g. 3cQ[Pad]
|
|
||||||
b3 = base64Alphabet[marker0];
|
|
||||||
|
|
||||||
decodedData[encodedIndex] = (byte) (b1 << 2 | b2 >> 4);
|
|
||||||
decodedData[encodedIndex + 1] =
|
|
||||||
(byte) (((b2 & 0xf) << 4) | ((b3 >> 2) & 0xf));
|
|
||||||
}
|
|
||||||
encodedIndex += 3;
|
|
||||||
}
|
|
||||||
return decodedData;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Check octect wheter it is a base64 encoding.
|
|
||||||
*
|
|
||||||
* @param octect to be checked byte
|
|
||||||
* @return ture if it is base64 encoding, false otherwise.
|
|
||||||
*/
|
|
||||||
private static boolean isBase64(byte octect) {
|
|
||||||
if (octect == PAD) {
|
|
||||||
return true;
|
|
||||||
} else if (base64Alphabet[octect] == -1) {
|
|
||||||
return false;
|
|
||||||
} else {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Discards any characters outside of the base64 alphabet, per
|
|
||||||
* the requirements on page 25 of RFC 2045 - "Any characters
|
|
||||||
* outside of the base64 alphabet are to be ignored in base64
|
|
||||||
* encoded data."
|
|
||||||
*
|
|
||||||
* @param data The base-64 encoded data to groom
|
|
||||||
* @return The data, less non-base64 characters (see RFC 2045).
|
|
||||||
*/
|
|
||||||
static byte[] discardNonBase64(byte[] data) {
|
|
||||||
byte[] groomedData = new byte[data.length];
|
|
||||||
int bytesCopied = 0;
|
|
||||||
|
|
||||||
for (int i = 0; i < data.length; i++) {
|
|
||||||
if (isBase64(data[i])) {
|
|
||||||
groomedData[bytesCopied++] = data[i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
byte[] packedData = new byte[bytesCopied];
|
|
||||||
|
|
||||||
System.arraycopy(groomedData, 0, packedData, 0, bytesCopied);
|
|
||||||
|
|
||||||
return packedData;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,453 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007 Esmertec AG.
|
|
||||||
* Copyright (C) 2007 The Android Open Source Project
|
|
||||||
* Copyright (C) 2024 The LineageOS Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
import androidx.collection.SimpleArrayMap;
|
|
||||||
import android.util.SparseArray;
|
|
||||||
|
|
||||||
import java.io.UnsupportedEncodingException;
|
|
||||||
|
|
||||||
public class CharacterSets {
|
|
||||||
/**
|
|
||||||
* IANA assigned MIB enum numbers.
|
|
||||||
*
|
|
||||||
* From wap-230-wsp-20010705-a.pdf
|
|
||||||
* Any-charset = <Octet 128>
|
|
||||||
* Equivalent to the special RFC2616 charset value "*"
|
|
||||||
*
|
|
||||||
* Link to all the charsets: http://www.iana.org/assignments/character-sets/character-sets.xhtml
|
|
||||||
* Use Charset.availableCharsets() to see if a potential charset is supported in java:
|
|
||||||
* private void dumpCharsets() {
|
|
||||||
* logvv("dumpCharsets");
|
|
||||||
* SortedMap<String, Charset> charsets = Charset.availableCharsets();
|
|
||||||
* for (Entry<String, Charset> entry : charsets.entrySet()) {
|
|
||||||
* String key = entry.getKey();
|
|
||||||
* Charset value = entry.getValue();
|
|
||||||
* logvv("charset key: " + key + " value: " + value);
|
|
||||||
* }
|
|
||||||
* }
|
|
||||||
*
|
|
||||||
* As of March 21, 2014, here is the list from dumpCharsets:
|
|
||||||
* Adobe-Standard-Encoding value: java.nio.charset.CharsetICU[Adobe-Standard-Encoding]
|
|
||||||
* Big5 value: java.nio.charset.CharsetICU[Big5]
|
|
||||||
* Big5-HKSCS value: java.nio.charset.CharsetICU[Big5-HKSCS]
|
|
||||||
* BOCU-1 value: java.nio.charset.CharsetICU[BOCU-1]
|
|
||||||
* CESU-8 value: java.nio.charset.CharsetICU[CESU-8]
|
|
||||||
* cp1363 value: java.nio.charset.CharsetICU[cp1363]
|
|
||||||
* cp851 value: java.nio.charset.CharsetICU[cp851]
|
|
||||||
* cp864 value: java.nio.charset.CharsetICU[cp864]
|
|
||||||
* EUC-JP value: java.nio.charset.CharsetICU[EUC-JP]
|
|
||||||
* EUC-KR value: java.nio.charset.CharsetICU[EUC-KR]
|
|
||||||
* GB18030 value: java.nio.charset.CharsetICU[GB18030]
|
|
||||||
* GBK value: java.nio.charset.CharsetICU[GBK]
|
|
||||||
* hp-roman8 value: java.nio.charset.CharsetICU[hp-roman8]
|
|
||||||
* HZ-GB-2312 value: java.nio.charset.CharsetICU[HZ-GB-2312]
|
|
||||||
* IBM-Thai value: java.nio.charset.CharsetICU[IBM-Thai]
|
|
||||||
* IBM00858 value: java.nio.charset.CharsetICU[IBM00858]
|
|
||||||
* IBM01140 value: java.nio.charset.CharsetICU[IBM01140]
|
|
||||||
* IBM01141 value: java.nio.charset.CharsetICU[IBM01141]
|
|
||||||
* IBM01142 value: java.nio.charset.CharsetICU[IBM01142]
|
|
||||||
* IBM01143 value: java.nio.charset.CharsetICU[IBM01143]
|
|
||||||
* IBM01144 value: java.nio.charset.CharsetICU[IBM01144]
|
|
||||||
* IBM01145 value: java.nio.charset.CharsetICU[IBM01145]
|
|
||||||
* IBM01146 value: java.nio.charset.CharsetICU[IBM01146]
|
|
||||||
* IBM01147 value: java.nio.charset.CharsetICU[IBM01147]
|
|
||||||
* IBM01148 value: java.nio.charset.CharsetICU[IBM01148]
|
|
||||||
* IBM01149 value: java.nio.charset.CharsetICU[IBM01149]
|
|
||||||
* IBM037 value: java.nio.charset.CharsetICU[IBM037]
|
|
||||||
* IBM1026 value: java.nio.charset.CharsetICU[IBM1026]
|
|
||||||
* IBM1047 value: java.nio.charset.CharsetICU[IBM1047]
|
|
||||||
* IBM273 value: java.nio.charset.CharsetICU[IBM273]
|
|
||||||
* IBM277 value: java.nio.charset.CharsetICU[IBM277]
|
|
||||||
* IBM278 value: java.nio.charset.CharsetICU[IBM278]
|
|
||||||
* IBM280 value: java.nio.charset.CharsetICU[IBM280]
|
|
||||||
* IBM284 value: java.nio.charset.CharsetICU[IBM284]
|
|
||||||
* IBM285 value: java.nio.charset.CharsetICU[IBM285]
|
|
||||||
* IBM290 value: java.nio.charset.CharsetICU[IBM290]
|
|
||||||
* IBM297 value: java.nio.charset.CharsetICU[IBM297]
|
|
||||||
* IBM420 value: java.nio.charset.CharsetICU[IBM420]
|
|
||||||
* IBM424 value: java.nio.charset.CharsetICU[IBM424]
|
|
||||||
* IBM437 value: java.nio.charset.CharsetICU[IBM437]
|
|
||||||
* IBM500 value: java.nio.charset.CharsetICU[IBM500]
|
|
||||||
* IBM775 value: java.nio.charset.CharsetICU[IBM775]
|
|
||||||
* IBM850 value: java.nio.charset.CharsetICU[IBM850]
|
|
||||||
* IBM852 value: java.nio.charset.CharsetICU[IBM852]
|
|
||||||
* IBM855 value: java.nio.charset.CharsetICU[IBM855]
|
|
||||||
* IBM857 value: java.nio.charset.CharsetICU[IBM857]
|
|
||||||
* IBM860 value: java.nio.charset.CharsetICU[IBM860]
|
|
||||||
* IBM861 value: java.nio.charset.CharsetICU[IBM861]
|
|
||||||
* IBM862 value: java.nio.charset.CharsetICU[IBM862]
|
|
||||||
* IBM863 value: java.nio.charset.CharsetICU[IBM863]
|
|
||||||
* IBM865 value: java.nio.charset.CharsetICU[IBM865]
|
|
||||||
* IBM866 value: java.nio.charset.CharsetICU[IBM866]
|
|
||||||
* IBM868 value: java.nio.charset.CharsetICU[IBM868]
|
|
||||||
* IBM869 value: java.nio.charset.CharsetICU[IBM869]
|
|
||||||
* IBM870 value: java.nio.charset.CharsetICU[IBM870]
|
|
||||||
* IBM871 value: java.nio.charset.CharsetICU[IBM871]
|
|
||||||
* IBM918 value: java.nio.charset.CharsetICU[IBM918]
|
|
||||||
* ISO-2022-CN value: java.nio.charset.CharsetICU[ISO-2022-CN]
|
|
||||||
* ISO-2022-CN-EXT value: java.nio.charset.CharsetICU[ISO-2022-CN-EXT]
|
|
||||||
* ISO-2022-JP value: java.nio.charset.CharsetICU[ISO-2022-JP]
|
|
||||||
* ISO-2022-JP-1 value: java.nio.charset.CharsetICU[ISO-2022-JP-1]
|
|
||||||
* ISO-2022-JP-2 value: java.nio.charset.CharsetICU[ISO-2022-JP-2]
|
|
||||||
* ISO-2022-KR value: java.nio.charset.CharsetICU[ISO-2022-KR]
|
|
||||||
* ISO-8859-1 value: java.nio.charset.CharsetICU[ISO-8859-1]
|
|
||||||
* ISO-8859-10 value: java.nio.charset.CharsetICU[ISO-8859-10]
|
|
||||||
* ISO-8859-13 value: java.nio.charset.CharsetICU[ISO-8859-13]
|
|
||||||
* ISO-8859-14 value: java.nio.charset.CharsetICU[ISO-8859-14]
|
|
||||||
* ISO-8859-15 value: java.nio.charset.CharsetICU[ISO-8859-15]
|
|
||||||
* ISO-8859-2 value: java.nio.charset.CharsetICU[ISO-8859-2]
|
|
||||||
* ISO-8859-3 value: java.nio.charset.CharsetICU[ISO-8859-3]
|
|
||||||
* ISO-8859-4 value: java.nio.charset.CharsetICU[ISO-8859-4]
|
|
||||||
* ISO-8859-5 value: java.nio.charset.CharsetICU[ISO-8859-5]
|
|
||||||
* ISO-8859-6 value: java.nio.charset.CharsetICU[ISO-8859-6]
|
|
||||||
* ISO-8859-7 value: java.nio.charset.CharsetICU[ISO-8859-7]
|
|
||||||
* ISO-8859-8 value: java.nio.charset.CharsetICU[ISO-8859-8]
|
|
||||||
* ISO-8859-9 value: java.nio.charset.CharsetICU[ISO-8859-9]
|
|
||||||
* KOI8-R value: java.nio.charset.CharsetICU[KOI8-R]
|
|
||||||
* KOI8-U value: java.nio.charset.CharsetICU[KOI8-U]
|
|
||||||
* macintosh value: java.nio.charset.CharsetICU[macintosh]
|
|
||||||
* SCSU value: java.nio.charset.CharsetICU[SCSU]
|
|
||||||
* Shift_JIS value: java.nio.charset.CharsetICU[Shift_JIS]
|
|
||||||
* TIS-620 value: java.nio.charset.CharsetICU[TIS-620]
|
|
||||||
* US-ASCII value: java.nio.charset.CharsetICU[US-ASCII]
|
|
||||||
* UTF-16 value: java.nio.charset.CharsetICU[UTF-16]
|
|
||||||
* UTF-16BE value: java.nio.charset.CharsetICU[UTF-16BE]
|
|
||||||
* UTF-16LE value: java.nio.charset.CharsetICU[UTF-16LE]
|
|
||||||
* UTF-32 value: java.nio.charset.CharsetICU[UTF-32]
|
|
||||||
* UTF-32BE value: java.nio.charset.CharsetICU[UTF-32BE]
|
|
||||||
* UTF-32LE value: java.nio.charset.CharsetICU[UTF-32LE]
|
|
||||||
* UTF-7 value: java.nio.charset.CharsetICU[UTF-7]
|
|
||||||
* UTF-8 value: java.nio.charset.CharsetICU[UTF-8]
|
|
||||||
* windows-1250 value: java.nio.charset.CharsetICU[windows-1250]
|
|
||||||
* windows-1251 value: java.nio.charset.CharsetICU[windows-1251]
|
|
||||||
* windows-1252 value: java.nio.charset.CharsetICU[windows-1252]
|
|
||||||
* windows-1253 value: java.nio.charset.CharsetICU[windows-1253]
|
|
||||||
* windows-1254 value: java.nio.charset.CharsetICU[windows-1254]
|
|
||||||
* windows-1255 value: java.nio.charset.CharsetICU[windows-1255]
|
|
||||||
* windows-1256 value: java.nio.charset.CharsetICU[windows-1256]
|
|
||||||
* windows-1257 value: java.nio.charset.CharsetICU[windows-1257]
|
|
||||||
* windows-1258 value: java.nio.charset.CharsetICU[windows-1258]
|
|
||||||
* x-compound-text value: java.nio.charset.CharsetICU[x-compound-text]
|
|
||||||
* x-ebcdic-xml-us value: java.nio.charset.CharsetICU[x-ebcdic-xml-us]
|
|
||||||
* x-gsm-03.38-2000 value: java.nio.charset.CharsetICU[x-gsm-03.38-2000]
|
|
||||||
* x-ibm-1047-s390 value: java.nio.charset.CharsetICU[x-ibm-1047-s390]
|
|
||||||
* x-ibm-1125_P100-1997 value: java.nio.charset.CharsetICU[x-ibm-1125_P100-1997]
|
|
||||||
* x-ibm-1129_P100-1997 value: java.nio.charset.CharsetICU[x-ibm-1129_P100-1997]
|
|
||||||
* x-ibm-1130_P100-1997 value: java.nio.charset.CharsetICU[x-ibm-1130_P100-1997]
|
|
||||||
* x-ibm-1131_P100-1997 value: java.nio.charset.CharsetICU[x-ibm-1131_P100-1997]
|
|
||||||
* x-ibm-1132_P100-1998 value: java.nio.charset.CharsetICU[x-ibm-1132_P100-1998]
|
|
||||||
* x-ibm-1133_P100-1997 value: java.nio.charset.CharsetICU[x-ibm-1133_P100-1997]
|
|
||||||
* x-ibm-1137_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-1137_P100-1999]
|
|
||||||
* x-ibm-1140-s390 value: java.nio.charset.CharsetICU[x-ibm-1140-s390]
|
|
||||||
* x-ibm-1141-s390 value: java.nio.charset.CharsetICU[x-ibm-1141-s390]
|
|
||||||
* x-ibm-1142-s390 value: java.nio.charset.CharsetICU[x-ibm-1142-s390]
|
|
||||||
* x-ibm-1143-s390 value: java.nio.charset.CharsetICU[x-ibm-1143-s390]
|
|
||||||
* x-ibm-1144-s390 value: java.nio.charset.CharsetICU[x-ibm-1144-s390]
|
|
||||||
* x-ibm-1145-s390 value: java.nio.charset.CharsetICU[x-ibm-1145-s390]
|
|
||||||
* x-ibm-1146-s390 value: java.nio.charset.CharsetICU[x-ibm-1146-s390]
|
|
||||||
* x-ibm-1147-s390 value: java.nio.charset.CharsetICU[x-ibm-1147-s390]
|
|
||||||
* x-ibm-1148-s390 value: java.nio.charset.CharsetICU[x-ibm-1148-s390]
|
|
||||||
* x-ibm-1149-s390 value: java.nio.charset.CharsetICU[x-ibm-1149-s390]
|
|
||||||
* x-ibm-1153-s390 value: java.nio.charset.CharsetICU[x-ibm-1153-s390]
|
|
||||||
* x-ibm-1154_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-1154_P100-1999]
|
|
||||||
* x-ibm-1155_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-1155_P100-1999]
|
|
||||||
* x-ibm-1156_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-1156_P100-1999]
|
|
||||||
* x-ibm-1157_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-1157_P100-1999]
|
|
||||||
* x-ibm-1158_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-1158_P100-1999]
|
|
||||||
* x-ibm-1160_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-1160_P100-1999]
|
|
||||||
* x-ibm-1162_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-1162_P100-1999]
|
|
||||||
* x-ibm-1164_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-1164_P100-1999]
|
|
||||||
* x-ibm-1250_P100-1995 value: java.nio.charset.CharsetICU[x-ibm-1250_P100-1995]
|
|
||||||
* x-ibm-1251_P100-1995 value: java.nio.charset.CharsetICU[x-ibm-1251_P100-1995]
|
|
||||||
* x-ibm-1252_P100-2000 value: java.nio.charset.CharsetICU[x-ibm-1252_P100-2000]
|
|
||||||
* x-ibm-1253_P100-1995 value: java.nio.charset.CharsetICU[x-ibm-1253_P100-1995]
|
|
||||||
* x-ibm-1254_P100-1995 value: java.nio.charset.CharsetICU[x-ibm-1254_P100-1995]
|
|
||||||
* x-ibm-1255_P100-1995 value: java.nio.charset.CharsetICU[x-ibm-1255_P100-1995]
|
|
||||||
* x-ibm-1256_P110-1997 value: java.nio.charset.CharsetICU[x-ibm-1256_P110-1997]
|
|
||||||
* x-ibm-1257_P100-1995 value: java.nio.charset.CharsetICU[x-ibm-1257_P100-1995]
|
|
||||||
* x-ibm-1258_P100-1997 value: java.nio.charset.CharsetICU[x-ibm-1258_P100-1997]
|
|
||||||
* x-ibm-12712-s390 value: java.nio.charset.CharsetICU[x-ibm-12712-s390]
|
|
||||||
* x-ibm-12712_P100-1998 value: java.nio.charset.CharsetICU[x-ibm-12712_P100-1998]
|
|
||||||
* x-ibm-1373_P100-2002 value: java.nio.charset.CharsetICU[x-ibm-1373_P100-2002]
|
|
||||||
* x-ibm-1383_P110-1999 value: java.nio.charset.CharsetICU[x-ibm-1383_P110-1999]
|
|
||||||
* x-ibm-1386_P100-2001 value: java.nio.charset.CharsetICU[x-ibm-1386_P100-2001]
|
|
||||||
* x-ibm-16684_P110-2003 value: java.nio.charset.CharsetICU[x-ibm-16684_P110-2003]
|
|
||||||
* x-ibm-16804-s390 value: java.nio.charset.CharsetICU[x-ibm-16804-s390]
|
|
||||||
* x-ibm-16804_X110-1999 value: java.nio.charset.CharsetICU[x-ibm-16804_X110-1999]
|
|
||||||
* x-ibm-25546 value: java.nio.charset.CharsetICU[x-ibm-25546]
|
|
||||||
* x-ibm-33722_P12A_P12A-2009_U2 value:
|
|
||||||
* java.nio.charset.CharsetICU[x-ibm-33722_P12A_P12A-2009_U2]
|
|
||||||
* x-ibm-37-s390 value: java.nio.charset.CharsetICU[x-ibm-37-s390]
|
|
||||||
* x-ibm-4517_P100-2005 value: java.nio.charset.CharsetICU[x-ibm-4517_P100-2005]
|
|
||||||
* x-ibm-4899_P100-1998 value: java.nio.charset.CharsetICU[x-ibm-4899_P100-1998]
|
|
||||||
* x-ibm-4909_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-4909_P100-1999]
|
|
||||||
* x-ibm-4971_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-4971_P100-1999]
|
|
||||||
* x-ibm-5123_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-5123_P100-1999]
|
|
||||||
* x-ibm-5351_P100-1998 value: java.nio.charset.CharsetICU[x-ibm-5351_P100-1998]
|
|
||||||
* x-ibm-5352_P100-1998 value: java.nio.charset.CharsetICU[x-ibm-5352_P100-1998]
|
|
||||||
* x-ibm-5353_P100-1998 value: java.nio.charset.CharsetICU[x-ibm-5353_P100-1998]
|
|
||||||
* x-ibm-5478_P100-1995 value: java.nio.charset.CharsetICU[x-ibm-5478_P100-1995]
|
|
||||||
* x-ibm-803_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-803_P100-1999]
|
|
||||||
* x-ibm-813_P100-1995 value: java.nio.charset.CharsetICU[x-ibm-813_P100-1995]
|
|
||||||
* x-ibm-8482_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-8482_P100-1999]
|
|
||||||
* x-ibm-901_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-901_P100-1999]
|
|
||||||
* x-ibm-902_P100-1999 value: java.nio.charset.CharsetICU[x-ibm-902_P100-1999]
|
|
||||||
* x-ibm-9067_X100-2005 value: java.nio.charset.CharsetICU[x-ibm-9067_X100-2005]
|
|
||||||
* x-ibm-916_P100-1995 value: java.nio.charset.CharsetICU[x-ibm-916_P100-1995]
|
|
||||||
* x-IBM1006 value: java.nio.charset.CharsetICU[x-IBM1006]
|
|
||||||
* x-IBM1025 value: java.nio.charset.CharsetICU[x-IBM1025]
|
|
||||||
* x-IBM1097 value: java.nio.charset.CharsetICU[x-IBM1097]
|
|
||||||
* x-IBM1098 value: java.nio.charset.CharsetICU[x-IBM1098]
|
|
||||||
* x-IBM1112 value: java.nio.charset.CharsetICU[x-IBM1112]
|
|
||||||
* x-IBM1122 value: java.nio.charset.CharsetICU[x-IBM1122]
|
|
||||||
* x-IBM1123 value: java.nio.charset.CharsetICU[x-IBM1123]
|
|
||||||
* x-IBM1124 value: java.nio.charset.CharsetICU[x-IBM1124]
|
|
||||||
* x-IBM1153 value: java.nio.charset.CharsetICU[x-IBM1153]
|
|
||||||
* x-IBM1363 value: java.nio.charset.CharsetICU[x-IBM1363]
|
|
||||||
* x-IBM1364 value: java.nio.charset.CharsetICU[x-IBM1364]
|
|
||||||
* x-IBM1371 value: java.nio.charset.CharsetICU[x-IBM1371]
|
|
||||||
* x-IBM1388 value: java.nio.charset.CharsetICU[x-IBM1388]
|
|
||||||
* x-IBM1390 value: java.nio.charset.CharsetICU[x-IBM1390]
|
|
||||||
* x-IBM1399 value: java.nio.charset.CharsetICU[x-IBM1399]
|
|
||||||
* x-IBM33722 value: java.nio.charset.CharsetICU[x-IBM33722]
|
|
||||||
* x-IBM720 value: java.nio.charset.CharsetICU[x-IBM720]
|
|
||||||
* x-IBM737 value: java.nio.charset.CharsetICU[x-IBM737]
|
|
||||||
* x-IBM856 value: java.nio.charset.CharsetICU[x-IBM856]
|
|
||||||
* x-IBM867 value: java.nio.charset.CharsetICU[x-IBM867]
|
|
||||||
* x-IBM875 value: java.nio.charset.CharsetICU[x-IBM875]
|
|
||||||
* x-IBM922 value: java.nio.charset.CharsetICU[x-IBM922]
|
|
||||||
* x-IBM930 value: java.nio.charset.CharsetICU[x-IBM930]
|
|
||||||
* x-IBM933 value: java.nio.charset.CharsetICU[x-IBM933]
|
|
||||||
* x-IBM935 value: java.nio.charset.CharsetICU[x-IBM935]
|
|
||||||
* x-IBM937 value: java.nio.charset.CharsetICU[x-IBM937]
|
|
||||||
* x-IBM939 value: java.nio.charset.CharsetICU[x-IBM939]
|
|
||||||
* x-IBM942 value: java.nio.charset.CharsetICU[x-IBM942]
|
|
||||||
* x-IBM943 value: java.nio.charset.CharsetICU[x-IBM943]
|
|
||||||
* x-IBM949 value: java.nio.charset.CharsetICU[x-IBM949]
|
|
||||||
* x-IBM949C value: java.nio.charset.CharsetICU[x-IBM949C]
|
|
||||||
* x-IBM950 value: java.nio.charset.CharsetICU[x-IBM950]
|
|
||||||
* x-IBM954 value: java.nio.charset.CharsetICU[x-IBM954]
|
|
||||||
* x-IBM964 value: java.nio.charset.CharsetICU[x-IBM964]
|
|
||||||
* x-IBM970 value: java.nio.charset.CharsetICU[x-IBM970]
|
|
||||||
* x-IBM971 value: java.nio.charset.CharsetICU[x-IBM971]
|
|
||||||
* x-IMAP-mailbox-name value: java.nio.charset.CharsetICU[x-IMAP-mailbox-name]
|
|
||||||
* x-iscii-be value: java.nio.charset.CharsetICU[x-iscii-be]
|
|
||||||
* x-iscii-gu value: java.nio.charset.CharsetICU[x-iscii-gu]
|
|
||||||
* x-iscii-ka value: java.nio.charset.CharsetICU[x-iscii-ka]
|
|
||||||
* x-iscii-ma value: java.nio.charset.CharsetICU[x-iscii-ma]
|
|
||||||
* x-iscii-or value: java.nio.charset.CharsetICU[x-iscii-or]
|
|
||||||
* x-iscii-pa value: java.nio.charset.CharsetICU[x-iscii-pa]
|
|
||||||
* x-iscii-ta value: java.nio.charset.CharsetICU[x-iscii-ta]
|
|
||||||
* x-iscii-te value: java.nio.charset.CharsetICU[x-iscii-te]
|
|
||||||
* x-ISCII91 value: java.nio.charset.CharsetICU[x-ISCII91]
|
|
||||||
* x-ISO-2022-CN-CNS value: java.nio.charset.CharsetICU[x-ISO-2022-CN-CNS]
|
|
||||||
* x-iso-8859-11 value: java.nio.charset.CharsetICU[x-iso-8859-11]
|
|
||||||
* x-JavaUnicode value: java.nio.charset.CharsetICU[x-JavaUnicode]
|
|
||||||
* x-JavaUnicode2 value: java.nio.charset.CharsetICU[x-JavaUnicode2]
|
|
||||||
* x-JIS7 value: java.nio.charset.CharsetICU[x-JIS7]
|
|
||||||
* x-JIS8 value: java.nio.charset.CharsetICU[x-JIS8]
|
|
||||||
* x-LMBCS-1 value: java.nio.charset.CharsetICU[x-LMBCS-1]
|
|
||||||
* x-mac-centraleurroman value: java.nio.charset.CharsetICU[x-mac-centraleurroman]
|
|
||||||
* x-mac-cyrillic value: java.nio.charset.CharsetICU[x-mac-cyrillic]
|
|
||||||
* x-mac-greek value: java.nio.charset.CharsetICU[x-mac-greek]
|
|
||||||
* x-mac-turkish value: java.nio.charset.CharsetICU[x-mac-turkish]
|
|
||||||
* x-MS950-HKSCS value: java.nio.charset.CharsetICU[x-MS950-HKSCS]
|
|
||||||
* x-UnicodeBig value: java.nio.charset.CharsetICU[x-UnicodeBig]
|
|
||||||
* x-UTF-16LE-BOM value: java.nio.charset.CharsetICU[x-UTF-16LE-BOM]
|
|
||||||
* x-UTF16_OppositeEndian value: java.nio.charset.CharsetICU[x-UTF16_OppositeEndian]
|
|
||||||
* x-UTF16_PlatformEndian value: java.nio.charset.CharsetICU[x-UTF16_PlatformEndian]
|
|
||||||
* x-UTF32_OppositeEndian value: java.nio.charset.CharsetICU[x-UTF32_OppositeEndian]
|
|
||||||
* x-UTF32_PlatformEndian value: java.nio.charset.CharsetICU[x-UTF32_PlatformEndian]
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public static final int ANY_CHARSET = 0x00;
|
|
||||||
public static final int US_ASCII = 0x03;
|
|
||||||
public static final int ISO_8859_1 = 0x04;
|
|
||||||
public static final int ISO_8859_2 = 0x05;
|
|
||||||
public static final int ISO_8859_3 = 0x06;
|
|
||||||
public static final int ISO_8859_4 = 0x07;
|
|
||||||
public static final int ISO_8859_5 = 0x08;
|
|
||||||
public static final int ISO_8859_6 = 0x09;
|
|
||||||
public static final int ISO_8859_7 = 0x0A;
|
|
||||||
public static final int ISO_8859_8 = 0x0B;
|
|
||||||
public static final int ISO_8859_9 = 0x0C;
|
|
||||||
public static final int SHIFT_JIS = 0x11;
|
|
||||||
public static final int EUC_JP = 0x12;
|
|
||||||
public static final int EUC_KR = 0x26;
|
|
||||||
public static final int ISO_2022_JP = 0x27;
|
|
||||||
public static final int ISO_2022_JP_2 = 0x28;
|
|
||||||
public static final int UTF_8 = 0x6A;
|
|
||||||
public static final int GBK = 0x71;
|
|
||||||
public static final int GB18030 = 0x72;
|
|
||||||
public static final int GB2312 = 0x07E9;
|
|
||||||
public static final int BIG5 = 0x07EA;
|
|
||||||
public static final int UCS2 = 0x03E8;
|
|
||||||
public static final int UTF_16 = 0x03F7;
|
|
||||||
public static final int HZ_GB_2312 = 0x0825;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* If the encoding of given data is unsupported, use UTF_8 to decode it.
|
|
||||||
*/
|
|
||||||
public static final int DEFAULT_CHARSET = UTF_8;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Array of MIB enum numbers.
|
|
||||||
*/
|
|
||||||
private static final int[] MIBENUM_NUMBERS = {
|
|
||||||
ANY_CHARSET,
|
|
||||||
US_ASCII,
|
|
||||||
ISO_8859_1,
|
|
||||||
ISO_8859_2,
|
|
||||||
ISO_8859_3,
|
|
||||||
ISO_8859_4,
|
|
||||||
ISO_8859_5,
|
|
||||||
ISO_8859_6,
|
|
||||||
ISO_8859_7,
|
|
||||||
ISO_8859_8,
|
|
||||||
ISO_8859_9,
|
|
||||||
SHIFT_JIS,
|
|
||||||
EUC_JP,
|
|
||||||
EUC_KR,
|
|
||||||
ISO_2022_JP,
|
|
||||||
ISO_2022_JP_2,
|
|
||||||
UTF_8,
|
|
||||||
GBK,
|
|
||||||
GB18030,
|
|
||||||
GB2312,
|
|
||||||
BIG5,
|
|
||||||
UCS2,
|
|
||||||
UTF_16,
|
|
||||||
HZ_GB_2312,
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The Well-known-charset Mime name.
|
|
||||||
*/
|
|
||||||
public static final String MIMENAME_ANY_CHARSET = "*";
|
|
||||||
public static final String MIMENAME_US_ASCII = "us-ascii";
|
|
||||||
public static final String MIMENAME_ISO_8859_1 = "iso-8859-1";
|
|
||||||
public static final String MIMENAME_ISO_8859_2 = "iso-8859-2";
|
|
||||||
public static final String MIMENAME_ISO_8859_3 = "iso-8859-3";
|
|
||||||
public static final String MIMENAME_ISO_8859_4 = "iso-8859-4";
|
|
||||||
public static final String MIMENAME_ISO_8859_5 = "iso-8859-5";
|
|
||||||
public static final String MIMENAME_ISO_8859_6 = "iso-8859-6";
|
|
||||||
public static final String MIMENAME_ISO_8859_7 = "iso-8859-7";
|
|
||||||
public static final String MIMENAME_ISO_8859_8 = "iso-8859-8";
|
|
||||||
public static final String MIMENAME_ISO_8859_9 = "iso-8859-9";
|
|
||||||
public static final String MIMENAME_SHIFT_JIS = "shift_JIS";
|
|
||||||
public static final String MIMENAME_EUC_JP = "euc-jp";
|
|
||||||
public static final String MIMENAME_EUC_KR = "euc-kr";
|
|
||||||
public static final String MIMENAME_ISO_2022_JP = "iso-2022-jp";
|
|
||||||
public static final String MIMENAME_ISO_2022_JP_2 = "iso-2022-jp-2";
|
|
||||||
public static final String MIMENAME_UTF_8 = "utf-8";
|
|
||||||
public static final String MIMENAME_GBK = "gbk";
|
|
||||||
public static final String MIMENAME_GB18030 = "gb18030";
|
|
||||||
public static final String MIMENAME_GB2312 = "gb2312";
|
|
||||||
public static final String MIMENAME_BIG5 = "big5";
|
|
||||||
public static final String MIMENAME_UCS2 = "iso-10646-ucs-2";
|
|
||||||
public static final String MIMENAME_UTF_16 = "utf-16";
|
|
||||||
public static final String MIMENAME_HZ_GB_2312 = "hz-gb-2312";
|
|
||||||
|
|
||||||
public static final String DEFAULT_CHARSET_NAME = MIMENAME_UTF_8;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Array of the names of character sets.
|
|
||||||
*/
|
|
||||||
private static final String[] MIME_NAMES = {
|
|
||||||
MIMENAME_ANY_CHARSET,
|
|
||||||
MIMENAME_US_ASCII,
|
|
||||||
MIMENAME_ISO_8859_1,
|
|
||||||
MIMENAME_ISO_8859_2,
|
|
||||||
MIMENAME_ISO_8859_3,
|
|
||||||
MIMENAME_ISO_8859_4,
|
|
||||||
MIMENAME_ISO_8859_5,
|
|
||||||
MIMENAME_ISO_8859_6,
|
|
||||||
MIMENAME_ISO_8859_7,
|
|
||||||
MIMENAME_ISO_8859_8,
|
|
||||||
MIMENAME_ISO_8859_9,
|
|
||||||
MIMENAME_SHIFT_JIS,
|
|
||||||
MIMENAME_EUC_JP,
|
|
||||||
MIMENAME_EUC_KR,
|
|
||||||
MIMENAME_ISO_2022_JP,
|
|
||||||
MIMENAME_ISO_2022_JP_2,
|
|
||||||
MIMENAME_UTF_8,
|
|
||||||
MIMENAME_GBK,
|
|
||||||
MIMENAME_GB18030,
|
|
||||||
MIMENAME_GB2312,
|
|
||||||
MIMENAME_BIG5,
|
|
||||||
MIMENAME_UCS2,
|
|
||||||
MIMENAME_UTF_16,
|
|
||||||
MIMENAME_HZ_GB_2312,
|
|
||||||
};
|
|
||||||
|
|
||||||
private static final SparseArray<String> MIBENUM_TO_NAME_MAP;
|
|
||||||
|
|
||||||
private static final SimpleArrayMap<String, Integer> NAME_TO_MIBENUM_MAP;
|
|
||||||
|
|
||||||
static {
|
|
||||||
// Create the HashMaps.
|
|
||||||
MIBENUM_TO_NAME_MAP = new SparseArray<>();
|
|
||||||
NAME_TO_MIBENUM_MAP = new SimpleArrayMap<>();
|
|
||||||
assert (MIBENUM_NUMBERS.length == MIME_NAMES.length);
|
|
||||||
final int count = MIBENUM_NUMBERS.length - 1;
|
|
||||||
for (int i = 0; i <= count; i++) {
|
|
||||||
MIBENUM_TO_NAME_MAP.put(MIBENUM_NUMBERS[i], MIME_NAMES[i]);
|
|
||||||
NAME_TO_MIBENUM_MAP.put(MIME_NAMES[i], MIBENUM_NUMBERS[i]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private CharacterSets() {
|
|
||||||
} // Non-instantiatable
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Map an MIBEnum number to the name of the charset which this number
|
|
||||||
* is assigned to by IANA.
|
|
||||||
*
|
|
||||||
* @param mibEnumValue An IANA assigned MIBEnum number.
|
|
||||||
* @return The name string of the charset.
|
|
||||||
*/
|
|
||||||
public static String getMimeName(final int mibEnumValue)
|
|
||||||
throws UnsupportedEncodingException {
|
|
||||||
final String name = MIBENUM_TO_NAME_MAP.get(mibEnumValue);
|
|
||||||
if (name == null) {
|
|
||||||
throw new UnsupportedEncodingException();
|
|
||||||
}
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Map a well-known charset name to its assigned MIBEnum number.
|
|
||||||
*
|
|
||||||
* @param mimeName The charset name.
|
|
||||||
* @return The MIBEnum number assigned by IANA for this charset.
|
|
||||||
*/
|
|
||||||
public static int getMibEnumValue(final String mimeName)
|
|
||||||
throws UnsupportedEncodingException {
|
|
||||||
if (null == mimeName) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
final Integer mibEnumValue = NAME_TO_MIBENUM_MAP.get(mimeName);
|
|
||||||
if (mibEnumValue == null) {
|
|
||||||
throw new UnsupportedEncodingException();
|
|
||||||
}
|
|
||||||
return mibEnumValue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,138 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007 Esmertec AG.
|
|
||||||
* Copyright (C) 2007 The Android Open Source Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
import com.android.messaging.mmslib.InvalidHeaderValueException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* M-Delivery.Ind Pdu.
|
|
||||||
*/
|
|
||||||
public class DeliveryInd extends GenericPdu {
|
|
||||||
/**
|
|
||||||
* Empty constructor.
|
|
||||||
* Since the Pdu corresponding to this class is constructed
|
|
||||||
* by the Proxy-Relay server, this class is only instantiated
|
|
||||||
* by the Pdu Parser.
|
|
||||||
*
|
|
||||||
* @throws InvalidHeaderValueException if error occurs.
|
|
||||||
*/
|
|
||||||
public DeliveryInd() throws InvalidHeaderValueException {
|
|
||||||
super();
|
|
||||||
setMessageType(PduHeaders.MESSAGE_TYPE_DELIVERY_IND);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor with given headers.
|
|
||||||
*
|
|
||||||
* @param headers Headers for this PDU.
|
|
||||||
*/
|
|
||||||
DeliveryInd(PduHeaders headers) {
|
|
||||||
super(headers);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Date value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public long getDate() {
|
|
||||||
return mPduHeaders.getLongInteger(PduHeaders.DATE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Date value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
*/
|
|
||||||
public void setDate(long value) {
|
|
||||||
mPduHeaders.setLongInteger(value, PduHeaders.DATE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Message-ID value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public byte[] getMessageId() {
|
|
||||||
return mPduHeaders.getTextString(PduHeaders.MESSAGE_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Message-ID value.
|
|
||||||
*
|
|
||||||
* @param value the value, should not be null
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setMessageId(byte[] value) {
|
|
||||||
mPduHeaders.setTextString(value, PduHeaders.MESSAGE_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Status value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public int getStatus() {
|
|
||||||
return mPduHeaders.getOctet(PduHeaders.STATUS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Status value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
|
||||||
*/
|
|
||||||
public void setStatus(int value) throws InvalidHeaderValueException {
|
|
||||||
mPduHeaders.setOctet(value, PduHeaders.STATUS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get To value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public EncodedStringValue[] getTo() {
|
|
||||||
return mPduHeaders.getEncodedStringValues(PduHeaders.TO);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* set To value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setTo(EncodedStringValue[] value) {
|
|
||||||
mPduHeaders.setEncodedStringValues(value, PduHeaders.TO);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Optional, not supported header fields:
|
|
||||||
*
|
|
||||||
* public byte[] getApplicId() {return null;}
|
|
||||||
* public void setApplicId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getAuxApplicId() {return null;}
|
|
||||||
* public void getAuxApplicId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getReplyApplicId() {return 0x00;}
|
|
||||||
* public void setReplyApplicId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public EncodedStringValue getStatusText() {return null;}
|
|
||||||
* public void setStatusText(EncodedStringValue value) {}
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
@@ -1,259 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007-2008 Esmertec AG.
|
|
||||||
* Copyright (C) 2007-2008 The Android Open Source Project
|
|
||||||
* Copyright (C) 2024 The LineageOS Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
import android.util.Log;
|
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
|
||||||
|
|
||||||
import java.io.ByteArrayOutputStream;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.UnsupportedEncodingException;
|
|
||||||
import java.nio.charset.StandardCharsets;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Encoded-string-value = Text-string | Value-length Char-set Text-string
|
|
||||||
*/
|
|
||||||
public class EncodedStringValue implements Cloneable {
|
|
||||||
private static final String TAG = "EncodedStringValue";
|
|
||||||
private static final boolean DEBUG = false;
|
|
||||||
private static final boolean LOCAL_LOGV = false;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The Char-set value.
|
|
||||||
*/
|
|
||||||
private int mCharacterSet;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The Text-string value.
|
|
||||||
*/
|
|
||||||
private byte[] mData;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor.
|
|
||||||
*
|
|
||||||
* @param charset the Char-set value
|
|
||||||
* @param data the Text-string value
|
|
||||||
* @throws NullPointerException if Text-string value is null.
|
|
||||||
*/
|
|
||||||
public EncodedStringValue(int charset, byte[] data) {
|
|
||||||
// TODO: CharSet needs to be validated against MIBEnum.
|
|
||||||
if (null == data) {
|
|
||||||
throw new NullPointerException("EncodedStringValue: Text-string is null.");
|
|
||||||
}
|
|
||||||
|
|
||||||
mCharacterSet = charset;
|
|
||||||
mData = new byte[data.length];
|
|
||||||
System.arraycopy(data, 0, mData, 0, data.length);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor.
|
|
||||||
*
|
|
||||||
* @param data the Text-string value
|
|
||||||
* @throws NullPointerException if Text-string value is null.
|
|
||||||
*/
|
|
||||||
public EncodedStringValue(byte[] data) {
|
|
||||||
this(CharacterSets.DEFAULT_CHARSET, data);
|
|
||||||
}
|
|
||||||
|
|
||||||
public EncodedStringValue(String data) {
|
|
||||||
this(CharacterSets.DEFAULT_CHARSET, data);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor
|
|
||||||
*
|
|
||||||
* @param data The text in Java String
|
|
||||||
* @throws NullPointerException if Text-string value is null.
|
|
||||||
*/
|
|
||||||
public EncodedStringValue(int charset, String data) {
|
|
||||||
if (null == data) {
|
|
||||||
throw new NullPointerException("EncodedStringValue: Text-string is null");
|
|
||||||
}
|
|
||||||
mCharacterSet = charset;
|
|
||||||
try {
|
|
||||||
mData = data.getBytes(CharacterSets.getMimeName(charset));
|
|
||||||
} catch (UnsupportedEncodingException e) {
|
|
||||||
Log.e(TAG, "Input encoding " + charset + " must be supported.", e);
|
|
||||||
mData = data.getBytes();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Char-set value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public int getCharacterSet() {
|
|
||||||
return mCharacterSet;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Char-set value.
|
|
||||||
*
|
|
||||||
* @param charset the Char-set value
|
|
||||||
*/
|
|
||||||
public void setCharacterSet(int charset) {
|
|
||||||
// TODO: CharSet needs to be validated against MIBEnum.
|
|
||||||
mCharacterSet = charset;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Text-string value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public byte[] getTextString() {
|
|
||||||
byte[] byteArray = new byte[mData.length];
|
|
||||||
|
|
||||||
System.arraycopy(mData, 0, byteArray, 0, mData.length);
|
|
||||||
return byteArray;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Text-string value.
|
|
||||||
*
|
|
||||||
* @param textString the Text-string value
|
|
||||||
* @throws NullPointerException if Text-string value is null.
|
|
||||||
*/
|
|
||||||
public void setTextString(byte[] textString) {
|
|
||||||
if (null == textString) {
|
|
||||||
throw new NullPointerException("EncodedStringValue: Text-string is null.");
|
|
||||||
}
|
|
||||||
|
|
||||||
mData = new byte[textString.length];
|
|
||||||
System.arraycopy(textString, 0, mData, 0, textString.length);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convert this object to a {@link java.lang.String}. If the encoding of
|
|
||||||
* the EncodedStringValue is null or unsupported, it will be
|
|
||||||
* treated as iso-8859-1 encoding.
|
|
||||||
*
|
|
||||||
* @return The decoded String.
|
|
||||||
*/
|
|
||||||
public String getString() {
|
|
||||||
if (CharacterSets.ANY_CHARSET == mCharacterSet) {
|
|
||||||
return new String(mData); // system default encoding.
|
|
||||||
} else {
|
|
||||||
try {
|
|
||||||
String name = CharacterSets.getMimeName(mCharacterSet);
|
|
||||||
return new String(mData, name);
|
|
||||||
} catch (UnsupportedEncodingException e) {
|
|
||||||
if (LOCAL_LOGV) {
|
|
||||||
Log.v(TAG, e.getMessage(), e);
|
|
||||||
}
|
|
||||||
return new String(mData, StandardCharsets.ISO_8859_1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Append to Text-string.
|
|
||||||
*
|
|
||||||
* @param textString the textString to append
|
|
||||||
* @throws NullPointerException if the text String is null
|
|
||||||
* or an IOException occured.
|
|
||||||
*/
|
|
||||||
public void appendTextString(byte[] textString) {
|
|
||||||
if (null == textString) {
|
|
||||||
throw new NullPointerException("Text-string is null.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (null == mData) {
|
|
||||||
mData = new byte[textString.length];
|
|
||||||
System.arraycopy(textString, 0, mData, 0, textString.length);
|
|
||||||
} else {
|
|
||||||
ByteArrayOutputStream newTextString = new ByteArrayOutputStream();
|
|
||||||
try {
|
|
||||||
newTextString.write(mData);
|
|
||||||
newTextString.write(textString);
|
|
||||||
} catch (IOException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
throw new NullPointerException(
|
|
||||||
"appendTextString: failed when write a new Text-string");
|
|
||||||
}
|
|
||||||
|
|
||||||
mData = newTextString.toByteArray();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* (non-Javadoc)
|
|
||||||
* @see java.lang.Object#clone()
|
|
||||||
*/
|
|
||||||
@NonNull
|
|
||||||
@Override
|
|
||||||
public Object clone() throws CloneNotSupportedException {
|
|
||||||
int len = mData.length;
|
|
||||||
byte[] dstBytes = new byte[len];
|
|
||||||
System.arraycopy(mData, 0, dstBytes, 0, len);
|
|
||||||
|
|
||||||
try {
|
|
||||||
return new EncodedStringValue(mCharacterSet, dstBytes);
|
|
||||||
} catch (Exception e) {
|
|
||||||
Log.e(TAG, "failed to clone an EncodedStringValue: " + this);
|
|
||||||
e.printStackTrace();
|
|
||||||
throw new CloneNotSupportedException(e.getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Split this encoded string around matches of the given pattern.
|
|
||||||
*
|
|
||||||
* @param pattern the delimiting pattern
|
|
||||||
* @return the array of encoded strings computed by splitting this encoded
|
|
||||||
* string around matches of the given pattern
|
|
||||||
*/
|
|
||||||
public EncodedStringValue[] split(String pattern) {
|
|
||||||
String[] temp = getString().split(pattern);
|
|
||||||
EncodedStringValue[] ret = new EncodedStringValue[temp.length];
|
|
||||||
for (int i = 0; i < ret.length; ++i) {
|
|
||||||
try {
|
|
||||||
ret[i] = new EncodedStringValue(mCharacterSet,
|
|
||||||
temp[i].getBytes());
|
|
||||||
} catch (NullPointerException exception) {
|
|
||||||
// Can't arrive here
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static EncodedStringValue copy(EncodedStringValue value) {
|
|
||||||
if (value == null) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return new EncodedStringValue(value.mCharacterSet, value.mData);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static EncodedStringValue[] encodeStrings(String[] array) {
|
|
||||||
int count = array.length;
|
|
||||||
if (count > 0) {
|
|
||||||
EncodedStringValue[] encodedArray = new EncodedStringValue[count];
|
|
||||||
for (int i = 0; i < count; i++) {
|
|
||||||
encodedArray[i] = new EncodedStringValue(array[i]);
|
|
||||||
}
|
|
||||||
return encodedArray;
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,113 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007 Esmertec AG.
|
|
||||||
* Copyright (C) 2007 The Android Open Source Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
import com.android.messaging.mmslib.InvalidHeaderValueException;
|
|
||||||
|
|
||||||
public class GenericPdu {
|
|
||||||
/**
|
|
||||||
* The headers of pdu.
|
|
||||||
*/
|
|
||||||
PduHeaders mPduHeaders = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor.
|
|
||||||
*/
|
|
||||||
public GenericPdu() {
|
|
||||||
mPduHeaders = new PduHeaders();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor.
|
|
||||||
*
|
|
||||||
* @param headers Headers for this PDU.
|
|
||||||
*/
|
|
||||||
GenericPdu(PduHeaders headers) {
|
|
||||||
mPduHeaders = headers;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the headers of this PDU.
|
|
||||||
*
|
|
||||||
* @return A PduHeaders of this PDU.
|
|
||||||
*/
|
|
||||||
PduHeaders getPduHeaders() {
|
|
||||||
return mPduHeaders;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Message-Type field value.
|
|
||||||
*
|
|
||||||
* @return the X-Mms-Report-Allowed value
|
|
||||||
*/
|
|
||||||
public int getMessageType() {
|
|
||||||
return mPduHeaders.getOctet(PduHeaders.MESSAGE_TYPE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Message-Type field value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
|
||||||
* @throws RuntimeException if field's value is not Octet.
|
|
||||||
*/
|
|
||||||
public void setMessageType(int value) throws InvalidHeaderValueException {
|
|
||||||
mPduHeaders.setOctet(value, PduHeaders.MESSAGE_TYPE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-MMS-Version field value.
|
|
||||||
*
|
|
||||||
* @return the X-Mms-MMS-Version value
|
|
||||||
*/
|
|
||||||
public int getMmsVersion() {
|
|
||||||
return mPduHeaders.getOctet(PduHeaders.MMS_VERSION);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-MMS-Version field value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
|
||||||
* @throws RuntimeException if field's value is not Octet.
|
|
||||||
*/
|
|
||||||
public void setMmsVersion(int value) throws InvalidHeaderValueException {
|
|
||||||
mPduHeaders.setOctet(value, PduHeaders.MMS_VERSION);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get From value.
|
|
||||||
* From-value = Value-length
|
|
||||||
* (Address-present-token Encoded-string-value | Insert-address-token)
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public EncodedStringValue getFrom() {
|
|
||||||
return mPduHeaders.getEncodedStringValue(PduHeaders.FROM);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set From value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setFrom(EncodedStringValue value) {
|
|
||||||
mPduHeaders.setEncodedStringValue(value, PduHeaders.FROM);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,159 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007 Esmertec AG.
|
|
||||||
* Copyright (C) 2007 The Android Open Source Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
import com.android.messaging.mmslib.InvalidHeaderValueException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Multimedia message PDU.
|
|
||||||
*/
|
|
||||||
public class MultimediaMessagePdu extends GenericPdu {
|
|
||||||
/**
|
|
||||||
* The body.
|
|
||||||
*/
|
|
||||||
private PduBody mMessageBody;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor.
|
|
||||||
*/
|
|
||||||
public MultimediaMessagePdu() {
|
|
||||||
super();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor.
|
|
||||||
*
|
|
||||||
* @param header the header of this PDU
|
|
||||||
* @param body the body of this PDU
|
|
||||||
*/
|
|
||||||
public MultimediaMessagePdu(PduHeaders header, PduBody body) {
|
|
||||||
super(header);
|
|
||||||
mMessageBody = body;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor with given headers.
|
|
||||||
*
|
|
||||||
* @param headers Headers for this PDU.
|
|
||||||
*/
|
|
||||||
MultimediaMessagePdu(PduHeaders headers) {
|
|
||||||
super(headers);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get body of the PDU.
|
|
||||||
*
|
|
||||||
* @return the body
|
|
||||||
*/
|
|
||||||
public PduBody getBody() {
|
|
||||||
return mMessageBody;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set body of the PDU.
|
|
||||||
*
|
|
||||||
* @param body the body
|
|
||||||
*/
|
|
||||||
public void setBody(PduBody body) {
|
|
||||||
mMessageBody = body;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get subject.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public EncodedStringValue getSubject() {
|
|
||||||
return mPduHeaders.getEncodedStringValue(PduHeaders.SUBJECT);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set subject.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setSubject(EncodedStringValue value) {
|
|
||||||
mPduHeaders.setEncodedStringValue(value, PduHeaders.SUBJECT);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get To value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public EncodedStringValue[] getTo() {
|
|
||||||
return mPduHeaders.getEncodedStringValues(PduHeaders.TO);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Add a "To" value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void addTo(EncodedStringValue value) {
|
|
||||||
mPduHeaders.appendEncodedStringValue(value, PduHeaders.TO);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Priority value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public int getPriority() {
|
|
||||||
return mPduHeaders.getOctet(PduHeaders.PRIORITY);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Priority value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
|
||||||
*/
|
|
||||||
public void setPriority(int value) throws InvalidHeaderValueException {
|
|
||||||
mPduHeaders.setOctet(value, PduHeaders.PRIORITY);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Date value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public long getDate() {
|
|
||||||
return mPduHeaders.getLongInteger(PduHeaders.DATE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Date value in seconds.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
*/
|
|
||||||
public void setDate(long value) {
|
|
||||||
mPduHeaders.setLongInteger(value, PduHeaders.DATE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the message size
|
|
||||||
*
|
|
||||||
* @return the size of the message
|
|
||||||
*/
|
|
||||||
public long getMessageSize() {
|
|
||||||
return mPduHeaders.getLongInteger(PduHeaders.MESSAGE_SIZE);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,285 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007 Esmertec AG.
|
|
||||||
* Copyright (C) 2007 The Android Open Source Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
import com.android.messaging.mmslib.InvalidHeaderValueException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* M-Notification.ind PDU.
|
|
||||||
*/
|
|
||||||
public class NotificationInd extends GenericPdu {
|
|
||||||
/**
|
|
||||||
* Empty constructor.
|
|
||||||
* Since the Pdu corresponding to this class is constructed
|
|
||||||
* by the Proxy-Relay server, this class is only instantiated
|
|
||||||
* by the Pdu Parser.
|
|
||||||
*
|
|
||||||
* @throws InvalidHeaderValueException if error occurs.
|
|
||||||
* @throws RuntimeException if an undeclared error occurs.
|
|
||||||
*/
|
|
||||||
public NotificationInd() throws InvalidHeaderValueException {
|
|
||||||
super();
|
|
||||||
setMessageType(PduHeaders.MESSAGE_TYPE_NOTIFICATION_IND);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor with given headers.
|
|
||||||
*
|
|
||||||
* @param headers Headers for this PDU.
|
|
||||||
*/
|
|
||||||
NotificationInd(PduHeaders headers) {
|
|
||||||
super(headers);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Content-Class Value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public int getContentClass() {
|
|
||||||
return mPduHeaders.getOctet(PduHeaders.CONTENT_CLASS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Content-Class Value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
|
||||||
* @throws RuntimeException if an undeclared error occurs.
|
|
||||||
*/
|
|
||||||
public void setContentClass(int value) throws InvalidHeaderValueException {
|
|
||||||
mPduHeaders.setOctet(value, PduHeaders.CONTENT_CLASS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Content-Location value.
|
|
||||||
* When used in a PDU other than M-Mbox-Delete.conf and M-Delete.conf:
|
|
||||||
* Content-location-value = Uri-value
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public byte[] getContentLocation() {
|
|
||||||
return mPduHeaders.getTextString(PduHeaders.CONTENT_LOCATION);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Content-Location value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
* @throws RuntimeException if an undeclared error occurs.
|
|
||||||
*/
|
|
||||||
public void setContentLocation(byte[] value) {
|
|
||||||
mPduHeaders.setTextString(value, PduHeaders.CONTENT_LOCATION);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Expiry value.
|
|
||||||
*
|
|
||||||
* Expiry-value = Value-length
|
|
||||||
* (Absolute-token Date-value | Relative-token Delta-seconds-value)
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public long getExpiry() {
|
|
||||||
return mPduHeaders.getLongInteger(PduHeaders.EXPIRY);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Expiry value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws RuntimeException if an undeclared error occurs.
|
|
||||||
*/
|
|
||||||
public void setExpiry(long value) {
|
|
||||||
mPduHeaders.setLongInteger(value, PduHeaders.EXPIRY);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get From value.
|
|
||||||
* From-value = Value-length
|
|
||||||
* (Address-present-token Encoded-string-value | Insert-address-token)
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public EncodedStringValue getFrom() {
|
|
||||||
return mPduHeaders.getEncodedStringValue(PduHeaders.FROM);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set From value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
* @throws RuntimeException if an undeclared error occurs.
|
|
||||||
*/
|
|
||||||
public void setFrom(EncodedStringValue value) {
|
|
||||||
mPduHeaders.setEncodedStringValue(value, PduHeaders.FROM);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Message-Class value.
|
|
||||||
* Message-class-value = Class-identifier | Token-text
|
|
||||||
* Class-identifier = Personal | Advertisement | Informational | Auto
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public byte[] getMessageClass() {
|
|
||||||
return mPduHeaders.getTextString(PduHeaders.MESSAGE_CLASS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Message-Class value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
* @throws RuntimeException if an undeclared error occurs.
|
|
||||||
*/
|
|
||||||
public void setMessageClass(byte[] value) {
|
|
||||||
mPduHeaders.setTextString(value, PduHeaders.MESSAGE_CLASS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Message-Size value.
|
|
||||||
* Message-size-value = Long-integer
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public long getMessageSize() {
|
|
||||||
return mPduHeaders.getLongInteger(PduHeaders.MESSAGE_SIZE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Message-Size value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws RuntimeException if an undeclared error occurs.
|
|
||||||
*/
|
|
||||||
public void setMessageSize(long value) {
|
|
||||||
mPduHeaders.setLongInteger(value, PduHeaders.MESSAGE_SIZE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get subject.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public EncodedStringValue getSubject() {
|
|
||||||
return mPduHeaders.getEncodedStringValue(PduHeaders.SUBJECT);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set subject.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
* @throws RuntimeException if an undeclared error occurs.
|
|
||||||
*/
|
|
||||||
public void setSubject(EncodedStringValue value) {
|
|
||||||
mPduHeaders.setEncodedStringValue(value, PduHeaders.SUBJECT);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Transaction-Id.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public byte[] getTransactionId() {
|
|
||||||
return mPduHeaders.getTextString(PduHeaders.TRANSACTION_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Transaction-Id.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
* @throws RuntimeException if an undeclared error occurs.
|
|
||||||
*/
|
|
||||||
public void setTransactionId(byte[] value) {
|
|
||||||
mPduHeaders.setTextString(value, PduHeaders.TRANSACTION_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Delivery-Report Value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public int getDeliveryReport() {
|
|
||||||
return mPduHeaders.getOctet(PduHeaders.DELIVERY_REPORT);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Delivery-Report Value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
|
||||||
* @throws RuntimeException if an undeclared error occurs.
|
|
||||||
*/
|
|
||||||
public void setDeliveryReport(int value) throws InvalidHeaderValueException {
|
|
||||||
mPduHeaders.setOctet(value, PduHeaders.DELIVERY_REPORT);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Optional, not supported header fields:
|
|
||||||
*
|
|
||||||
* public byte[] getApplicId() {return null;}
|
|
||||||
* public void setApplicId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getAuxApplicId() {return null;}
|
|
||||||
* public void getAuxApplicId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public byte getDrmContent() {return 0x00;}
|
|
||||||
* public void setDrmContent(byte value) {}
|
|
||||||
*
|
|
||||||
* public byte getDistributionIndicator() {return 0x00;}
|
|
||||||
* public void setDistributionIndicator(byte value) {}
|
|
||||||
*
|
|
||||||
* public ElementDescriptorValue getElementDescriptor() {return null;}
|
|
||||||
* public void getElementDescriptor(ElementDescriptorValue value) {}
|
|
||||||
*
|
|
||||||
* public byte getPriority() {return 0x00;}
|
|
||||||
* public void setPriority(byte value) {}
|
|
||||||
*
|
|
||||||
* public byte getRecommendedRetrievalMode() {return 0x00;}
|
|
||||||
* public void setRecommendedRetrievalMode(byte value) {}
|
|
||||||
*
|
|
||||||
* public byte getRecommendedRetrievalModeText() {return 0x00;}
|
|
||||||
* public void setRecommendedRetrievalModeText(byte value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getReplaceId() {return 0x00;}
|
|
||||||
* public void setReplaceId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getReplyApplicId() {return 0x00;}
|
|
||||||
* public void setReplyApplicId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public byte getReplyCharging() {return 0x00;}
|
|
||||||
* public void setReplyCharging(byte value) {}
|
|
||||||
*
|
|
||||||
* public byte getReplyChargingDeadline() {return 0x00;}
|
|
||||||
* public void setReplyChargingDeadline(byte value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getReplyChargingId() {return 0x00;}
|
|
||||||
* public void setReplyChargingId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public long getReplyChargingSize() {return 0;}
|
|
||||||
* public void setReplyChargingSize(long value) {}
|
|
||||||
*
|
|
||||||
* public byte getStored() {return 0x00;}
|
|
||||||
* public void setStored(byte value) {}
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
@@ -1,114 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007 Esmertec AG.
|
|
||||||
* Copyright (C) 2007 The Android Open Source Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
import com.android.messaging.mmslib.InvalidHeaderValueException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* M-NofifyResp.ind PDU.
|
|
||||||
*/
|
|
||||||
public class NotifyRespInd extends GenericPdu {
|
|
||||||
/**
|
|
||||||
* Constructor, used when composing a M-NotifyResp.ind pdu.
|
|
||||||
*
|
|
||||||
* @param mmsVersion current version of mms
|
|
||||||
* @param transactionId the transaction-id value
|
|
||||||
* @param status the status value
|
|
||||||
* @throws InvalidHeaderValueException if parameters are invalid.
|
|
||||||
* @throws NullPointerException if transactionId is null.
|
|
||||||
* @throws RuntimeException if an undeclared error occurs.
|
|
||||||
*/
|
|
||||||
public NotifyRespInd(int mmsVersion,
|
|
||||||
byte[] transactionId,
|
|
||||||
int status) throws InvalidHeaderValueException {
|
|
||||||
super();
|
|
||||||
setMessageType(PduHeaders.MESSAGE_TYPE_NOTIFYRESP_IND);
|
|
||||||
setMmsVersion(mmsVersion);
|
|
||||||
setTransactionId(transactionId);
|
|
||||||
setStatus(status);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor with given headers.
|
|
||||||
*
|
|
||||||
* @param headers Headers for this PDU.
|
|
||||||
*/
|
|
||||||
NotifyRespInd(PduHeaders headers) {
|
|
||||||
super(headers);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Report-Allowed field value.
|
|
||||||
*
|
|
||||||
* @return the X-Mms-Report-Allowed value
|
|
||||||
*/
|
|
||||||
public int getReportAllowed() {
|
|
||||||
return mPduHeaders.getOctet(PduHeaders.REPORT_ALLOWED);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Report-Allowed field value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
|
||||||
* @throws RuntimeException if an undeclared error occurs.
|
|
||||||
*/
|
|
||||||
public void setReportAllowed(int value) throws InvalidHeaderValueException {
|
|
||||||
mPduHeaders.setOctet(value, PduHeaders.REPORT_ALLOWED);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Status field value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
|
||||||
* @throws RuntimeException if an undeclared error occurs.
|
|
||||||
*/
|
|
||||||
public void setStatus(int value) throws InvalidHeaderValueException {
|
|
||||||
mPduHeaders.setOctet(value, PduHeaders.STATUS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* GetX-Mms-Status field value.
|
|
||||||
*
|
|
||||||
* @return the X-Mms-Status value
|
|
||||||
*/
|
|
||||||
public int getStatus() {
|
|
||||||
return mPduHeaders.getOctet(PduHeaders.STATUS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Transaction-Id field value.
|
|
||||||
*
|
|
||||||
* @return the X-Mms-Report-Allowed value
|
|
||||||
*/
|
|
||||||
public byte[] getTransactionId() {
|
|
||||||
return mPduHeaders.getTextString(PduHeaders.TRANSACTION_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Transaction-Id field value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
* @throws RuntimeException if an undeclared error occurs.
|
|
||||||
*/
|
|
||||||
public void setTransactionId(byte[] value) {
|
|
||||||
mPduHeaders.setTextString(value, PduHeaders.TRANSACTION_ID);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,88 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007 Esmertec AG.
|
|
||||||
* Copyright (C) 2007 The Android Open Source Project
|
|
||||||
* Copyright (C) 2024 The LineageOS Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
import java.util.Vector;
|
|
||||||
|
|
||||||
public class PduBody {
|
|
||||||
private Vector<PduPart> mParts = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor.
|
|
||||||
*/
|
|
||||||
public PduBody() {
|
|
||||||
mParts = new Vector<>();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Appends the specified part to the end of this body.
|
|
||||||
*
|
|
||||||
* @param part part to be appended
|
|
||||||
* @return true when success, false when fail
|
|
||||||
* @throws NullPointerException when part is null
|
|
||||||
*/
|
|
||||||
public boolean addPart(PduPart part) {
|
|
||||||
if (null == part) {
|
|
||||||
throw new NullPointerException();
|
|
||||||
}
|
|
||||||
|
|
||||||
return mParts.add(part);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Inserts the specified part at the specified position.
|
|
||||||
*
|
|
||||||
* @param index index at which the specified part is to be inserted
|
|
||||||
* @param part part to be inserted
|
|
||||||
* @throws NullPointerException when part is null
|
|
||||||
*/
|
|
||||||
public void addPart(int index, PduPart part) {
|
|
||||||
if (null == part) {
|
|
||||||
throw new NullPointerException();
|
|
||||||
}
|
|
||||||
|
|
||||||
mParts.add(index, part);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Remove all of the parts.
|
|
||||||
*/
|
|
||||||
public void removeAll() {
|
|
||||||
mParts.clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the part at the specified position.
|
|
||||||
*
|
|
||||||
* @param index index of the part to return
|
|
||||||
* @return part at the specified index
|
|
||||||
*/
|
|
||||||
public PduPart getPart(int index) {
|
|
||||||
return mParts.get(index);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the number of parts.
|
|
||||||
*
|
|
||||||
* @return the number of parts
|
|
||||||
*/
|
|
||||||
public int getPartsNum() {
|
|
||||||
return mParts.size();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -20,9 +20,17 @@ package com.android.messaging.mmslib.pdu;
|
|||||||
|
|
||||||
import android.content.ContentResolver;
|
import android.content.ContentResolver;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import androidx.collection.SimpleArrayMap;
|
import android.support.v7.mms.pdu.EncodedStringValue;
|
||||||
|
import android.support.v7.mms.pdu.GenericPdu;
|
||||||
|
import android.support.v7.mms.pdu.PduBody;
|
||||||
|
import android.support.v7.mms.pdu.PduContentTypes;
|
||||||
|
import android.support.v7.mms.pdu.PduHeaders;
|
||||||
|
import android.support.v7.mms.pdu.PduPart;
|
||||||
|
import android.support.v7.mms.pdu.SendReq;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
|
|
||||||
|
import androidx.collection.SimpleArrayMap;
|
||||||
|
|
||||||
import java.io.ByteArrayOutputStream;
|
import java.io.ByteArrayOutputStream;
|
||||||
import java.io.FileNotFoundException;
|
import java.io.FileNotFoundException;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|||||||
@@ -1,110 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007 Esmertec AG.
|
|
||||||
* Copyright (C) 2007 The Android Open Source Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
public class PduContentTypes {
|
|
||||||
/**
|
|
||||||
* All content types. From:
|
|
||||||
* http://www.openmobilealliance.org/tech/omna/omna-wsp-content-type.htm
|
|
||||||
*/
|
|
||||||
static final String[] contentTypes = {
|
|
||||||
"*/*", /* 0x00 */
|
|
||||||
"text/*", /* 0x01 */
|
|
||||||
"text/html", /* 0x02 */
|
|
||||||
"text/plain", /* 0x03 */
|
|
||||||
"text/x-hdml", /* 0x04 */
|
|
||||||
"text/x-ttml", /* 0x05 */
|
|
||||||
"text/x-vCalendar", /* 0x06 */
|
|
||||||
"text/x-vCard", /* 0x07 */
|
|
||||||
"text/vnd.wap.wml", /* 0x08 */
|
|
||||||
"text/vnd.wap.wmlscript", /* 0x09 */
|
|
||||||
"text/vnd.wap.wta-event", /* 0x0A */
|
|
||||||
"multipart/*", /* 0x0B */
|
|
||||||
"multipart/mixed", /* 0x0C */
|
|
||||||
"multipart/form-data", /* 0x0D */
|
|
||||||
"multipart/byterantes", /* 0x0E */
|
|
||||||
"multipart/alternative", /* 0x0F */
|
|
||||||
"application/*", /* 0x10 */
|
|
||||||
"application/java-vm", /* 0x11 */
|
|
||||||
"application/x-www-form-urlencoded", /* 0x12 */
|
|
||||||
"application/x-hdmlc", /* 0x13 */
|
|
||||||
"application/vnd.wap.wmlc", /* 0x14 */
|
|
||||||
"application/vnd.wap.wmlscriptc", /* 0x15 */
|
|
||||||
"application/vnd.wap.wta-eventc", /* 0x16 */
|
|
||||||
"application/vnd.wap.uaprof", /* 0x17 */
|
|
||||||
"application/vnd.wap.wtls-ca-certificate", /* 0x18 */
|
|
||||||
"application/vnd.wap.wtls-user-certificate", /* 0x19 */
|
|
||||||
"application/x-x509-ca-cert", /* 0x1A */
|
|
||||||
"application/x-x509-user-cert", /* 0x1B */
|
|
||||||
"image/*", /* 0x1C */
|
|
||||||
"image/gif", /* 0x1D */
|
|
||||||
"image/jpeg", /* 0x1E */
|
|
||||||
"image/tiff", /* 0x1F */
|
|
||||||
"image/png", /* 0x20 */
|
|
||||||
"image/vnd.wap.wbmp", /* 0x21 */
|
|
||||||
"application/vnd.wap.multipart.*", /* 0x22 */
|
|
||||||
"application/vnd.wap.multipart.mixed", /* 0x23 */
|
|
||||||
"application/vnd.wap.multipart.form-data", /* 0x24 */
|
|
||||||
"application/vnd.wap.multipart.byteranges", /* 0x25 */
|
|
||||||
"application/vnd.wap.multipart.alternative", /* 0x26 */
|
|
||||||
"application/xml", /* 0x27 */
|
|
||||||
"text/xml", /* 0x28 */
|
|
||||||
"application/vnd.wap.wbxml", /* 0x29 */
|
|
||||||
"application/x-x968-cross-cert", /* 0x2A */
|
|
||||||
"application/x-x968-ca-cert", /* 0x2B */
|
|
||||||
"application/x-x968-user-cert", /* 0x2C */
|
|
||||||
"text/vnd.wap.si", /* 0x2D */
|
|
||||||
"application/vnd.wap.sic", /* 0x2E */
|
|
||||||
"text/vnd.wap.sl", /* 0x2F */
|
|
||||||
"application/vnd.wap.slc", /* 0x30 */
|
|
||||||
"text/vnd.wap.co", /* 0x31 */
|
|
||||||
"application/vnd.wap.coc", /* 0x32 */
|
|
||||||
"application/vnd.wap.multipart.related", /* 0x33 */
|
|
||||||
"application/vnd.wap.sia", /* 0x34 */
|
|
||||||
"text/vnd.wap.connectivity-xml", /* 0x35 */
|
|
||||||
"application/vnd.wap.connectivity-wbxml", /* 0x36 */
|
|
||||||
"application/pkcs7-mime", /* 0x37 */
|
|
||||||
"application/vnd.wap.hashed-certificate", /* 0x38 */
|
|
||||||
"application/vnd.wap.signed-certificate", /* 0x39 */
|
|
||||||
"application/vnd.wap.cert-response", /* 0x3A */
|
|
||||||
"application/xhtml+xml", /* 0x3B */
|
|
||||||
"application/wml+xml", /* 0x3C */
|
|
||||||
"text/css", /* 0x3D */
|
|
||||||
"application/vnd.wap.mms-message", /* 0x3E */
|
|
||||||
"application/vnd.wap.rollover-certificate", /* 0x3F */
|
|
||||||
"application/vnd.wap.locc+wbxml", /* 0x40 */
|
|
||||||
"application/vnd.wap.loc+xml", /* 0x41 */
|
|
||||||
"application/vnd.syncml.dm+wbxml", /* 0x42 */
|
|
||||||
"application/vnd.syncml.dm+xml", /* 0x43 */
|
|
||||||
"application/vnd.syncml.notification", /* 0x44 */
|
|
||||||
"application/vnd.wap.xhtml+xml", /* 0x45 */
|
|
||||||
"application/vnd.wv.csp.cir", /* 0x46 */
|
|
||||||
"application/vnd.oma.dd+xml", /* 0x47 */
|
|
||||||
"application/vnd.oma.drm.message", /* 0x48 */
|
|
||||||
"application/vnd.oma.drm.content", /* 0x49 */
|
|
||||||
"application/vnd.oma.drm.rights+xml", /* 0x4A */
|
|
||||||
"application/vnd.oma.drm.rights+wbxml", /* 0x4B */
|
|
||||||
"application/vnd.wv.csp+xml", /* 0x4C */
|
|
||||||
"application/vnd.wv.csp+wbxml", /* 0x4D */
|
|
||||||
"application/vnd.syncml.ds.notification", /* 0x4E */
|
|
||||||
"audio/*", /* 0x4F */
|
|
||||||
"video/*", /* 0x50 */
|
|
||||||
"application/vnd.oma.dd2+xml", /* 0x51 */
|
|
||||||
"application/mikey" /* 0x52 */
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,737 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007 Esmertec AG.
|
|
||||||
* Copyright (C) 2007 The Android Open Source Project
|
|
||||||
* Copyright (C) 2024 The LineageOS Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
import android.util.SparseArray;
|
|
||||||
|
|
||||||
import com.android.messaging.mmslib.InvalidHeaderValueException;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Collections;
|
|
||||||
|
|
||||||
public class PduHeaders {
|
|
||||||
/**
|
|
||||||
* All pdu header fields.
|
|
||||||
*/
|
|
||||||
public static final int BCC = 0x81;
|
|
||||||
public static final int CC = 0x82;
|
|
||||||
public static final int CONTENT_LOCATION = 0x83;
|
|
||||||
public static final int CONTENT_TYPE = 0x84;
|
|
||||||
public static final int DATE = 0x85;
|
|
||||||
public static final int DELIVERY_REPORT = 0x86;
|
|
||||||
public static final int DELIVERY_TIME = 0x87;
|
|
||||||
public static final int EXPIRY = 0x88;
|
|
||||||
public static final int FROM = 0x89;
|
|
||||||
public static final int MESSAGE_CLASS = 0x8A;
|
|
||||||
public static final int MESSAGE_ID = 0x8B;
|
|
||||||
public static final int MESSAGE_TYPE = 0x8C;
|
|
||||||
public static final int MMS_VERSION = 0x8D;
|
|
||||||
public static final int MESSAGE_SIZE = 0x8E;
|
|
||||||
public static final int PRIORITY = 0x8F;
|
|
||||||
|
|
||||||
public static final int READ_REPLY = 0x90;
|
|
||||||
public static final int READ_REPORT = 0x90;
|
|
||||||
public static final int REPORT_ALLOWED = 0x91;
|
|
||||||
public static final int RESPONSE_STATUS = 0x92;
|
|
||||||
public static final int RESPONSE_TEXT = 0x93;
|
|
||||||
public static final int SENDER_VISIBILITY = 0x94;
|
|
||||||
public static final int STATUS = 0x95;
|
|
||||||
public static final int SUBJECT = 0x96;
|
|
||||||
public static final int TO = 0x97;
|
|
||||||
public static final int TRANSACTION_ID = 0x98;
|
|
||||||
public static final int RETRIEVE_STATUS = 0x99;
|
|
||||||
public static final int RETRIEVE_TEXT = 0x9A;
|
|
||||||
public static final int READ_STATUS = 0x9B;
|
|
||||||
public static final int REPLY_CHARGING = 0x9C;
|
|
||||||
public static final int REPLY_CHARGING_DEADLINE = 0x9D;
|
|
||||||
public static final int REPLY_CHARGING_ID = 0x9E;
|
|
||||||
public static final int REPLY_CHARGING_SIZE = 0x9F;
|
|
||||||
|
|
||||||
public static final int PREVIOUSLY_SENT_BY = 0xA0;
|
|
||||||
public static final int PREVIOUSLY_SENT_DATE = 0xA1;
|
|
||||||
public static final int STORE = 0xA2;
|
|
||||||
public static final int MM_STATE = 0xA3;
|
|
||||||
public static final int MM_FLAGS = 0xA4;
|
|
||||||
public static final int STORE_STATUS = 0xA5;
|
|
||||||
public static final int STORE_STATUS_TEXT = 0xA6;
|
|
||||||
public static final int STORED = 0xA7;
|
|
||||||
public static final int ATTRIBUTES = 0xA8;
|
|
||||||
public static final int TOTALS = 0xA9;
|
|
||||||
public static final int MBOX_TOTALS = 0xAA;
|
|
||||||
public static final int QUOTAS = 0xAB;
|
|
||||||
public static final int MBOX_QUOTAS = 0xAC;
|
|
||||||
public static final int MESSAGE_COUNT = 0xAD;
|
|
||||||
public static final int CONTENT = 0xAE;
|
|
||||||
public static final int START = 0xAF;
|
|
||||||
|
|
||||||
public static final int ADDITIONAL_HEADERS = 0xB0;
|
|
||||||
public static final int DISTRIBUTION_INDICATOR = 0xB1;
|
|
||||||
public static final int ELEMENT_DESCRIPTOR = 0xB2;
|
|
||||||
public static final int LIMIT = 0xB3;
|
|
||||||
public static final int RECOMMENDED_RETRIEVAL_MODE = 0xB4;
|
|
||||||
public static final int RECOMMENDED_RETRIEVAL_MODE_TEXT = 0xB5;
|
|
||||||
public static final int STATUS_TEXT = 0xB6;
|
|
||||||
public static final int APPLIC_ID = 0xB7;
|
|
||||||
public static final int REPLY_APPLIC_ID = 0xB8;
|
|
||||||
public static final int AUX_APPLIC_ID = 0xB9;
|
|
||||||
public static final int CONTENT_CLASS = 0xBA;
|
|
||||||
public static final int DRM_CONTENT = 0xBB;
|
|
||||||
public static final int ADAPTATION_ALLOWED = 0xBC;
|
|
||||||
public static final int REPLACE_ID = 0xBD;
|
|
||||||
public static final int CANCEL_ID = 0xBE;
|
|
||||||
public static final int CANCEL_STATUS = 0xBF;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* X-Mms-Message-Type field types.
|
|
||||||
*/
|
|
||||||
public static final int MESSAGE_TYPE_SEND_REQ = 0x80;
|
|
||||||
public static final int MESSAGE_TYPE_SEND_CONF = 0x81;
|
|
||||||
public static final int MESSAGE_TYPE_NOTIFICATION_IND = 0x82;
|
|
||||||
public static final int MESSAGE_TYPE_NOTIFYRESP_IND = 0x83;
|
|
||||||
public static final int MESSAGE_TYPE_RETRIEVE_CONF = 0x84;
|
|
||||||
public static final int MESSAGE_TYPE_ACKNOWLEDGE_IND = 0x85;
|
|
||||||
public static final int MESSAGE_TYPE_DELIVERY_IND = 0x86;
|
|
||||||
public static final int MESSAGE_TYPE_READ_REC_IND = 0x87;
|
|
||||||
public static final int MESSAGE_TYPE_READ_ORIG_IND = 0x88;
|
|
||||||
public static final int MESSAGE_TYPE_FORWARD_REQ = 0x89;
|
|
||||||
public static final int MESSAGE_TYPE_FORWARD_CONF = 0x8A;
|
|
||||||
public static final int MESSAGE_TYPE_MBOX_STORE_REQ = 0x8B;
|
|
||||||
public static final int MESSAGE_TYPE_MBOX_STORE_CONF = 0x8C;
|
|
||||||
public static final int MESSAGE_TYPE_MBOX_VIEW_REQ = 0x8D;
|
|
||||||
public static final int MESSAGE_TYPE_MBOX_VIEW_CONF = 0x8E;
|
|
||||||
public static final int MESSAGE_TYPE_MBOX_UPLOAD_REQ = 0x8F;
|
|
||||||
public static final int MESSAGE_TYPE_MBOX_UPLOAD_CONF = 0x90;
|
|
||||||
public static final int MESSAGE_TYPE_MBOX_DELETE_REQ = 0x91;
|
|
||||||
public static final int MESSAGE_TYPE_MBOX_DELETE_CONF = 0x92;
|
|
||||||
public static final int MESSAGE_TYPE_MBOX_DESCR = 0x93;
|
|
||||||
public static final int MESSAGE_TYPE_DELETE_REQ = 0x94;
|
|
||||||
public static final int MESSAGE_TYPE_DELETE_CONF = 0x95;
|
|
||||||
public static final int MESSAGE_TYPE_CANCEL_REQ = 0x96;
|
|
||||||
public static final int MESSAGE_TYPE_CANCEL_CONF = 0x97;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* X-Mms-Delivery-Report |
|
|
||||||
* X-Mms-Read-Report |
|
|
||||||
* X-Mms-Report-Allowed |
|
|
||||||
* X-Mms-Sender-Visibility |
|
|
||||||
* X-Mms-Store |
|
|
||||||
* X-Mms-Stored |
|
|
||||||
* X-Mms-Totals |
|
|
||||||
* X-Mms-Quotas |
|
|
||||||
* X-Mms-Distribution-Indicator |
|
|
||||||
* X-Mms-DRM-Content |
|
|
||||||
* X-Mms-Adaptation-Allowed |
|
|
||||||
* field types.
|
|
||||||
*/
|
|
||||||
public static final int VALUE_YES = 0x80;
|
|
||||||
public static final int VALUE_NO = 0x81;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Delivery-Time |
|
|
||||||
* Expiry and Reply-Charging-Deadline |
|
|
||||||
* field type components.
|
|
||||||
*/
|
|
||||||
public static final int VALUE_ABSOLUTE_TOKEN = 0x80;
|
|
||||||
public static final int VALUE_RELATIVE_TOKEN = 0x81;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* X-Mms-MMS-Version field types.
|
|
||||||
*/
|
|
||||||
public static final int MMS_VERSION_1_3 = ((1 << 4) | 3);
|
|
||||||
public static final int MMS_VERSION_1_2 = ((1 << 4) | 2);
|
|
||||||
public static final int MMS_VERSION_1_1 = ((1 << 4) | 1);
|
|
||||||
public static final int MMS_VERSION_1_0 = ((1 << 4) | 0);
|
|
||||||
|
|
||||||
// Current version is 1.2.
|
|
||||||
public static final int CURRENT_MMS_VERSION = MMS_VERSION_1_2;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* From field type components.
|
|
||||||
*/
|
|
||||||
public static final int FROM_ADDRESS_PRESENT_TOKEN = 0x80;
|
|
||||||
public static final int FROM_INSERT_ADDRESS_TOKEN = 0x81;
|
|
||||||
|
|
||||||
public static final String FROM_ADDRESS_PRESENT_TOKEN_STR = "address-present-token";
|
|
||||||
|
|
||||||
public static final String FROM_INSERT_ADDRESS_TOKEN_STR = "insert-address-token";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* X-Mms-Status Field.
|
|
||||||
*/
|
|
||||||
public static final int STATUS_EXPIRED = 0x80;
|
|
||||||
public static final int STATUS_RETRIEVED = 0x81;
|
|
||||||
public static final int STATUS_REJECTED = 0x82;
|
|
||||||
public static final int STATUS_DEFERRED = 0x83;
|
|
||||||
public static final int STATUS_UNRECOGNIZED = 0x84;
|
|
||||||
public static final int STATUS_INDETERMINATE = 0x85;
|
|
||||||
public static final int STATUS_FORWARDED = 0x86;
|
|
||||||
public static final int STATUS_UNREACHABLE = 0x87;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* MM-Flags field type components.
|
|
||||||
*/
|
|
||||||
public static final int MM_FLAGS_ADD_TOKEN = 0x80;
|
|
||||||
public static final int MM_FLAGS_REMOVE_TOKEN = 0x81;
|
|
||||||
public static final int MM_FLAGS_FILTER_TOKEN = 0x82;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* X-Mms-Message-Class field types.
|
|
||||||
*/
|
|
||||||
public static final int MESSAGE_CLASS_PERSONAL = 0x80;
|
|
||||||
public static final int MESSAGE_CLASS_ADVERTISEMENT = 0x81;
|
|
||||||
public static final int MESSAGE_CLASS_INFORMATIONAL = 0x82;
|
|
||||||
public static final int MESSAGE_CLASS_AUTO = 0x83;
|
|
||||||
|
|
||||||
public static final String MESSAGE_CLASS_PERSONAL_STR = "personal";
|
|
||||||
|
|
||||||
public static final String MESSAGE_CLASS_ADVERTISEMENT_STR = "advertisement";
|
|
||||||
|
|
||||||
public static final String MESSAGE_CLASS_INFORMATIONAL_STR = "informational";
|
|
||||||
|
|
||||||
public static final String MESSAGE_CLASS_AUTO_STR = "auto";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* X-Mms-Priority field types.
|
|
||||||
*/
|
|
||||||
public static final int PRIORITY_LOW = 0x80;
|
|
||||||
public static final int PRIORITY_NORMAL = 0x81;
|
|
||||||
public static final int PRIORITY_HIGH = 0x82;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* X-Mms-Response-Status field types.
|
|
||||||
*/
|
|
||||||
public static final int RESPONSE_STATUS_OK = 0x80;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_UNSPECIFIED = 0x81;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_SERVICE_DENIED = 0x82;
|
|
||||||
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_MESSAGE_FORMAT_CORRUPT = 0x83;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_SENDING_ADDRESS_UNRESOLVED = 0x84;
|
|
||||||
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_MESSAGE_NOT_FOUND = 0x85;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_NETWORK_PROBLEM = 0x86;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_CONTENT_NOT_ACCEPTED = 0x87;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_UNSUPPORTED_MESSAGE = 0x88;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_TRANSIENT_FAILURE = 0xC0;
|
|
||||||
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_TRANSIENT_SENDNG_ADDRESS_UNRESOLVED = 0xC1;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_TRANSIENT_MESSAGE_NOT_FOUND = 0xC2;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_TRANSIENT_NETWORK_PROBLEM = 0xC3;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_TRANSIENT_PARTIAL_SUCCESS = 0xC4;
|
|
||||||
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_PERMANENT_FAILURE
|
|
||||||
= 0xE0;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_PERMANENT_SERVICE_DENIED
|
|
||||||
= 0xE1;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_PERMANENT_MESSAGE_FORMAT_CORRUPT
|
|
||||||
= 0xE2;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_PERMANENT_SENDING_ADDRESS_UNRESOLVED
|
|
||||||
= 0xE3;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_PERMANENT_MESSAGE_NOT_FOUND
|
|
||||||
= 0xE4;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_PERMANENT_CONTENT_NOT_ACCEPTED
|
|
||||||
= 0xE5;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_PERMANENT_REPLY_CHARGING_LIMITATIONS_NOT_MET
|
|
||||||
= 0xE6;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_PERMANENT_REPLY_CHARGING_REQUEST_NOT_ACCEPTED
|
|
||||||
= 0xE7;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_PERMANENT_REPLY_CHARGING_FORWARDING_DENIED
|
|
||||||
= 0xE8;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_PERMANENT_REPLY_CHARGING_NOT_SUPPORTED
|
|
||||||
= 0xE9;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_PERMANENT_ADDRESS_HIDING_NOT_SUPPORTED
|
|
||||||
= 0xEA;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_PERMANENT_LACK_OF_PREPAID
|
|
||||||
= 0xEB;
|
|
||||||
public static final int RESPONSE_STATUS_ERROR_PERMANENT_END
|
|
||||||
= 0xFF;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* X-Mms-Retrieve-Status field types.
|
|
||||||
*/
|
|
||||||
public static final int RETRIEVE_STATUS_OK = 0x80;
|
|
||||||
public static final int RETRIEVE_STATUS_ERROR_TRANSIENT_FAILURE = 0xC0;
|
|
||||||
public static final int RETRIEVE_STATUS_ERROR_TRANSIENT_MESSAGE_NOT_FOUND = 0xC1;
|
|
||||||
public static final int RETRIEVE_STATUS_ERROR_TRANSIENT_NETWORK_PROBLEM = 0xC2;
|
|
||||||
public static final int RETRIEVE_STATUS_ERROR_PERMANENT_FAILURE = 0xE0;
|
|
||||||
public static final int RETRIEVE_STATUS_ERROR_PERMANENT_SERVICE_DENIED = 0xE1;
|
|
||||||
public static final int RETRIEVE_STATUS_ERROR_PERMANENT_MESSAGE_NOT_FOUND = 0xE2;
|
|
||||||
public static final int RETRIEVE_STATUS_ERROR_PERMANENT_CONTENT_UNSUPPORTED = 0xE3;
|
|
||||||
public static final int RETRIEVE_STATUS_ERROR_END = 0xFF;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* X-Mms-Sender-Visibility field types.
|
|
||||||
*/
|
|
||||||
public static final int SENDER_VISIBILITY_HIDE = 0x80;
|
|
||||||
public static final int SENDER_VISIBILITY_SHOW = 0x81;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* X-Mms-Read-Status field types.
|
|
||||||
*/
|
|
||||||
public static final int READ_STATUS_READ = 0x80;
|
|
||||||
public static final int READ_STATUS__DELETED_WITHOUT_BEING_READ = 0x81;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* X-Mms-Cancel-Status field types.
|
|
||||||
*/
|
|
||||||
public static final int CANCEL_STATUS_REQUEST_SUCCESSFULLY_RECEIVED = 0x80;
|
|
||||||
public static final int CANCEL_STATUS_REQUEST_CORRUPTED = 0x81;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* X-Mms-Reply-Charging field types.
|
|
||||||
*/
|
|
||||||
public static final int REPLY_CHARGING_REQUESTED = 0x80;
|
|
||||||
public static final int REPLY_CHARGING_REQUESTED_TEXT_ONLY = 0x81;
|
|
||||||
public static final int REPLY_CHARGING_ACCEPTED = 0x82;
|
|
||||||
public static final int REPLY_CHARGING_ACCEPTED_TEXT_ONLY = 0x83;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* X-Mms-MM-State field types.
|
|
||||||
*/
|
|
||||||
public static final int MM_STATE_DRAFT = 0x80;
|
|
||||||
public static final int MM_STATE_SENT = 0x81;
|
|
||||||
public static final int MM_STATE_NEW = 0x82;
|
|
||||||
public static final int MM_STATE_RETRIEVED = 0x83;
|
|
||||||
public static final int MM_STATE_FORWARDED = 0x84;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* X-Mms-Recommended-Retrieval-Mode field types.
|
|
||||||
*/
|
|
||||||
public static final int RECOMMENDED_RETRIEVAL_MODE_MANUAL = 0x80;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* X-Mms-Content-Class field types.
|
|
||||||
*/
|
|
||||||
public static final int CONTENT_CLASS_TEXT = 0x80;
|
|
||||||
public static final int CONTENT_CLASS_IMAGE_BASIC = 0x81;
|
|
||||||
public static final int CONTENT_CLASS_IMAGE_RICH = 0x82;
|
|
||||||
public static final int CONTENT_CLASS_VIDEO_BASIC = 0x83;
|
|
||||||
public static final int CONTENT_CLASS_VIDEO_RICH = 0x84;
|
|
||||||
public static final int CONTENT_CLASS_MEGAPIXEL = 0x85;
|
|
||||||
public static final int CONTENT_CLASS_CONTENT_BASIC = 0x86;
|
|
||||||
public static final int CONTENT_CLASS_CONTENT_RICH = 0x87;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* X-Mms-Store-Status field types.
|
|
||||||
*/
|
|
||||||
public static final int STORE_STATUS_SUCCESS = 0x80;
|
|
||||||
public static final int STORE_STATUS_ERROR_TRANSIENT_FAILURE = 0xC0;
|
|
||||||
public static final int STORE_STATUS_ERROR_TRANSIENT_NETWORK_PROBLEM = 0xC1;
|
|
||||||
public static final int STORE_STATUS_ERROR_PERMANENT_FAILURE = 0xE0;
|
|
||||||
public static final int STORE_STATUS_ERROR_PERMANENT_SERVICE_DENIED = 0xE1;
|
|
||||||
public static final int STORE_STATUS_ERROR_PERMANENT_MESSAGE_FORMAT_CORRUPT = 0xE2;
|
|
||||||
public static final int STORE_STATUS_ERROR_PERMANENT_MESSAGE_NOT_FOUND = 0xE3;
|
|
||||||
public static final int STORE_STATUS_ERROR_PERMANENT_MMBOX_FULL = 0xE4;
|
|
||||||
public static final int STORE_STATUS_ERROR_END = 0xFF;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The map contains the value of all headers.
|
|
||||||
*/
|
|
||||||
private SparseArray<Object> mHeaderMap = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor of PduHeaders.
|
|
||||||
*/
|
|
||||||
public PduHeaders() {
|
|
||||||
mHeaderMap = new SparseArray<>();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get octet value by header field.
|
|
||||||
*
|
|
||||||
* @param field the field
|
|
||||||
* @return the octet value of the pdu header
|
|
||||||
* with specified header field. Return 0 if
|
|
||||||
* the value is not set.
|
|
||||||
*/
|
|
||||||
protected int getOctet(int field) {
|
|
||||||
Integer octet = (Integer) mHeaderMap.get(field);
|
|
||||||
if (null == octet) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return octet;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set octet value to pdu header by header field.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @param field the field
|
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
|
||||||
*/
|
|
||||||
protected void setOctet(int value, int field)
|
|
||||||
throws InvalidHeaderValueException {
|
|
||||||
/**
|
|
||||||
* Check whether this field can be set for specific
|
|
||||||
* header and check validity of the field.
|
|
||||||
*/
|
|
||||||
switch (field) {
|
|
||||||
case REPORT_ALLOWED:
|
|
||||||
case ADAPTATION_ALLOWED:
|
|
||||||
case DELIVERY_REPORT:
|
|
||||||
case DRM_CONTENT:
|
|
||||||
case DISTRIBUTION_INDICATOR:
|
|
||||||
case QUOTAS:
|
|
||||||
case READ_REPORT:
|
|
||||||
case STORE:
|
|
||||||
case STORED:
|
|
||||||
case TOTALS:
|
|
||||||
case SENDER_VISIBILITY:
|
|
||||||
if ((VALUE_YES != value) && (VALUE_NO != value)) {
|
|
||||||
// Invalid value.
|
|
||||||
throw new InvalidHeaderValueException("Invalid Octet value!");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case READ_STATUS:
|
|
||||||
if ((READ_STATUS_READ != value) &&
|
|
||||||
(READ_STATUS__DELETED_WITHOUT_BEING_READ != value)) {
|
|
||||||
// Invalid value.
|
|
||||||
throw new InvalidHeaderValueException("Invalid Octet value!");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case CANCEL_STATUS:
|
|
||||||
if ((CANCEL_STATUS_REQUEST_SUCCESSFULLY_RECEIVED != value) &&
|
|
||||||
(CANCEL_STATUS_REQUEST_CORRUPTED != value)) {
|
|
||||||
// Invalid value.
|
|
||||||
throw new InvalidHeaderValueException("Invalid Octet value!");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case PRIORITY:
|
|
||||||
if ((value < PRIORITY_LOW) || (value > PRIORITY_HIGH)) {
|
|
||||||
// Invalid value.
|
|
||||||
throw new InvalidHeaderValueException("Invalid Octet value!");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case STATUS:
|
|
||||||
if ((value < STATUS_EXPIRED) || (value > STATUS_UNREACHABLE)) {
|
|
||||||
// Invalid value.
|
|
||||||
throw new InvalidHeaderValueException("Invalid Octet value!");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case REPLY_CHARGING:
|
|
||||||
if ((value < REPLY_CHARGING_REQUESTED)
|
|
||||||
|| (value > REPLY_CHARGING_ACCEPTED_TEXT_ONLY)) {
|
|
||||||
// Invalid value.
|
|
||||||
throw new InvalidHeaderValueException("Invalid Octet value!");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case MM_STATE:
|
|
||||||
if ((value < MM_STATE_DRAFT) || (value > MM_STATE_FORWARDED)) {
|
|
||||||
// Invalid value.
|
|
||||||
throw new InvalidHeaderValueException("Invalid Octet value!");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case RECOMMENDED_RETRIEVAL_MODE:
|
|
||||||
if (RECOMMENDED_RETRIEVAL_MODE_MANUAL != value) {
|
|
||||||
// Invalid value.
|
|
||||||
throw new InvalidHeaderValueException("Invalid Octet value!");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case CONTENT_CLASS:
|
|
||||||
if ((value < CONTENT_CLASS_TEXT)
|
|
||||||
|| (value > CONTENT_CLASS_CONTENT_RICH)) {
|
|
||||||
// Invalid value.
|
|
||||||
throw new InvalidHeaderValueException("Invalid Octet value!");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case RETRIEVE_STATUS:
|
|
||||||
// According to oma-ts-mms-enc-v1_3, section 7.3.50, we modify the invalid value.
|
|
||||||
if ((value > RETRIEVE_STATUS_ERROR_TRANSIENT_NETWORK_PROBLEM) &&
|
|
||||||
(value < RETRIEVE_STATUS_ERROR_PERMANENT_FAILURE)) {
|
|
||||||
value = RETRIEVE_STATUS_ERROR_TRANSIENT_FAILURE;
|
|
||||||
} else if ((value > RETRIEVE_STATUS_ERROR_PERMANENT_CONTENT_UNSUPPORTED) &&
|
|
||||||
(value <= RETRIEVE_STATUS_ERROR_END)) {
|
|
||||||
value = RETRIEVE_STATUS_ERROR_PERMANENT_FAILURE;
|
|
||||||
} else if ((value < RETRIEVE_STATUS_OK) ||
|
|
||||||
((value > RETRIEVE_STATUS_OK) &&
|
|
||||||
(value < RETRIEVE_STATUS_ERROR_TRANSIENT_FAILURE)) ||
|
|
||||||
(value > RETRIEVE_STATUS_ERROR_END)) {
|
|
||||||
value = RETRIEVE_STATUS_ERROR_PERMANENT_FAILURE;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case STORE_STATUS:
|
|
||||||
// According to oma-ts-mms-enc-v1_3, section 7.3.58, we modify the invalid value.
|
|
||||||
if ((value > STORE_STATUS_ERROR_TRANSIENT_NETWORK_PROBLEM) &&
|
|
||||||
(value < STORE_STATUS_ERROR_PERMANENT_FAILURE)) {
|
|
||||||
value = STORE_STATUS_ERROR_TRANSIENT_FAILURE;
|
|
||||||
} else if ((value > STORE_STATUS_ERROR_PERMANENT_MMBOX_FULL) &&
|
|
||||||
(value <= STORE_STATUS_ERROR_END)) {
|
|
||||||
value = STORE_STATUS_ERROR_PERMANENT_FAILURE;
|
|
||||||
} else if ((value < STORE_STATUS_SUCCESS) ||
|
|
||||||
((value > STORE_STATUS_SUCCESS) &&
|
|
||||||
(value < STORE_STATUS_ERROR_TRANSIENT_FAILURE)) ||
|
|
||||||
(value > STORE_STATUS_ERROR_END)) {
|
|
||||||
value = STORE_STATUS_ERROR_PERMANENT_FAILURE;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case RESPONSE_STATUS:
|
|
||||||
// According to oma-ts-mms-enc-v1_3, section 7.3.48, we modify the invalid value.
|
|
||||||
if ((value > RESPONSE_STATUS_ERROR_TRANSIENT_PARTIAL_SUCCESS) &&
|
|
||||||
(value < RESPONSE_STATUS_ERROR_PERMANENT_FAILURE)) {
|
|
||||||
value = RESPONSE_STATUS_ERROR_TRANSIENT_FAILURE;
|
|
||||||
} else if (((value > RESPONSE_STATUS_ERROR_PERMANENT_LACK_OF_PREPAID) &&
|
|
||||||
(value <= RESPONSE_STATUS_ERROR_PERMANENT_END)) ||
|
|
||||||
(value < RESPONSE_STATUS_OK) ||
|
|
||||||
((value > RESPONSE_STATUS_ERROR_UNSUPPORTED_MESSAGE) &&
|
|
||||||
(value < RESPONSE_STATUS_ERROR_TRANSIENT_FAILURE)) ||
|
|
||||||
(value > RESPONSE_STATUS_ERROR_PERMANENT_END)) {
|
|
||||||
value = RESPONSE_STATUS_ERROR_PERMANENT_FAILURE;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case MMS_VERSION:
|
|
||||||
if ((value < MMS_VERSION_1_0) || (value > MMS_VERSION_1_3)) {
|
|
||||||
value = CURRENT_MMS_VERSION; // Current version is the default value.
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case MESSAGE_TYPE:
|
|
||||||
if ((value < MESSAGE_TYPE_SEND_REQ) || (value > MESSAGE_TYPE_CANCEL_CONF)) {
|
|
||||||
// Invalid value.
|
|
||||||
throw new InvalidHeaderValueException("Invalid Octet value!");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
// This header value should not be Octect.
|
|
||||||
throw new RuntimeException("Invalid header field!");
|
|
||||||
}
|
|
||||||
mHeaderMap.put(field, value);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get TextString value by header field.
|
|
||||||
*
|
|
||||||
* @param field the field
|
|
||||||
* @return the TextString value of the pdu header
|
|
||||||
* with specified header field
|
|
||||||
*/
|
|
||||||
protected byte[] getTextString(int field) {
|
|
||||||
return (byte[]) mHeaderMap.get(field);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set TextString value to pdu header by header field.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @param field the field
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
protected void setTextString(byte[] value, int field) {
|
|
||||||
/**
|
|
||||||
* Check whether this field can be set for specific
|
|
||||||
* header and check validity of the field.
|
|
||||||
*/
|
|
||||||
if (null == value) {
|
|
||||||
throw new NullPointerException();
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (field) {
|
|
||||||
case TRANSACTION_ID:
|
|
||||||
case REPLY_CHARGING_ID:
|
|
||||||
case AUX_APPLIC_ID:
|
|
||||||
case APPLIC_ID:
|
|
||||||
case REPLY_APPLIC_ID:
|
|
||||||
case MESSAGE_ID:
|
|
||||||
case REPLACE_ID:
|
|
||||||
case CANCEL_ID:
|
|
||||||
case CONTENT_LOCATION:
|
|
||||||
case MESSAGE_CLASS:
|
|
||||||
case CONTENT_TYPE:
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
// This header value should not be Text-String.
|
|
||||||
throw new RuntimeException("Invalid header field!");
|
|
||||||
}
|
|
||||||
mHeaderMap.put(field, value);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get EncodedStringValue value by header field.
|
|
||||||
*
|
|
||||||
* @param field the field
|
|
||||||
* @return the EncodedStringValue value of the pdu header
|
|
||||||
* with specified header field
|
|
||||||
*/
|
|
||||||
protected EncodedStringValue getEncodedStringValue(int field) {
|
|
||||||
return (EncodedStringValue) mHeaderMap.get(field);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get TO, CC or BCC header value.
|
|
||||||
*
|
|
||||||
* @param field the field
|
|
||||||
* @return the EncodeStringValue array of the pdu header
|
|
||||||
* with specified header field
|
|
||||||
*/
|
|
||||||
protected EncodedStringValue[] getEncodedStringValues(int field) {
|
|
||||||
ArrayList<EncodedStringValue> list =
|
|
||||||
(ArrayList<EncodedStringValue>) mHeaderMap.get(field);
|
|
||||||
if (null == list) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
EncodedStringValue[] values = new EncodedStringValue[list.size()];
|
|
||||||
return list.toArray(values);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set EncodedStringValue value to pdu header by header field.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @param field the field
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
protected void setEncodedStringValue(EncodedStringValue value, int field) {
|
|
||||||
/**
|
|
||||||
* Check whether this field can be set for specific
|
|
||||||
* header and check validity of the field.
|
|
||||||
*/
|
|
||||||
if (null == value) {
|
|
||||||
throw new NullPointerException();
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (field) {
|
|
||||||
case SUBJECT:
|
|
||||||
case RECOMMENDED_RETRIEVAL_MODE_TEXT:
|
|
||||||
case RETRIEVE_TEXT:
|
|
||||||
case STATUS_TEXT:
|
|
||||||
case STORE_STATUS_TEXT:
|
|
||||||
case RESPONSE_TEXT:
|
|
||||||
case FROM:
|
|
||||||
case PREVIOUSLY_SENT_BY:
|
|
||||||
case MM_FLAGS:
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
// This header value should not be Encoded-String-Value.
|
|
||||||
throw new RuntimeException("Invalid header field!");
|
|
||||||
}
|
|
||||||
|
|
||||||
mHeaderMap.put(field, value);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set TO, CC or BCC header value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @param field the field
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
protected void setEncodedStringValues(EncodedStringValue[] value, int field) {
|
|
||||||
/**
|
|
||||||
* Check whether this field can be set for specific
|
|
||||||
* header and check validity of the field.
|
|
||||||
*/
|
|
||||||
if (null == value) {
|
|
||||||
throw new NullPointerException();
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (field) {
|
|
||||||
case BCC:
|
|
||||||
case CC:
|
|
||||||
case TO:
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
// This header value should not be Encoded-String-Value.
|
|
||||||
throw new RuntimeException("Invalid header field!");
|
|
||||||
}
|
|
||||||
|
|
||||||
ArrayList<EncodedStringValue> list = new ArrayList<>();
|
|
||||||
Collections.addAll(list, value);
|
|
||||||
mHeaderMap.put(field, list);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Append one EncodedStringValue to another.
|
|
||||||
*
|
|
||||||
* @param value the EncodedStringValue to append
|
|
||||||
* @param field the field
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
protected void appendEncodedStringValue(EncodedStringValue value,
|
|
||||||
int field) {
|
|
||||||
if (null == value) {
|
|
||||||
throw new NullPointerException();
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (field) {
|
|
||||||
case BCC:
|
|
||||||
case CC:
|
|
||||||
case TO:
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
throw new RuntimeException("Invalid header field!");
|
|
||||||
}
|
|
||||||
|
|
||||||
ArrayList<EncodedStringValue> list =
|
|
||||||
(ArrayList<EncodedStringValue>) mHeaderMap.get(field);
|
|
||||||
if (null == list) {
|
|
||||||
list = new ArrayList<>();
|
|
||||||
}
|
|
||||||
list.add(value);
|
|
||||||
mHeaderMap.put(field, list);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get LongInteger value by header field.
|
|
||||||
*
|
|
||||||
* @param field the field
|
|
||||||
* @return the LongInteger value of the pdu header
|
|
||||||
* with specified header field. if return -1, the
|
|
||||||
* field is not existed in pdu header.
|
|
||||||
*/
|
|
||||||
protected long getLongInteger(int field) {
|
|
||||||
Long longInteger = (Long) mHeaderMap.get(field);
|
|
||||||
if (null == longInteger) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return longInteger.longValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set LongInteger value to pdu header by header field.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @param field the field
|
|
||||||
*/
|
|
||||||
protected void setLongInteger(long value, int field) {
|
|
||||||
/**
|
|
||||||
* Check whether this field can be set for specific
|
|
||||||
* header and check validity of the field.
|
|
||||||
*/
|
|
||||||
switch (field) {
|
|
||||||
case DATE:
|
|
||||||
case REPLY_CHARGING_SIZE:
|
|
||||||
case MESSAGE_SIZE:
|
|
||||||
case MESSAGE_COUNT:
|
|
||||||
case START:
|
|
||||||
case LIMIT:
|
|
||||||
case DELIVERY_TIME:
|
|
||||||
case EXPIRY:
|
|
||||||
case REPLY_CHARGING_DEADLINE:
|
|
||||||
case PREVIOUSLY_SENT_DATE:
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
// This header value should not be LongInteger.
|
|
||||||
throw new RuntimeException("Invalid header field!");
|
|
||||||
}
|
|
||||||
mHeaderMap.put(field, value);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean hasHeader(int field) {
|
|
||||||
return mHeaderMap.get(field, null) != null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,390 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007-2008 Esmertec AG.
|
|
||||||
* Copyright (C) 2007-2008 The Android Open Source Project
|
|
||||||
* Copyright (C) 2024 The LineageOS Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
import android.net.Uri;
|
|
||||||
import android.util.SparseArray;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The pdu part.
|
|
||||||
*/
|
|
||||||
public class PduPart {
|
|
||||||
/**
|
|
||||||
* Well-Known Parameters.
|
|
||||||
*/
|
|
||||||
public static final int P_Q = 0x80;
|
|
||||||
public static final int P_CHARSET = 0x81;
|
|
||||||
public static final int P_LEVEL = 0x82;
|
|
||||||
public static final int P_TYPE = 0x83;
|
|
||||||
public static final int P_DEP_NAME = 0x85;
|
|
||||||
public static final int P_DEP_FILENAME = 0x86;
|
|
||||||
public static final int P_DIFFERENCES = 0x87;
|
|
||||||
public static final int P_PADDING = 0x88;
|
|
||||||
// This value of "TYPE" s used with Content-Type: multipart/related
|
|
||||||
public static final int P_CT_MR_TYPE = 0x89;
|
|
||||||
public static final int P_DEP_START = 0x8A;
|
|
||||||
public static final int P_DEP_START_INFO = 0x8B;
|
|
||||||
public static final int P_DEP_COMMENT = 0x8C;
|
|
||||||
public static final int P_DEP_DOMAIN = 0x8D;
|
|
||||||
public static final int P_MAX_AGE = 0x8E;
|
|
||||||
public static final int P_DEP_PATH = 0x8F;
|
|
||||||
public static final int P_SECURE = 0x90;
|
|
||||||
public static final int P_SEC = 0x91;
|
|
||||||
public static final int P_MAC = 0x92;
|
|
||||||
public static final int P_CREATION_DATE = 0x93;
|
|
||||||
public static final int P_MODIFICATION_DATE = 0x94;
|
|
||||||
public static final int P_READ_DATE = 0x95;
|
|
||||||
public static final int P_SIZE = 0x96;
|
|
||||||
public static final int P_NAME = 0x97;
|
|
||||||
public static final int P_FILENAME = 0x98;
|
|
||||||
public static final int P_START = 0x99;
|
|
||||||
public static final int P_START_INFO = 0x9A;
|
|
||||||
public static final int P_COMMENT = 0x9B;
|
|
||||||
public static final int P_DOMAIN = 0x9C;
|
|
||||||
public static final int P_PATH = 0x9D;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Header field names.
|
|
||||||
*/
|
|
||||||
public static final int P_CONTENT_TYPE = 0x91;
|
|
||||||
public static final int P_CONTENT_LOCATION = 0x8E;
|
|
||||||
public static final int P_CONTENT_ID = 0xC0;
|
|
||||||
public static final int P_DEP_CONTENT_DISPOSITION = 0xAE;
|
|
||||||
public static final int P_CONTENT_DISPOSITION = 0xC5;
|
|
||||||
// The next header is unassigned header, use reserved header(0x48) value.
|
|
||||||
public static final int P_CONTENT_TRANSFER_ENCODING = 0xC8;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Content=Transfer-Encoding string.
|
|
||||||
*/
|
|
||||||
public static final String CONTENT_TRANSFER_ENCODING =
|
|
||||||
"Content-Transfer-Encoding";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Value of Content-Transfer-Encoding.
|
|
||||||
*/
|
|
||||||
public static final String P_BINARY = "binary";
|
|
||||||
public static final String P_7BIT = "7bit";
|
|
||||||
public static final String P_8BIT = "8bit";
|
|
||||||
public static final String P_BASE64 = "base64";
|
|
||||||
public static final String P_QUOTED_PRINTABLE = "quoted-printable";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Value of disposition can be set to PduPart when the value is octet in
|
|
||||||
* the PDU.
|
|
||||||
* "from-data" instead of Form-data<Octet 128>.
|
|
||||||
* "attachment" instead of Attachment<Octet 129>.
|
|
||||||
* "inline" instead of Inline<Octet 130>.
|
|
||||||
*/
|
|
||||||
static final byte[] DISPOSITION_FROM_DATA = "from-data".getBytes();
|
|
||||||
static final byte[] DISPOSITION_ATTACHMENT = "attachment".getBytes();
|
|
||||||
static final byte[] DISPOSITION_INLINE = "inline".getBytes();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Content-Disposition value.
|
|
||||||
*/
|
|
||||||
public static final int P_DISPOSITION_FROM_DATA = 0x80;
|
|
||||||
public static final int P_DISPOSITION_ATTACHMENT = 0x81;
|
|
||||||
public static final int P_DISPOSITION_INLINE = 0x82;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Header of part.
|
|
||||||
*/
|
|
||||||
private SparseArray<Object> mPartHeader = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Data uri.
|
|
||||||
*/
|
|
||||||
private Uri mUri = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Part data.
|
|
||||||
*/
|
|
||||||
private byte[] mPartData = null;
|
|
||||||
|
|
||||||
private static final String TAG = "PduPart";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Empty Constructor.
|
|
||||||
*/
|
|
||||||
public PduPart() {
|
|
||||||
mPartHeader = new SparseArray<>();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set part data. The data are stored as byte array.
|
|
||||||
*
|
|
||||||
* @param data the data
|
|
||||||
*/
|
|
||||||
public void setData(final byte[] data) {
|
|
||||||
mPartData = data;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return The part data or null if the data wasn't set or
|
|
||||||
* the data is stored as Uri.
|
|
||||||
* @see #getDataUri
|
|
||||||
*/
|
|
||||||
public byte[] getData() {
|
|
||||||
return mPartData;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set data uri. The data are stored as Uri.
|
|
||||||
*
|
|
||||||
* @param uri the uri
|
|
||||||
*/
|
|
||||||
public void setDataUri(final Uri uri) {
|
|
||||||
mUri = uri;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return The Uri of the part data or null if the data wasn't set or
|
|
||||||
* the data is stored as byte array.
|
|
||||||
* @see #getData
|
|
||||||
*/
|
|
||||||
public Uri getDataUri() {
|
|
||||||
return mUri;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Content-id value
|
|
||||||
*
|
|
||||||
* @param contentId the content-id value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setContentId(final byte[] contentId) {
|
|
||||||
if ((contentId == null) || (contentId.length == 0)) {
|
|
||||||
throw new IllegalArgumentException(
|
|
||||||
"Content-Id may not be null or empty.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((contentId.length > 1)
|
|
||||||
&& ((char) contentId[0] == '<')
|
|
||||||
&& ((char) contentId[contentId.length - 1] == '>')) {
|
|
||||||
mPartHeader.put(P_CONTENT_ID, contentId);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Insert beginning '<' and trailing '>' for Content-Id.
|
|
||||||
final byte[] buffer = new byte[contentId.length + 2];
|
|
||||||
buffer[0] = (byte) (0xff & '<');
|
|
||||||
buffer[buffer.length - 1] = (byte) (0xff & '>');
|
|
||||||
System.arraycopy(contentId, 0, buffer, 1, contentId.length);
|
|
||||||
mPartHeader.put(P_CONTENT_ID, buffer);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Content-id value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public byte[] getContentId() {
|
|
||||||
return (byte[]) mPartHeader.get(P_CONTENT_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Char-set value.
|
|
||||||
*
|
|
||||||
* @param charset the value
|
|
||||||
*/
|
|
||||||
public void setCharset(final int charset) {
|
|
||||||
mPartHeader.put(P_CHARSET, charset);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Char-set value
|
|
||||||
*
|
|
||||||
* @return the charset value. Return 0 if charset was not set.
|
|
||||||
*/
|
|
||||||
public int getCharset() {
|
|
||||||
final Integer charset = (Integer) mPartHeader.get(P_CHARSET);
|
|
||||||
if (charset == null) {
|
|
||||||
return 0;
|
|
||||||
} else {
|
|
||||||
return charset.intValue();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Content-Location value.
|
|
||||||
*
|
|
||||||
* @param contentLocation the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setContentLocation(final byte[] contentLocation) {
|
|
||||||
if (contentLocation == null) {
|
|
||||||
throw new NullPointerException("null content-location");
|
|
||||||
}
|
|
||||||
|
|
||||||
mPartHeader.put(P_CONTENT_LOCATION, contentLocation);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Content-Location value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
* return PduPart.disposition[0] instead of <Octet 128> (Form-data).
|
|
||||||
* return PduPart.disposition[1] instead of <Octet 129> (Attachment).
|
|
||||||
* return PduPart.disposition[2] instead of <Octet 130> (Inline).
|
|
||||||
*/
|
|
||||||
public byte[] getContentLocation() {
|
|
||||||
return (byte[]) mPartHeader.get(P_CONTENT_LOCATION);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Content-Disposition value.
|
|
||||||
* Use PduPart.disposition[0] instead of <Octet 128> (Form-data).
|
|
||||||
* Use PduPart.disposition[1] instead of <Octet 129> (Attachment).
|
|
||||||
* Use PduPart.disposition[2] instead of <Octet 130> (Inline).
|
|
||||||
*
|
|
||||||
* @param contentDisposition the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setContentDisposition(final byte[] contentDisposition) {
|
|
||||||
if (contentDisposition == null) {
|
|
||||||
throw new NullPointerException("null content-disposition");
|
|
||||||
}
|
|
||||||
|
|
||||||
mPartHeader.put(P_CONTENT_DISPOSITION, contentDisposition);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Content-Disposition value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public byte[] getContentDisposition() {
|
|
||||||
return (byte[]) mPartHeader.get(P_CONTENT_DISPOSITION);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Content-Type value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setContentType(final byte[] contentType) {
|
|
||||||
if (contentType == null) {
|
|
||||||
throw new NullPointerException("null content-type");
|
|
||||||
}
|
|
||||||
|
|
||||||
mPartHeader.put(P_CONTENT_TYPE, contentType);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Content-Type value of part.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public byte[] getContentType() {
|
|
||||||
return (byte[]) mPartHeader.get(P_CONTENT_TYPE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Content-Transfer-Encoding value
|
|
||||||
*
|
|
||||||
* @param contentId the content-id value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setContentTransferEncoding(final byte[] contentTransferEncoding) {
|
|
||||||
if (contentTransferEncoding == null) {
|
|
||||||
throw new NullPointerException("null content-transfer-encoding");
|
|
||||||
}
|
|
||||||
|
|
||||||
mPartHeader.put(P_CONTENT_TRANSFER_ENCODING, contentTransferEncoding);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Content-Transfer-Encoding value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public byte[] getContentTransferEncoding() {
|
|
||||||
return (byte[]) mPartHeader.get(P_CONTENT_TRANSFER_ENCODING);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Content-type parameter: name.
|
|
||||||
*
|
|
||||||
* @param name the name value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setName(final byte[] name) {
|
|
||||||
if (null == name) {
|
|
||||||
throw new NullPointerException("null content-id");
|
|
||||||
}
|
|
||||||
|
|
||||||
mPartHeader.put(P_NAME, name);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get content-type parameter: name.
|
|
||||||
*
|
|
||||||
* @return the name
|
|
||||||
*/
|
|
||||||
public byte[] getName() {
|
|
||||||
return (byte[]) mPartHeader.get(P_NAME);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Content-disposition parameter: filename
|
|
||||||
*
|
|
||||||
* @param fileName the filename value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setFilename(final byte[] fileName) {
|
|
||||||
if (null == fileName) {
|
|
||||||
throw new NullPointerException("null content-id");
|
|
||||||
}
|
|
||||||
|
|
||||||
mPartHeader.put(P_FILENAME, fileName);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Content-disposition parameter: filename
|
|
||||||
*
|
|
||||||
* @return the filename
|
|
||||||
*/
|
|
||||||
public byte[] getFilename() {
|
|
||||||
return (byte[]) mPartHeader.get(P_FILENAME);
|
|
||||||
}
|
|
||||||
|
|
||||||
public String generateLocation() {
|
|
||||||
// Assumption: At least one of the content-location / name / filename
|
|
||||||
// or content-id should be set. This is guaranteed by the PduParser
|
|
||||||
// for incoming messages and by MM composer for outgoing messages.
|
|
||||||
byte[] location = (byte[]) mPartHeader.get(P_NAME);
|
|
||||||
if (null == location) {
|
|
||||||
location = (byte[]) mPartHeader.get(P_FILENAME);
|
|
||||||
|
|
||||||
if (null == location) {
|
|
||||||
location = (byte[]) mPartHeader.get(P_CONTENT_LOCATION);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (null == location) {
|
|
||||||
final byte[] contentId = (byte[]) mPartHeader.get(P_CONTENT_ID);
|
|
||||||
return "cid:" + new String(contentId);
|
|
||||||
} else {
|
|
||||||
return new String(location);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -31,15 +31,32 @@ import android.provider.Telephony.Mms.Addr;
|
|||||||
import android.provider.Telephony.Mms.Part;
|
import android.provider.Telephony.Mms.Part;
|
||||||
import android.provider.Telephony.MmsSms;
|
import android.provider.Telephony.MmsSms;
|
||||||
import android.provider.Telephony.MmsSms.PendingMessages;
|
import android.provider.Telephony.MmsSms.PendingMessages;
|
||||||
import androidx.collection.SimpleArrayMap;
|
import android.support.v7.mms.pdu.AcknowledgeInd;
|
||||||
|
import android.support.v7.mms.pdu.CharacterSets;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
|
import android.support.v7.mms.pdu.DeliveryInd;
|
||||||
|
import android.support.v7.mms.pdu.EncodedStringValue;
|
||||||
|
import android.support.v7.mms.pdu.GenericPdu;
|
||||||
|
import android.support.v7.mms.pdu.InvalidHeaderValueException;
|
||||||
|
import android.support.v7.mms.pdu.MmsException;
|
||||||
|
import android.support.v7.mms.pdu.MultimediaMessagePdu;
|
||||||
|
import android.support.v7.mms.pdu.NotificationInd;
|
||||||
|
import android.support.v7.mms.pdu.NotifyRespInd;
|
||||||
|
import android.support.v7.mms.pdu.PduBody;
|
||||||
|
import android.support.v7.mms.pdu.PduHeaders;
|
||||||
|
import android.support.v7.mms.pdu.PduPart;
|
||||||
|
import android.support.v7.mms.pdu.ReadOrigInd;
|
||||||
|
import android.support.v7.mms.pdu.ReadRecInd;
|
||||||
|
import android.support.v7.mms.pdu.RetrieveConf;
|
||||||
|
import android.support.v7.mms.pdu.SendReq;
|
||||||
import android.telephony.PhoneNumberUtils;
|
import android.telephony.PhoneNumberUtils;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
import android.util.SparseArray;
|
import android.util.SparseArray;
|
||||||
import android.util.SparseIntArray;
|
import android.util.SparseIntArray;
|
||||||
|
|
||||||
import com.android.messaging.mmslib.InvalidHeaderValueException;
|
import androidx.collection.SimpleArrayMap;
|
||||||
import com.android.messaging.mmslib.MmsException;
|
|
||||||
import com.android.messaging.mmslib.SqliteWrapper;
|
import com.android.messaging.mmslib.SqliteWrapper;
|
||||||
import com.android.messaging.mmslib.util.DownloadDrmHelper;
|
import com.android.messaging.mmslib.util.DownloadDrmHelper;
|
||||||
import com.android.messaging.mmslib.util.DrmConvertSession;
|
import com.android.messaging.mmslib.util.DrmConvertSession;
|
||||||
@@ -47,7 +64,6 @@ import com.android.messaging.mmslib.util.PduCache;
|
|||||||
import com.android.messaging.mmslib.util.PduCacheEntry;
|
import com.android.messaging.mmslib.util.PduCacheEntry;
|
||||||
import com.android.messaging.sms.MmsSmsUtils;
|
import com.android.messaging.sms.MmsSmsUtils;
|
||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
import com.android.messaging.util.UriUtil;
|
import com.android.messaging.util.UriUtil;
|
||||||
|
|
||||||
|
|||||||
@@ -1,69 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007 Esmertec AG.
|
|
||||||
* Copyright (C) 2007 The Android Open Source Project
|
|
||||||
* Copyright (C) 2024 The LineageOS Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
import java.io.ByteArrayOutputStream;
|
|
||||||
|
|
||||||
public class QuotedPrintable {
|
|
||||||
private static final byte ESCAPE_CHAR = '=';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Decodes an array quoted-printable characters into an array of original bytes.
|
|
||||||
* Escaped characters are converted back to their original representation.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* This function implements a subset of
|
|
||||||
* quoted-printable encoding specification (rule #1 and rule #2)
|
|
||||||
* as defined in RFC 1521.
|
|
||||||
* </p>
|
|
||||||
*
|
|
||||||
* @param bytes array of quoted-printable characters
|
|
||||||
* @return array of original bytes,
|
|
||||||
* null if quoted-printable decoding is unsuccessful.
|
|
||||||
*/
|
|
||||||
public static byte[] decodeQuotedPrintable(byte[] bytes) {
|
|
||||||
if (bytes == null) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
|
|
||||||
for (int i = 0; i < bytes.length; i++) {
|
|
||||||
int b = bytes[i];
|
|
||||||
if (b == ESCAPE_CHAR) {
|
|
||||||
try {
|
|
||||||
if ('\r' == (char) bytes[i + 1] &&
|
|
||||||
'\n' == (char) bytes[i + 2]) {
|
|
||||||
i += 2;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
int u = Character.digit((char) bytes[++i], 16);
|
|
||||||
int l = Character.digit((char) bytes[++i], 16);
|
|
||||||
if (u == -1 || l == -1) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
buffer.write((char) ((u << 4) + l));
|
|
||||||
} catch (ArrayIndexOutOfBoundsException e) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
buffer.write(b);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return buffer.toByteArray();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,153 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007 Esmertec AG.
|
|
||||||
* Copyright (C) 2007 The Android Open Source Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
import com.android.messaging.mmslib.InvalidHeaderValueException;
|
|
||||||
|
|
||||||
public class ReadOrigInd extends GenericPdu {
|
|
||||||
/**
|
|
||||||
* Empty constructor.
|
|
||||||
* Since the Pdu corresponding to this class is constructed
|
|
||||||
* by the Proxy-Relay server, this class is only instantiated
|
|
||||||
* by the Pdu Parser.
|
|
||||||
*
|
|
||||||
* @throws InvalidHeaderValueException if error occurs.
|
|
||||||
*/
|
|
||||||
public ReadOrigInd() throws InvalidHeaderValueException {
|
|
||||||
super();
|
|
||||||
setMessageType(PduHeaders.MESSAGE_TYPE_READ_ORIG_IND);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor with given headers.
|
|
||||||
*
|
|
||||||
* @param headers Headers for this PDU.
|
|
||||||
*/
|
|
||||||
ReadOrigInd(PduHeaders headers) {
|
|
||||||
super(headers);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Date value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public long getDate() {
|
|
||||||
return mPduHeaders.getLongInteger(PduHeaders.DATE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Date value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
*/
|
|
||||||
public void setDate(long value) {
|
|
||||||
mPduHeaders.setLongInteger(value, PduHeaders.DATE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get From value.
|
|
||||||
* From-value = Value-length
|
|
||||||
* (Address-present-token Encoded-string-value | Insert-address-token)
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public EncodedStringValue getFrom() {
|
|
||||||
return mPduHeaders.getEncodedStringValue(PduHeaders.FROM);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set From value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setFrom(EncodedStringValue value) {
|
|
||||||
mPduHeaders.setEncodedStringValue(value, PduHeaders.FROM);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Message-ID value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public byte[] getMessageId() {
|
|
||||||
return mPduHeaders.getTextString(PduHeaders.MESSAGE_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Message-ID value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setMessageId(byte[] value) {
|
|
||||||
mPduHeaders.setTextString(value, PduHeaders.MESSAGE_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-MMS-Read-status value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public int getReadStatus() {
|
|
||||||
return mPduHeaders.getOctet(PduHeaders.READ_STATUS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-MMS-Read-status value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
|
||||||
*/
|
|
||||||
public void setReadStatus(int value) throws InvalidHeaderValueException {
|
|
||||||
mPduHeaders.setOctet(value, PduHeaders.READ_STATUS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get To value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public EncodedStringValue[] getTo() {
|
|
||||||
return mPduHeaders.getEncodedStringValues(PduHeaders.TO);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set To value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setTo(EncodedStringValue[] value) {
|
|
||||||
mPduHeaders.setEncodedStringValues(value, PduHeaders.TO);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Optional, not supported header fields:
|
|
||||||
*
|
|
||||||
* public byte[] getApplicId() {return null;}
|
|
||||||
* public void setApplicId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getAuxApplicId() {return null;}
|
|
||||||
* public void getAuxApplicId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getReplyApplicId() {return 0x00;}
|
|
||||||
* public void setReplyApplicId(byte[] value) {}
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
@@ -1,144 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007 Esmertec AG.
|
|
||||||
* Copyright (C) 2007 The Android Open Source Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
import com.android.messaging.mmslib.InvalidHeaderValueException;
|
|
||||||
|
|
||||||
public class ReadRecInd extends GenericPdu {
|
|
||||||
/**
|
|
||||||
* Constructor, used when composing a M-ReadRec.ind pdu.
|
|
||||||
*
|
|
||||||
* @param from the from value
|
|
||||||
* @param messageId the message ID value
|
|
||||||
* @param mmsVersion current viersion of mms
|
|
||||||
* @param readStatus the read status value
|
|
||||||
* @param to the to value
|
|
||||||
* @throws InvalidHeaderValueException if parameters are invalid.
|
|
||||||
* @throws NullPointerException if messageId or to is null.
|
|
||||||
*/
|
|
||||||
public ReadRecInd(EncodedStringValue from,
|
|
||||||
byte[] messageId,
|
|
||||||
int mmsVersion,
|
|
||||||
int readStatus,
|
|
||||||
EncodedStringValue[] to) throws InvalidHeaderValueException {
|
|
||||||
super();
|
|
||||||
setMessageType(PduHeaders.MESSAGE_TYPE_READ_REC_IND);
|
|
||||||
setFrom(from);
|
|
||||||
setMessageId(messageId);
|
|
||||||
setMmsVersion(mmsVersion);
|
|
||||||
setTo(to);
|
|
||||||
setReadStatus(readStatus);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor with given headers.
|
|
||||||
*
|
|
||||||
* @param headers Headers for this PDU.
|
|
||||||
*/
|
|
||||||
ReadRecInd(PduHeaders headers) {
|
|
||||||
super(headers);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Date value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public long getDate() {
|
|
||||||
return mPduHeaders.getLongInteger(PduHeaders.DATE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Date value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
*/
|
|
||||||
public void setDate(long value) {
|
|
||||||
mPduHeaders.setLongInteger(value, PduHeaders.DATE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Message-ID value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public byte[] getMessageId() {
|
|
||||||
return mPduHeaders.getTextString(PduHeaders.MESSAGE_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Message-ID value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setMessageId(byte[] value) {
|
|
||||||
mPduHeaders.setTextString(value, PduHeaders.MESSAGE_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get To value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public EncodedStringValue[] getTo() {
|
|
||||||
return mPduHeaders.getEncodedStringValues(PduHeaders.TO);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set To value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setTo(EncodedStringValue[] value) {
|
|
||||||
mPduHeaders.setEncodedStringValues(value, PduHeaders.TO);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-MMS-Read-status value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public int getReadStatus() {
|
|
||||||
return mPduHeaders.getOctet(PduHeaders.READ_STATUS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-MMS-Read-status value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
|
||||||
*/
|
|
||||||
public void setReadStatus(int value) throws InvalidHeaderValueException {
|
|
||||||
mPduHeaders.setOctet(value, PduHeaders.READ_STATUS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Optional, not supported header fields:
|
|
||||||
*
|
|
||||||
* public byte[] getApplicId() {return null;}
|
|
||||||
* public void setApplicId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getAuxApplicId() {return null;}
|
|
||||||
* public void getAuxApplicId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getReplyApplicId() {return 0x00;}
|
|
||||||
* public void setReplyApplicId(byte[] value) {}
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
@@ -1,305 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007 Esmertec AG.
|
|
||||||
* Copyright (C) 2007 The Android Open Source Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
import com.android.messaging.mmslib.InvalidHeaderValueException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* M-Retrive.conf Pdu.
|
|
||||||
*/
|
|
||||||
public class RetrieveConf extends MultimediaMessagePdu {
|
|
||||||
/**
|
|
||||||
* Empty constructor.
|
|
||||||
* Since the Pdu corresponding to this class is constructed
|
|
||||||
* by the Proxy-Relay server, this class is only instantiated
|
|
||||||
* by the Pdu Parser.
|
|
||||||
*
|
|
||||||
* @throws InvalidHeaderValueException if error occurs.
|
|
||||||
*/
|
|
||||||
public RetrieveConf() throws InvalidHeaderValueException {
|
|
||||||
super();
|
|
||||||
setMessageType(PduHeaders.MESSAGE_TYPE_RETRIEVE_CONF);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor with given headers.
|
|
||||||
*
|
|
||||||
* @param headers Headers for this PDU.
|
|
||||||
*/
|
|
||||||
RetrieveConf(PduHeaders headers) {
|
|
||||||
super(headers);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor with given headers and body
|
|
||||||
*
|
|
||||||
* @param headers Headers for this PDU.
|
|
||||||
* @param body Body of this PDu.
|
|
||||||
*/
|
|
||||||
RetrieveConf(PduHeaders headers, PduBody body) {
|
|
||||||
super(headers, body);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get CC value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public EncodedStringValue[] getCc() {
|
|
||||||
return mPduHeaders.getEncodedStringValues(PduHeaders.CC);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Add a "CC" value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void addCc(EncodedStringValue value) {
|
|
||||||
mPduHeaders.appendEncodedStringValue(value, PduHeaders.CC);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Content-type value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public byte[] getContentType() {
|
|
||||||
return mPduHeaders.getTextString(PduHeaders.CONTENT_TYPE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Content-type value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setContentType(byte[] value) {
|
|
||||||
mPduHeaders.setTextString(value, PduHeaders.CONTENT_TYPE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Delivery-Report value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public int getDeliveryReport() {
|
|
||||||
return mPduHeaders.getOctet(PduHeaders.DELIVERY_REPORT);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Delivery-Report value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
|
||||||
*/
|
|
||||||
public void setDeliveryReport(int value) throws InvalidHeaderValueException {
|
|
||||||
mPduHeaders.setOctet(value, PduHeaders.DELIVERY_REPORT);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get From value.
|
|
||||||
* From-value = Value-length
|
|
||||||
* (Address-present-token Encoded-string-value | Insert-address-token)
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public EncodedStringValue getFrom() {
|
|
||||||
return mPduHeaders.getEncodedStringValue(PduHeaders.FROM);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set From value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setFrom(EncodedStringValue value) {
|
|
||||||
mPduHeaders.setEncodedStringValue(value, PduHeaders.FROM);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Message-Class value.
|
|
||||||
* Message-class-value = Class-identifier | Token-text
|
|
||||||
* Class-identifier = Personal | Advertisement | Informational | Auto
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public byte[] getMessageClass() {
|
|
||||||
return mPduHeaders.getTextString(PduHeaders.MESSAGE_CLASS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Message-Class value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setMessageClass(byte[] value) {
|
|
||||||
mPduHeaders.setTextString(value, PduHeaders.MESSAGE_CLASS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Message-ID value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public byte[] getMessageId() {
|
|
||||||
return mPduHeaders.getTextString(PduHeaders.MESSAGE_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Message-ID value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setMessageId(byte[] value) {
|
|
||||||
mPduHeaders.setTextString(value, PduHeaders.MESSAGE_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Read-Report value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public int getReadReport() {
|
|
||||||
return mPduHeaders.getOctet(PduHeaders.READ_REPORT);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Read-Report value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
|
||||||
*/
|
|
||||||
public void setReadReport(int value) throws InvalidHeaderValueException {
|
|
||||||
mPduHeaders.setOctet(value, PduHeaders.READ_REPORT);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Retrieve-Status value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public int getRetrieveStatus() {
|
|
||||||
/*
|
|
||||||
* If the header is not there, assuming it is OK status.
|
|
||||||
* Some carriers may choose to not send this header.
|
|
||||||
*/
|
|
||||||
return mPduHeaders.hasHeader(PduHeaders.RETRIEVE_STATUS) ?
|
|
||||||
mPduHeaders.getOctet(PduHeaders.RETRIEVE_STATUS) : PduHeaders.RETRIEVE_STATUS_OK;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Retrieve-Status value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
|
||||||
*/
|
|
||||||
public void setRetrieveStatus(int value) throws InvalidHeaderValueException {
|
|
||||||
mPduHeaders.setOctet(value, PduHeaders.RETRIEVE_STATUS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Retrieve-Text value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public EncodedStringValue getRetrieveText() {
|
|
||||||
return mPduHeaders.getEncodedStringValue(PduHeaders.RETRIEVE_TEXT);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Retrieve-Text value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setRetrieveText(EncodedStringValue value) {
|
|
||||||
mPduHeaders.setEncodedStringValue(value, PduHeaders.RETRIEVE_TEXT);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Transaction-Id.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public byte[] getTransactionId() {
|
|
||||||
return mPduHeaders.getTextString(PduHeaders.TRANSACTION_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Transaction-Id.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setTransactionId(byte[] value) {
|
|
||||||
mPduHeaders.setTextString(value, PduHeaders.TRANSACTION_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Optional, not supported header fields:
|
|
||||||
*
|
|
||||||
* public byte[] getApplicId() {return null;}
|
|
||||||
* public void setApplicId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getAuxApplicId() {return null;}
|
|
||||||
* public void getAuxApplicId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public byte getContentClass() {return 0x00;}
|
|
||||||
* public void setApplicId(byte value) {}
|
|
||||||
*
|
|
||||||
* public byte getDrmContent() {return 0x00;}
|
|
||||||
* public void setDrmContent(byte value) {}
|
|
||||||
*
|
|
||||||
* public byte getDistributionIndicator() {return 0x00;}
|
|
||||||
* public void setDistributionIndicator(byte value) {}
|
|
||||||
*
|
|
||||||
* public PreviouslySentByValue getPreviouslySentBy() {return null;}
|
|
||||||
* public void setPreviouslySentBy(PreviouslySentByValue value) {}
|
|
||||||
*
|
|
||||||
* public PreviouslySentDateValue getPreviouslySentDate() {}
|
|
||||||
* public void setPreviouslySentDate(PreviouslySentDateValue value) {}
|
|
||||||
*
|
|
||||||
* public MmFlagsValue getMmFlags() {return null;}
|
|
||||||
* public void setMmFlags(MmFlagsValue value) {}
|
|
||||||
*
|
|
||||||
* public MmStateValue getMmState() {return null;}
|
|
||||||
* public void getMmState(MmStateValue value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getReplaceId() {return 0x00;}
|
|
||||||
* public void setReplaceId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getReplyApplicId() {return 0x00;}
|
|
||||||
* public void setReplyApplicId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public byte getReplyCharging() {return 0x00;}
|
|
||||||
* public void setReplyCharging(byte value) {}
|
|
||||||
*
|
|
||||||
* public byte getReplyChargingDeadline() {return 0x00;}
|
|
||||||
* public void setReplyChargingDeadline(byte value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getReplyChargingId() {return 0x00;}
|
|
||||||
* public void setReplyChargingId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public long getReplyChargingSize() {return 0;}
|
|
||||||
* public void setReplyChargingSize(long value) {}
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
@@ -1,117 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007 Esmertec AG.
|
|
||||||
* Copyright (C) 2007 The Android Open Source Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
import com.android.messaging.mmslib.InvalidHeaderValueException;
|
|
||||||
|
|
||||||
public class SendConf extends GenericPdu {
|
|
||||||
/**
|
|
||||||
* Empty constructor.
|
|
||||||
* Since the Pdu corresponding to this class is constructed
|
|
||||||
* by the Proxy-Relay server, this class is only instantiated
|
|
||||||
* by the Pdu Parser.
|
|
||||||
*
|
|
||||||
* @throws InvalidHeaderValueException if error occurs.
|
|
||||||
*/
|
|
||||||
public SendConf() throws InvalidHeaderValueException {
|
|
||||||
super();
|
|
||||||
setMessageType(PduHeaders.MESSAGE_TYPE_SEND_CONF);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor with given headers.
|
|
||||||
*
|
|
||||||
* @param headers Headers for this PDU.
|
|
||||||
*/
|
|
||||||
SendConf(PduHeaders headers) {
|
|
||||||
super(headers);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Message-ID value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public byte[] getMessageId() {
|
|
||||||
return mPduHeaders.getTextString(PduHeaders.MESSAGE_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Message-ID value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setMessageId(byte[] value) {
|
|
||||||
mPduHeaders.setTextString(value, PduHeaders.MESSAGE_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Response-Status.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public int getResponseStatus() {
|
|
||||||
return mPduHeaders.getOctet(PduHeaders.RESPONSE_STATUS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Response-Status.
|
|
||||||
*
|
|
||||||
* @param value the values
|
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
|
||||||
*/
|
|
||||||
public void setResponseStatus(int value) throws InvalidHeaderValueException {
|
|
||||||
mPduHeaders.setOctet(value, PduHeaders.RESPONSE_STATUS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Transaction-Id field value.
|
|
||||||
*
|
|
||||||
* @return the X-Mms-Report-Allowed value
|
|
||||||
*/
|
|
||||||
public byte[] getTransactionId() {
|
|
||||||
return mPduHeaders.getTextString(PduHeaders.TRANSACTION_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Transaction-Id field value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setTransactionId(byte[] value) {
|
|
||||||
mPduHeaders.setTextString(value, PduHeaders.TRANSACTION_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Optional, not supported header fields:
|
|
||||||
*
|
|
||||||
* public byte[] getContentLocation() {return null;}
|
|
||||||
* public void setContentLocation(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public EncodedStringValue getResponseText() {return null;}
|
|
||||||
* public void setResponseText(EncodedStringValue value) {}
|
|
||||||
*
|
|
||||||
* public byte getStoreStatus() {return 0x00;}
|
|
||||||
* public void setStoreStatus(byte value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getStoreStatusText() {return null;}
|
|
||||||
* public void setStoreStatusText(byte[] value) {}
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
@@ -1,346 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007-2008 Esmertec AG.
|
|
||||||
* Copyright (C) 2007-2008 The Android Open Source Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.mmslib.pdu;
|
|
||||||
|
|
||||||
import android.util.Log;
|
|
||||||
|
|
||||||
import com.android.messaging.mmslib.InvalidHeaderValueException;
|
|
||||||
|
|
||||||
public class SendReq extends MultimediaMessagePdu {
|
|
||||||
private static final String TAG = "SendReq";
|
|
||||||
|
|
||||||
public SendReq() {
|
|
||||||
super();
|
|
||||||
|
|
||||||
try {
|
|
||||||
setMessageType(PduHeaders.MESSAGE_TYPE_SEND_REQ);
|
|
||||||
setMmsVersion(PduHeaders.CURRENT_MMS_VERSION);
|
|
||||||
// TODO: Content-type must be decided according to whether
|
|
||||||
// SMIL part present.
|
|
||||||
setContentType("application/vnd.wap.multipart.related".getBytes());
|
|
||||||
setFrom(new EncodedStringValue(PduHeaders.FROM_INSERT_ADDRESS_TOKEN_STR.getBytes()));
|
|
||||||
setTransactionId(generateTransactionId());
|
|
||||||
} catch (InvalidHeaderValueException e) {
|
|
||||||
// Impossible to reach here since all headers we set above are valid.
|
|
||||||
Log.e(TAG, "Unexpected InvalidHeaderValueException.", e);
|
|
||||||
throw new RuntimeException(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private byte[] generateTransactionId() {
|
|
||||||
String transactionId = "T" + Long.toHexString(System.currentTimeMillis());
|
|
||||||
return transactionId.getBytes();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor, used when composing a M-Send.req pdu.
|
|
||||||
*
|
|
||||||
* @param contentType the content type value
|
|
||||||
* @param from the from value
|
|
||||||
* @param mmsVersion current viersion of mms
|
|
||||||
* @param transactionId the transaction-id value
|
|
||||||
* @throws InvalidHeaderValueException if parameters are invalid.
|
|
||||||
* NullPointerException if contentType, form or
|
|
||||||
* transactionId is null.
|
|
||||||
*/
|
|
||||||
public SendReq(byte[] contentType,
|
|
||||||
EncodedStringValue from,
|
|
||||||
int mmsVersion,
|
|
||||||
byte[] transactionId) throws InvalidHeaderValueException {
|
|
||||||
super();
|
|
||||||
setMessageType(PduHeaders.MESSAGE_TYPE_SEND_REQ);
|
|
||||||
setContentType(contentType);
|
|
||||||
setFrom(from);
|
|
||||||
setMmsVersion(mmsVersion);
|
|
||||||
setTransactionId(transactionId);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor with given headers.
|
|
||||||
*
|
|
||||||
* @param headers Headers for this PDU.
|
|
||||||
*/
|
|
||||||
SendReq(PduHeaders headers) {
|
|
||||||
super(headers);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor with given headers and body
|
|
||||||
*
|
|
||||||
* @param headers Headers for this PDU.
|
|
||||||
* @param body Body of this PDu.
|
|
||||||
*/
|
|
||||||
SendReq(PduHeaders headers, PduBody body) {
|
|
||||||
super(headers, body);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Bcc value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public EncodedStringValue[] getBcc() {
|
|
||||||
return mPduHeaders.getEncodedStringValues(PduHeaders.BCC);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Add a "BCC" value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void addBcc(EncodedStringValue value) {
|
|
||||||
mPduHeaders.appendEncodedStringValue(value, PduHeaders.BCC);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set "BCC" value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setBcc(EncodedStringValue[] value) {
|
|
||||||
mPduHeaders.setEncodedStringValues(value, PduHeaders.BCC);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get CC value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public EncodedStringValue[] getCc() {
|
|
||||||
return mPduHeaders.getEncodedStringValues(PduHeaders.CC);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Add a "CC" value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void addCc(EncodedStringValue value) {
|
|
||||||
mPduHeaders.appendEncodedStringValue(value, PduHeaders.CC);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set "CC" value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setCc(EncodedStringValue[] value) {
|
|
||||||
mPduHeaders.setEncodedStringValues(value, PduHeaders.CC);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Content-type value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public byte[] getContentType() {
|
|
||||||
return mPduHeaders.getTextString(PduHeaders.CONTENT_TYPE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set Content-type value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setContentType(byte[] value) {
|
|
||||||
mPduHeaders.setTextString(value, PduHeaders.CONTENT_TYPE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Delivery-Report value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public int getDeliveryReport() {
|
|
||||||
return mPduHeaders.getOctet(PduHeaders.DELIVERY_REPORT);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Delivery-Report value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
|
||||||
*/
|
|
||||||
public void setDeliveryReport(int value) throws InvalidHeaderValueException {
|
|
||||||
mPduHeaders.setOctet(value, PduHeaders.DELIVERY_REPORT);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Expiry value.
|
|
||||||
*
|
|
||||||
* Expiry-value = Value-length
|
|
||||||
* (Absolute-token Date-value | Relative-token Delta-seconds-value)
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public long getExpiry() {
|
|
||||||
return mPduHeaders.getLongInteger(PduHeaders.EXPIRY);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Expiry value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
*/
|
|
||||||
public void setExpiry(long value) {
|
|
||||||
mPduHeaders.setLongInteger(value, PduHeaders.EXPIRY);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-MessageSize value.
|
|
||||||
*
|
|
||||||
* Expiry-value = size of message
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public long getMessageSize() {
|
|
||||||
return mPduHeaders.getLongInteger(PduHeaders.MESSAGE_SIZE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-MessageSize value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
*/
|
|
||||||
public void setMessageSize(long value) {
|
|
||||||
mPduHeaders.setLongInteger(value, PduHeaders.MESSAGE_SIZE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Message-Class value.
|
|
||||||
* Message-class-value = Class-identifier | Token-text
|
|
||||||
* Class-identifier = Personal | Advertisement | Informational | Auto
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public byte[] getMessageClass() {
|
|
||||||
return mPduHeaders.getTextString(PduHeaders.MESSAGE_CLASS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Message-Class value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setMessageClass(byte[] value) {
|
|
||||||
mPduHeaders.setTextString(value, PduHeaders.MESSAGE_CLASS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Read-Report value.
|
|
||||||
*
|
|
||||||
* @return the value
|
|
||||||
*/
|
|
||||||
public int getReadReport() {
|
|
||||||
return mPduHeaders.getOctet(PduHeaders.READ_REPORT);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Read-Report value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws InvalidHeaderValueException if the value is invalid.
|
|
||||||
*/
|
|
||||||
public void setReadReport(int value) throws InvalidHeaderValueException {
|
|
||||||
mPduHeaders.setOctet(value, PduHeaders.READ_REPORT);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set "To" value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setTo(EncodedStringValue[] value) {
|
|
||||||
mPduHeaders.setEncodedStringValues(value, PduHeaders.TO);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get X-Mms-Transaction-Id field value.
|
|
||||||
*
|
|
||||||
* @return the X-Mms-Report-Allowed value
|
|
||||||
*/
|
|
||||||
public byte[] getTransactionId() {
|
|
||||||
return mPduHeaders.getTextString(PduHeaders.TRANSACTION_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set X-Mms-Transaction-Id field value.
|
|
||||||
*
|
|
||||||
* @param value the value
|
|
||||||
* @throws NullPointerException if the value is null.
|
|
||||||
*/
|
|
||||||
public void setTransactionId(byte[] value) {
|
|
||||||
mPduHeaders.setTextString(value, PduHeaders.TRANSACTION_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Optional, not supported header fields:
|
|
||||||
*
|
|
||||||
* public byte getAdaptationAllowed() {return 0};
|
|
||||||
* public void setAdaptationAllowed(btye value) {};
|
|
||||||
*
|
|
||||||
* public byte[] getApplicId() {return null;}
|
|
||||||
* public void setApplicId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getAuxApplicId() {return null;}
|
|
||||||
* public void getAuxApplicId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public byte getContentClass() {return 0x00;}
|
|
||||||
* public void setApplicId(byte value) {}
|
|
||||||
*
|
|
||||||
* public long getDeliveryTime() {return 0};
|
|
||||||
* public void setDeliveryTime(long value) {};
|
|
||||||
*
|
|
||||||
* public byte getDrmContent() {return 0x00;}
|
|
||||||
* public void setDrmContent(byte value) {}
|
|
||||||
*
|
|
||||||
* public MmFlagsValue getMmFlags() {return null;}
|
|
||||||
* public void setMmFlags(MmFlagsValue value) {}
|
|
||||||
*
|
|
||||||
* public MmStateValue getMmState() {return null;}
|
|
||||||
* public void getMmState(MmStateValue value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getReplyApplicId() {return 0x00;}
|
|
||||||
* public void setReplyApplicId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public byte getReplyCharging() {return 0x00;}
|
|
||||||
* public void setReplyCharging(byte value) {}
|
|
||||||
*
|
|
||||||
* public byte getReplyChargingDeadline() {return 0x00;}
|
|
||||||
* public void setReplyChargingDeadline(byte value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getReplyChargingId() {return 0x00;}
|
|
||||||
* public void setReplyChargingId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public long getReplyChargingSize() {return 0;}
|
|
||||||
* public void setReplyChargingSize(long value) {}
|
|
||||||
*
|
|
||||||
* public byte[] getReplyApplicId() {return 0x00;}
|
|
||||||
* public void setReplyApplicId(byte[] value) {}
|
|
||||||
*
|
|
||||||
* public byte getStore() {return 0x00;}
|
|
||||||
* public void setStore(byte value) {}
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
@@ -22,10 +22,11 @@ import android.content.ContentUris;
|
|||||||
import android.content.UriMatcher;
|
import android.content.UriMatcher;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.provider.Telephony.Mms;
|
import android.provider.Telephony.Mms;
|
||||||
import androidx.collection.SimpleArrayMap;
|
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
import android.util.SparseArray;
|
import android.util.SparseArray;
|
||||||
|
|
||||||
|
import androidx.collection.SimpleArrayMap;
|
||||||
|
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
|
|
||||||
public final class PduCache extends AbstractCache<Uri, PduCacheEntry> {
|
public final class PduCache extends AbstractCache<Uri, PduCacheEntry> {
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2008 Esmertec AG.
|
* Copyright (C) 2008 Esmertec AG.
|
||||||
* Copyright (C) 2008 The Android Open Source Project
|
* Copyright (C) 2008 The Android Open Source Project
|
||||||
|
* Copyright (C) 2025 The LineageOS Project
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@@ -17,7 +18,7 @@
|
|||||||
|
|
||||||
package com.android.messaging.mmslib.util;
|
package com.android.messaging.mmslib.util;
|
||||||
|
|
||||||
import com.android.messaging.mmslib.pdu.GenericPdu;
|
import android.support.v7.mms.pdu.GenericPdu;
|
||||||
|
|
||||||
public final class PduCacheEntry {
|
public final class PduCacheEntry {
|
||||||
private final GenericPdu mPdu;
|
private final GenericPdu mPdu;
|
||||||
|
|||||||
@@ -21,9 +21,9 @@ import android.content.BroadcastReceiver;
|
|||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.provider.Telephony;
|
import android.provider.Telephony;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
|
|
||||||
import com.android.messaging.datamodel.action.ReceiveMmsMessageAction;
|
import com.android.messaging.datamodel.action.ReceiveMmsMessageAction;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.PhoneUtils;
|
import com.android.messaging.util.PhoneUtils;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -29,14 +29,14 @@ import android.os.Parcel;
|
|||||||
import android.os.Parcelable;
|
import android.os.Parcelable;
|
||||||
import android.provider.Telephony.Mms;
|
import android.provider.Telephony.Mms;
|
||||||
import android.provider.Telephony.Sms;
|
import android.provider.Telephony.Sms;
|
||||||
|
import android.support.v7.mms.pdu.CharacterSets;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
import android.webkit.MimeTypeMap;
|
import android.webkit.MimeTypeMap;
|
||||||
|
|
||||||
import com.android.messaging.Factory;
|
import com.android.messaging.Factory;
|
||||||
import com.android.messaging.datamodel.data.MessageData;
|
import com.android.messaging.datamodel.data.MessageData;
|
||||||
import com.android.messaging.mmslib.pdu.CharacterSets;
|
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
import com.android.messaging.util.MediaMetadataRetrieverWrapper;
|
import com.android.messaging.util.MediaMetadataRetrieverWrapper;
|
||||||
import com.android.messaging.util.PhoneUtils;
|
import com.android.messaging.util.PhoneUtils;
|
||||||
|
|||||||
@@ -24,22 +24,22 @@ import android.content.Intent;
|
|||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.support.v7.mms.MmsManager;
|
import android.support.v7.mms.MmsManager;
|
||||||
|
import android.support.v7.mms.pdu.AcknowledgeInd;
|
||||||
|
import android.support.v7.mms.pdu.EncodedStringValue;
|
||||||
|
import android.support.v7.mms.pdu.GenericPdu;
|
||||||
|
import android.support.v7.mms.pdu.InvalidHeaderValueException;
|
||||||
|
import android.support.v7.mms.pdu.NotifyRespInd;
|
||||||
|
import android.support.v7.mms.pdu.PduHeaders;
|
||||||
|
import android.support.v7.mms.pdu.PduParser;
|
||||||
|
import android.support.v7.mms.pdu.RetrieveConf;
|
||||||
|
import android.support.v7.mms.pdu.SendConf;
|
||||||
|
import android.support.v7.mms.pdu.SendReq;
|
||||||
import android.telephony.SmsManager;
|
import android.telephony.SmsManager;
|
||||||
|
|
||||||
import com.android.messaging.datamodel.MmsFileProvider;
|
import com.android.messaging.datamodel.MmsFileProvider;
|
||||||
import com.android.messaging.datamodel.action.SendMessageAction;
|
import com.android.messaging.datamodel.action.SendMessageAction;
|
||||||
import com.android.messaging.datamodel.data.MessageData;
|
import com.android.messaging.datamodel.data.MessageData;
|
||||||
import com.android.messaging.mmslib.InvalidHeaderValueException;
|
|
||||||
import com.android.messaging.mmslib.pdu.AcknowledgeInd;
|
|
||||||
import com.android.messaging.mmslib.pdu.EncodedStringValue;
|
|
||||||
import com.android.messaging.mmslib.pdu.GenericPdu;
|
|
||||||
import com.android.messaging.mmslib.pdu.NotifyRespInd;
|
|
||||||
import com.android.messaging.mmslib.pdu.PduComposer;
|
import com.android.messaging.mmslib.pdu.PduComposer;
|
||||||
import com.android.messaging.mmslib.pdu.PduHeaders;
|
|
||||||
import com.android.messaging.mmslib.pdu.PduParser;
|
|
||||||
import com.android.messaging.mmslib.pdu.RetrieveConf;
|
|
||||||
import com.android.messaging.mmslib.pdu.SendConf;
|
|
||||||
import com.android.messaging.mmslib.pdu.SendReq;
|
|
||||||
import com.android.messaging.receiver.SendStatusReceiver;
|
import com.android.messaging.receiver.SendStatusReceiver;
|
||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
@@ -65,7 +65,7 @@ public class MmsSender {
|
|||||||
* @param sendReq The SendReq PDU of the message
|
* @param sendReq The SendReq PDU of the message
|
||||||
*/
|
*/
|
||||||
public static void sendMms(final Context context, final int subId, final Uri messageUri,
|
public static void sendMms(final Context context, final int subId, final Uri messageUri,
|
||||||
final SendReq sendReq, final Bundle sentIntentExras) throws MmsFailureException {
|
final SendReq sendReq, final Bundle sentIntentExras) throws MmsFailureException {
|
||||||
sendMms(context,
|
sendMms(context,
|
||||||
subId,
|
subId,
|
||||||
messageUri,
|
messageUri,
|
||||||
@@ -139,8 +139,8 @@ public class MmsSender {
|
|||||||
* Sending of AcknowledgeInd and NotifyRespInd are not important.
|
* Sending of AcknowledgeInd and NotifyRespInd are not important.
|
||||||
*/
|
*/
|
||||||
private static void sendMms(final Context context, final int subId, final Uri messageUri,
|
private static void sendMms(final Context context, final int subId, final Uri messageUri,
|
||||||
final String locationUrl, final GenericPdu pdu, final boolean responseImportant,
|
final String locationUrl, final GenericPdu pdu, final boolean responseImportant,
|
||||||
final Bundle sentIntentExtras) throws MmsFailureException {
|
final Bundle sentIntentExtras) throws MmsFailureException {
|
||||||
// Write PDU to temporary file to send to platform
|
// Write PDU to temporary file to send to platform
|
||||||
final Uri contentUri = writePduToTempFile(context, pdu, subId);
|
final Uri contentUri = writePduToTempFile(context, pdu, subId);
|
||||||
|
|
||||||
|
|||||||
@@ -33,6 +33,20 @@ import android.provider.Telephony;
|
|||||||
import android.provider.Telephony.Mms;
|
import android.provider.Telephony.Mms;
|
||||||
import android.provider.Telephony.Sms;
|
import android.provider.Telephony.Sms;
|
||||||
import android.provider.Telephony.Threads;
|
import android.provider.Telephony.Threads;
|
||||||
|
import android.support.v7.mms.pdu.CharacterSets;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
|
import android.support.v7.mms.pdu.EncodedStringValue;
|
||||||
|
import android.support.v7.mms.pdu.GenericPdu;
|
||||||
|
import android.support.v7.mms.pdu.InvalidHeaderValueException;
|
||||||
|
import android.support.v7.mms.pdu.MmsException;
|
||||||
|
import android.support.v7.mms.pdu.NotificationInd;
|
||||||
|
import android.support.v7.mms.pdu.PduBody;
|
||||||
|
import android.support.v7.mms.pdu.PduHeaders;
|
||||||
|
import android.support.v7.mms.pdu.PduParser;
|
||||||
|
import android.support.v7.mms.pdu.PduPart;
|
||||||
|
import android.support.v7.mms.pdu.RetrieveConf;
|
||||||
|
import android.support.v7.mms.pdu.SendConf;
|
||||||
|
import android.support.v7.mms.pdu.SendReq;
|
||||||
import android.telephony.SmsMessage;
|
import android.telephony.SmsMessage;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
|
|
||||||
@@ -43,27 +57,13 @@ import com.android.messaging.datamodel.action.DownloadMmsAction;
|
|||||||
import com.android.messaging.datamodel.action.SendMessageAction;
|
import com.android.messaging.datamodel.action.SendMessageAction;
|
||||||
import com.android.messaging.datamodel.data.MessageData;
|
import com.android.messaging.datamodel.data.MessageData;
|
||||||
import com.android.messaging.datamodel.data.MessagePartData;
|
import com.android.messaging.datamodel.data.MessagePartData;
|
||||||
import com.android.messaging.mmslib.InvalidHeaderValueException;
|
|
||||||
import com.android.messaging.mmslib.MmsException;
|
|
||||||
import com.android.messaging.mmslib.SqliteWrapper;
|
import com.android.messaging.mmslib.SqliteWrapper;
|
||||||
import com.android.messaging.mmslib.pdu.CharacterSets;
|
|
||||||
import com.android.messaging.mmslib.pdu.EncodedStringValue;
|
|
||||||
import com.android.messaging.mmslib.pdu.GenericPdu;
|
|
||||||
import com.android.messaging.mmslib.pdu.NotificationInd;
|
|
||||||
import com.android.messaging.mmslib.pdu.PduBody;
|
|
||||||
import com.android.messaging.mmslib.pdu.PduComposer;
|
import com.android.messaging.mmslib.pdu.PduComposer;
|
||||||
import com.android.messaging.mmslib.pdu.PduHeaders;
|
|
||||||
import com.android.messaging.mmslib.pdu.PduParser;
|
|
||||||
import com.android.messaging.mmslib.pdu.PduPart;
|
|
||||||
import com.android.messaging.mmslib.pdu.PduPersister;
|
import com.android.messaging.mmslib.pdu.PduPersister;
|
||||||
import com.android.messaging.mmslib.pdu.RetrieveConf;
|
|
||||||
import com.android.messaging.mmslib.pdu.SendConf;
|
|
||||||
import com.android.messaging.mmslib.pdu.SendReq;
|
|
||||||
import com.android.messaging.sms.SmsSender.SendResult;
|
import com.android.messaging.sms.SmsSender.SendResult;
|
||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.BugleGservicesKeys;
|
import com.android.messaging.util.BugleGservicesKeys;
|
||||||
import com.android.messaging.util.BuglePrefs;
|
import com.android.messaging.util.BuglePrefs;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.DebugUtils;
|
import com.android.messaging.util.DebugUtils;
|
||||||
import com.android.messaging.util.EmailAddress;
|
import com.android.messaging.util.EmailAddress;
|
||||||
import com.android.messaging.util.ImageUtils;
|
import com.android.messaging.util.ImageUtils;
|
||||||
@@ -917,7 +917,7 @@ public class MmsUtils {
|
|||||||
|
|
||||||
// Persist a sent MMS message in telephony
|
// Persist a sent MMS message in telephony
|
||||||
private static Uri insertSendReq(final Context context, final GenericPdu pdu, final int subId,
|
private static Uri insertSendReq(final Context context, final GenericPdu pdu, final int subId,
|
||||||
final String subPhoneNumber) {
|
final String subPhoneNumber) {
|
||||||
final PduPersister persister = PduPersister.getPduPersister(context);
|
final PduPersister persister = PduPersister.getPduPersister(context);
|
||||||
Uri uri = null;
|
Uri uri = null;
|
||||||
try {
|
try {
|
||||||
@@ -941,8 +941,8 @@ public class MmsUtils {
|
|||||||
|
|
||||||
// Persist a received MMS message in telephony
|
// Persist a received MMS message in telephony
|
||||||
public static Uri insertReceivedMmsMessage(final Context context,
|
public static Uri insertReceivedMmsMessage(final Context context,
|
||||||
final RetrieveConf retrieveConf, final int subId, final String subPhoneNumber,
|
final RetrieveConf retrieveConf, final int subId, final String subPhoneNumber,
|
||||||
final long receivedTimestampInSeconds, final long expiry, final String transactionId) {
|
final long receivedTimestampInSeconds, final long expiry, final String transactionId) {
|
||||||
final PduPersister persister = PduPersister.getPduPersister(context);
|
final PduPersister persister = PduPersister.getPduPersister(context);
|
||||||
Uri uri = null;
|
Uri uri = null;
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -21,6 +21,8 @@ import android.content.res.Resources;
|
|||||||
import android.graphics.Rect;
|
import android.graphics.Rect;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
|
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
@@ -42,7 +44,6 @@ import com.android.messaging.datamodel.media.UriImageRequestDescriptor;
|
|||||||
import com.android.messaging.ui.MultiAttachmentLayout.OnAttachmentClickListener;
|
import com.android.messaging.ui.MultiAttachmentLayout.OnAttachmentClickListener;
|
||||||
import com.android.messaging.ui.PersonItemView.PersonItemViewListener;
|
import com.android.messaging.ui.PersonItemView.PersonItemViewListener;
|
||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.ImageUtils;
|
import com.android.messaging.util.ImageUtils;
|
||||||
import com.android.messaging.util.UiUtils;
|
import com.android.messaging.util.UiUtils;
|
||||||
import com.android.messaging.util.UriUtil;
|
import com.android.messaging.util.UriUtil;
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ import android.media.AudioManager;
|
|||||||
import android.media.MediaPlayer;
|
import android.media.MediaPlayer;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.SystemClock;
|
import android.os.SystemClock;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
import android.util.AttributeSet;
|
import android.util.AttributeSet;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
@@ -40,7 +41,6 @@ import com.android.messaging.R;
|
|||||||
import com.android.messaging.datamodel.data.MessagePartData;
|
import com.android.messaging.datamodel.data.MessagePartData;
|
||||||
import com.android.messaging.ui.mediapicker.PausableChronometer;
|
import com.android.messaging.ui.mediapicker.PausableChronometer;
|
||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
import com.android.messaging.util.UiUtils;
|
import com.android.messaging.util.UiUtils;
|
||||||
|
|
||||||
|
|||||||
@@ -32,6 +32,7 @@ import android.os.Bundle;
|
|||||||
import android.provider.ContactsContract.Contacts;
|
import android.provider.ContactsContract.Contacts;
|
||||||
import android.provider.ContactsContract.Intents;
|
import android.provider.ContactsContract.Intents;
|
||||||
import android.provider.MediaStore;
|
import android.provider.MediaStore;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
|
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
@@ -59,7 +60,6 @@ import com.android.messaging.ui.conversationlist.ForwardMessageActivity;
|
|||||||
import com.android.messaging.ui.conversationsettings.PeopleAndOptionsActivity;
|
import com.android.messaging.ui.conversationsettings.PeopleAndOptionsActivity;
|
||||||
import com.android.messaging.ui.photoviewer.BuglePhotoViewActivity;
|
import com.android.messaging.ui.photoviewer.BuglePhotoViewActivity;
|
||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.ConversationIdSet;
|
import com.android.messaging.util.ConversationIdSet;
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
import com.android.messaging.util.UiUtils;
|
import com.android.messaging.util.UiUtils;
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ import android.net.Uri;
|
|||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.os.Handler;
|
import android.os.Handler;
|
||||||
import android.os.Looper;
|
import android.os.Looper;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.text.Editable;
|
import android.text.Editable;
|
||||||
import android.text.Html;
|
import android.text.Html;
|
||||||
import android.text.InputFilter;
|
import android.text.InputFilter;
|
||||||
@@ -68,7 +69,6 @@ import com.android.messaging.util.AccessibilityUtil;
|
|||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.AvatarUriUtil;
|
import com.android.messaging.util.AvatarUriUtil;
|
||||||
import com.android.messaging.util.BuglePrefs;
|
import com.android.messaging.util.BuglePrefs;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
import com.android.messaging.util.MediaUtil;
|
import com.android.messaging.util.MediaUtil;
|
||||||
import com.android.messaging.util.PhoneUtils;
|
import com.android.messaging.util.PhoneUtils;
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ import android.content.Intent;
|
|||||||
import android.graphics.Rect;
|
import android.graphics.Rect;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
import android.view.MenuItem;
|
import android.view.MenuItem;
|
||||||
|
|
||||||
@@ -40,7 +41,6 @@ import com.android.messaging.ui.conversation.ConversationActivityUiState.Convers
|
|||||||
import com.android.messaging.ui.conversation.ConversationFragment.ConversationFragmentHost;
|
import com.android.messaging.ui.conversation.ConversationFragment.ConversationFragmentHost;
|
||||||
import com.android.messaging.ui.conversationlist.ConversationListActivity;
|
import com.android.messaging.ui.conversationlist.ConversationListActivity;
|
||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
import com.android.messaging.util.UiUtils;
|
import com.android.messaging.util.UiUtils;
|
||||||
|
|
||||||
|
|||||||
@@ -36,6 +36,7 @@ import android.os.Environment;
|
|||||||
import android.os.Handler;
|
import android.os.Handler;
|
||||||
import android.os.Looper;
|
import android.os.Looper;
|
||||||
import android.os.Parcelable;
|
import android.os.Parcelable;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.telephony.PhoneNumberUtils;
|
import android.telephony.PhoneNumberUtils;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
import android.view.ActionMode;
|
import android.view.ActionMode;
|
||||||
@@ -49,8 +50,6 @@ import android.view.ViewConfiguration;
|
|||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
|
||||||
import androidx.activity.result.ActivityResult;
|
|
||||||
import androidx.activity.result.ActivityResultCallback;
|
|
||||||
import androidx.activity.result.ActivityResultLauncher;
|
import androidx.activity.result.ActivityResultLauncher;
|
||||||
import androidx.activity.result.contract.ActivityResultContracts;
|
import androidx.activity.result.contract.ActivityResultContracts;
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
@@ -101,10 +100,8 @@ import com.android.messaging.util.AccessibilityUtil;
|
|||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.AvatarUriUtil;
|
import com.android.messaging.util.AvatarUriUtil;
|
||||||
import com.android.messaging.util.ChangeDefaultSmsAppHelper;
|
import com.android.messaging.util.ChangeDefaultSmsAppHelper;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.ImeUtil;
|
import com.android.messaging.util.ImeUtil;
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
import com.android.messaging.util.OsUtil;
|
|
||||||
import com.android.messaging.util.PhoneUtils;
|
import com.android.messaging.util.PhoneUtils;
|
||||||
import com.android.messaging.util.TextUtil;
|
import com.android.messaging.util.TextUtil;
|
||||||
import com.android.messaging.util.UiUtils;
|
import com.android.messaging.util.UiUtils;
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ import android.database.Cursor;
|
|||||||
import android.graphics.Rect;
|
import android.graphics.Rect;
|
||||||
import android.graphics.drawable.Drawable;
|
import android.graphics.drawable.Drawable;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import androidx.annotation.Nullable;
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.text.Spanned;
|
import android.text.Spanned;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
import android.text.format.DateUtils;
|
import android.text.format.DateUtils;
|
||||||
@@ -41,6 +41,8 @@ import android.widget.ImageView.ScaleType;
|
|||||||
import android.widget.LinearLayout;
|
import android.widget.LinearLayout;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
|
||||||
|
import androidx.annotation.Nullable;
|
||||||
|
|
||||||
import com.android.messaging.R;
|
import com.android.messaging.R;
|
||||||
import com.android.messaging.datamodel.DataModel;
|
import com.android.messaging.datamodel.DataModel;
|
||||||
import com.android.messaging.datamodel.data.ConversationMessageData;
|
import com.android.messaging.datamodel.data.ConversationMessageData;
|
||||||
@@ -64,7 +66,6 @@ import com.android.messaging.ui.VideoThumbnailView;
|
|||||||
import com.android.messaging.util.AccessibilityUtil;
|
import com.android.messaging.util.AccessibilityUtil;
|
||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.AvatarUriUtil;
|
import com.android.messaging.util.AvatarUriUtil;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.ImageUtils;
|
import com.android.messaging.util.ImageUtils;
|
||||||
import com.android.messaging.util.LinkifyHelper;
|
import com.android.messaging.util.LinkifyHelper;
|
||||||
import com.android.messaging.util.OsUtil;
|
import com.android.messaging.util.OsUtil;
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ import android.content.Context;
|
|||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
|
|
||||||
import com.android.messaging.Factory;
|
import com.android.messaging.Factory;
|
||||||
@@ -31,7 +32,6 @@ import com.android.messaging.datamodel.binding.Binding;
|
|||||||
import com.android.messaging.datamodel.binding.BindingBase;
|
import com.android.messaging.datamodel.binding.BindingBase;
|
||||||
import com.android.messaging.datamodel.data.LaunchConversationData;
|
import com.android.messaging.datamodel.data.LaunchConversationData;
|
||||||
import com.android.messaging.ui.UIIntents;
|
import com.android.messaging.ui.UIIntents;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
import com.android.messaging.util.UiUtils;
|
import com.android.messaging.util.UiUtils;
|
||||||
import com.android.messaging.util.UriUtil;
|
import com.android.messaging.util.UriUtil;
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ import android.app.AlertDialog;
|
|||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.res.Resources;
|
import android.content.res.Resources;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
|
import android.support.v7.mms.pdu.PduHeaders;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
import android.text.format.Formatter;
|
import android.text.format.Formatter;
|
||||||
|
|
||||||
@@ -31,7 +32,6 @@ import com.android.messaging.datamodel.DataModel;
|
|||||||
import com.android.messaging.datamodel.data.ConversationMessageData;
|
import com.android.messaging.datamodel.data.ConversationMessageData;
|
||||||
import com.android.messaging.datamodel.data.ConversationParticipantsData;
|
import com.android.messaging.datamodel.data.ConversationParticipantsData;
|
||||||
import com.android.messaging.datamodel.data.ParticipantData;
|
import com.android.messaging.datamodel.data.ParticipantData;
|
||||||
import com.android.messaging.mmslib.pdu.PduHeaders;
|
|
||||||
import com.android.messaging.sms.DatabaseMessages.MmsMessage;
|
import com.android.messaging.sms.DatabaseMessages.MmsMessage;
|
||||||
import com.android.messaging.sms.MmsUtils;
|
import com.android.messaging.sms.MmsUtils;
|
||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ import android.graphics.Rect;
|
|||||||
import android.graphics.Typeface;
|
import android.graphics.Typeface;
|
||||||
import android.graphics.drawable.Drawable;
|
import android.graphics.drawable.Drawable;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.text.TextPaint;
|
import android.text.TextPaint;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
import android.util.AttributeSet;
|
import android.util.AttributeSet;
|
||||||
@@ -55,7 +56,6 @@ import com.android.messaging.ui.ContactIconView;
|
|||||||
import com.android.messaging.ui.SnackBar;
|
import com.android.messaging.ui.SnackBar;
|
||||||
import com.android.messaging.ui.SnackBarInteraction;
|
import com.android.messaging.ui.SnackBarInteraction;
|
||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.ImageUtils;
|
import com.android.messaging.util.ImageUtils;
|
||||||
import com.android.messaging.util.PhoneUtils;
|
import com.android.messaging.util.PhoneUtils;
|
||||||
import com.android.messaging.util.Typefaces;
|
import com.android.messaging.util.Typefaces;
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ import android.content.Intent;
|
|||||||
import android.media.MediaMetadataRetriever;
|
import android.media.MediaMetadataRetriever;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
@@ -37,17 +38,16 @@ import com.android.messaging.datamodel.data.PendingAttachmentData;
|
|||||||
import com.android.messaging.ui.BaseBugleActivity;
|
import com.android.messaging.ui.BaseBugleActivity;
|
||||||
import com.android.messaging.ui.UIIntents;
|
import com.android.messaging.ui.UIIntents;
|
||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.ContentType;
|
import com.android.messaging.util.FileUtil;
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
import com.android.messaging.util.MediaMetadataRetrieverWrapper;
|
import com.android.messaging.util.MediaMetadataRetrieverWrapper;
|
||||||
import com.android.messaging.util.FileUtil;
|
|
||||||
import com.android.messaging.util.UriUtil;
|
import com.android.messaging.util.UriUtil;
|
||||||
|
|
||||||
import java.io.BufferedReader;
|
import java.io.BufferedReader;
|
||||||
import java.io.FileNotFoundException;
|
import java.io.FileNotFoundException;
|
||||||
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.io.InputStreamReader;
|
import java.io.InputStreamReader;
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ import android.graphics.drawable.Drawable;
|
|||||||
import android.graphics.drawable.GradientDrawable;
|
import android.graphics.drawable.GradientDrawable;
|
||||||
import android.media.MediaRecorder;
|
import android.media.MediaRecorder;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.util.AttributeSet;
|
import android.util.AttributeSet;
|
||||||
import android.view.MotionEvent;
|
import android.view.MotionEvent;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
@@ -42,7 +43,6 @@ import com.android.messaging.datamodel.data.MediaPickerMessagePartData;
|
|||||||
import com.android.messaging.datamodel.data.MessagePartData;
|
import com.android.messaging.datamodel.data.MessagePartData;
|
||||||
import com.android.messaging.sms.MmsConfig;
|
import com.android.messaging.sms.MmsConfig;
|
||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
import com.android.messaging.util.MediaUtil;
|
import com.android.messaging.util.MediaUtil;
|
||||||
import com.android.messaging.util.MediaUtil.OnCompletionListener;
|
import com.android.messaging.util.MediaUtil.OnCompletionListener;
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
package com.android.messaging.ui.mediapicker;
|
package com.android.messaging.ui.mediapicker;
|
||||||
|
|
||||||
import static com.android.messaging.util.ContentType.VIDEO_UNSPECIFIED;
|
import static android.support.v7.mms.pdu.ContentType.VIDEO_UNSPECIFIED;
|
||||||
|
|
||||||
import android.Manifest;
|
import android.Manifest;
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ import android.content.Intent;
|
|||||||
import android.database.Cursor;
|
import android.database.Cursor;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.provider.ContactsContract.Contacts;
|
import android.provider.ContactsContract.Contacts;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
@@ -32,7 +33,6 @@ import androidx.activity.result.contract.ActivityResultContracts;
|
|||||||
|
|
||||||
import com.android.messaging.R;
|
import com.android.messaging.R;
|
||||||
import com.android.messaging.datamodel.data.PendingAttachmentData;
|
import com.android.messaging.datamodel.data.PendingAttachmentData;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
import com.android.messaging.util.UiUtils;
|
import com.android.messaging.util.UiUtils;
|
||||||
|
|
||||||
|
|||||||
@@ -19,12 +19,12 @@ package com.android.messaging.ui.mediapicker;
|
|||||||
import android.media.MediaRecorder;
|
import android.media.MediaRecorder;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.ParcelFileDescriptor;
|
import android.os.ParcelFileDescriptor;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
|
|
||||||
import com.android.messaging.Factory;
|
import com.android.messaging.Factory;
|
||||||
import com.android.messaging.R;
|
import com.android.messaging.R;
|
||||||
import com.android.messaging.datamodel.MediaScratchFileProvider;
|
import com.android.messaging.datamodel.MediaScratchFileProvider;
|
||||||
import com.android.messaging.util.Assert;
|
import com.android.messaging.util.Assert;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
import com.android.messaging.util.UiUtils;
|
import com.android.messaging.util.UiUtils;
|
||||||
|
|
||||||
|
|||||||
@@ -1,171 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2007-2008 Esmertec AG.
|
|
||||||
* Copyright (C) 2007-2008 The Android Open Source Project
|
|
||||||
* Copyright (C) 2024 The LineageOS Project
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.android.messaging.util;
|
|
||||||
|
|
||||||
import android.webkit.MimeTypeMap;
|
|
||||||
|
|
||||||
public final class ContentType {
|
|
||||||
public static final String THREE_GPP_EXTENSION = "3gp";
|
|
||||||
public static final String VIDEO_MP4_EXTENSION = "mp4";
|
|
||||||
// Default extension used when we don't know one.
|
|
||||||
public static final String DEFAULT_EXTENSION = "dat";
|
|
||||||
|
|
||||||
public static final int TYPE_IMAGE = 0;
|
|
||||||
public static final int TYPE_VIDEO = 1;
|
|
||||||
public static final int TYPE_AUDIO = 2;
|
|
||||||
public static final int TYPE_VCARD = 3;
|
|
||||||
public static final int TYPE_OTHER = 4;
|
|
||||||
|
|
||||||
public static final String ANY_TYPE = "*/*";
|
|
||||||
public static final String MMS_MESSAGE = "application/vnd.wap.mms-message";
|
|
||||||
// The phony content type for generic PDUs (e.g. ReadOrig.ind,
|
|
||||||
// Notification.ind, Delivery.ind).
|
|
||||||
public static final String MMS_GENERIC = "application/vnd.wap.mms-generic";
|
|
||||||
public static final String MMS_MULTIPART_MIXED = "application/vnd.wap.multipart.mixed";
|
|
||||||
public static final String MMS_MULTIPART_RELATED = "application/vnd.wap.multipart.related";
|
|
||||||
public static final String MMS_MULTIPART_ALTERNATIVE =
|
|
||||||
"application/vnd.wap.multipart.alternative";
|
|
||||||
|
|
||||||
public static final String TEXT_PLAIN = "text/plain";
|
|
||||||
public static final String TEXT_HTML = "text/html";
|
|
||||||
public static final String TEXT_VCALENDAR = "text/vCalendar";
|
|
||||||
public static final String TEXT_VCARD = "text/vCard";
|
|
||||||
public static final String TEXT_X_VCALENDAR = "text/x-vCalendar";
|
|
||||||
public static final String TEXT_X_VCARD = "text/x-vCard";
|
|
||||||
|
|
||||||
public static final String IMAGE_PREFIX = "image/";
|
|
||||||
public static final String IMAGE_UNSPECIFIED = "image/*";
|
|
||||||
public static final String IMAGE_JPEG = "image/jpeg";
|
|
||||||
public static final String IMAGE_JPG = "image/jpg";
|
|
||||||
public static final String IMAGE_GIF = "image/gif";
|
|
||||||
public static final String IMAGE_WBMP = "image/vnd.wap.wbmp";
|
|
||||||
public static final String IMAGE_PNG = "image/png";
|
|
||||||
public static final String IMAGE_X_MS_BMP = "image/x-ms-bmp";
|
|
||||||
|
|
||||||
public static final String AUDIO_AAC = "audio/aac";
|
|
||||||
public static final String AUDIO_AMR = "audio/amr";
|
|
||||||
public static final String AUDIO_MID = "audio/mid";
|
|
||||||
public static final String AUDIO_MIDI = "audio/midi";
|
|
||||||
public static final String AUDIO_MP3 = "audio/mp3";
|
|
||||||
public static final String AUDIO_MP4 = "audio/mp4";
|
|
||||||
public static final String AUDIO_X_MID = "audio/x-mid";
|
|
||||||
public static final String AUDIO_X_MIDI = "audio/x-midi";
|
|
||||||
public static final String AUDIO_X_MP3 = "audio/x-mp3";
|
|
||||||
public static final String AUDIO_3GPP = "audio/3gpp";
|
|
||||||
public static final String AUDIO_X_WAV = "audio/x-wav";
|
|
||||||
public static final String AUDIO_OGG = "application/ogg";
|
|
||||||
|
|
||||||
public static final String VIDEO_UNSPECIFIED = "video/*";
|
|
||||||
public static final String VIDEO_3GP = "video/3gp";
|
|
||||||
public static final String VIDEO_3GPP = "video/3gpp";
|
|
||||||
public static final String VIDEO_3G2 = "video/3gpp2";
|
|
||||||
public static final String VIDEO_H263 = "video/h263";
|
|
||||||
public static final String VIDEO_M4V = "video/m4v";
|
|
||||||
public static final String VIDEO_MP4 = "video/mp4";
|
|
||||||
public static final String VIDEO_MPEG = "video/mpeg";
|
|
||||||
public static final String VIDEO_MPEG4 = "video/mpeg4";
|
|
||||||
public static final String VIDEO_WEBM = "video/webm";
|
|
||||||
|
|
||||||
public static final String APP_SMIL = "application/smil";
|
|
||||||
public static final String APP_WAP_XHTML = "application/vnd.wap.xhtml+xml";
|
|
||||||
|
|
||||||
// This class should never be instantiated.
|
|
||||||
private ContentType() {
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean isTextType(final String contentType) {
|
|
||||||
return TEXT_PLAIN.equals(contentType)
|
|
||||||
|| TEXT_HTML.equals(contentType)
|
|
||||||
|| APP_WAP_XHTML.equals(contentType);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean isMediaType(final String contentType) {
|
|
||||||
return isImageType(contentType)
|
|
||||||
|| isVideoType(contentType)
|
|
||||||
|| isAudioType(contentType)
|
|
||||||
|| isVCardType(contentType);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean isImageType(final String contentType) {
|
|
||||||
return (null != contentType) && contentType.startsWith(IMAGE_PREFIX);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean isAudioType(final String contentType) {
|
|
||||||
return (null != contentType) &&
|
|
||||||
(contentType.startsWith("audio/") || contentType.equalsIgnoreCase(AUDIO_OGG));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean isVideoType(final String contentType) {
|
|
||||||
return (null != contentType) && contentType.startsWith("video/");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean isVCardType(final String contentType) {
|
|
||||||
return (null != contentType)
|
|
||||||
&& (contentType.equalsIgnoreCase(TEXT_X_VCARD)
|
|
||||||
|| contentType.equalsIgnoreCase(TEXT_VCARD));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* If the content type is a type which can be displayed in the conversation list as a preview.
|
|
||||||
*/
|
|
||||||
public static boolean isConversationListPreviewableType(final String contentType) {
|
|
||||||
return ContentType.isAudioType(contentType) || ContentType.isVideoType(contentType) ||
|
|
||||||
ContentType.isImageType(contentType) || ContentType.isVCardType(contentType);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Given a filename, look at the extension and try and determine the mime type.
|
|
||||||
*
|
|
||||||
* @param fileName a filename to determine the type from, such as img1231.jpg
|
|
||||||
* @param contentTypeDefault type to use when the content type can't be determined from the file
|
|
||||||
* extension. It can be null or a type such as ContentType.IMAGE_UNSPECIFIED
|
|
||||||
* @return Content type of the extension.
|
|
||||||
*/
|
|
||||||
public static String getContentTypeFromExtension(final String fileName,
|
|
||||||
final String contentTypeDefault) {
|
|
||||||
final MimeTypeMap mimeTypeMap = MimeTypeMap.getSingleton();
|
|
||||||
final String extension = MimeTypeMap.getFileExtensionFromUrl(fileName);
|
|
||||||
String contentType = mimeTypeMap.getMimeTypeFromExtension(extension);
|
|
||||||
if (contentType == null) {
|
|
||||||
contentType = contentTypeDefault;
|
|
||||||
}
|
|
||||||
return contentType;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String getExtensionFromMimeType(final String mimeType) {
|
|
||||||
final MimeTypeMap mimeTypeMap = MimeTypeMap.getSingleton();
|
|
||||||
final String extension = mimeTypeMap.getExtensionFromMimeType(mimeType);
|
|
||||||
return extension;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the common file extension for a given content type
|
|
||||||
* @param contentType The content type
|
|
||||||
* @return The extension without the .
|
|
||||||
*/
|
|
||||||
public static String getExtension(final String contentType) {
|
|
||||||
if (VIDEO_MP4.equals(contentType)) {
|
|
||||||
return VIDEO_MP4_EXTENSION;
|
|
||||||
} else if (VIDEO_3GPP.equals(contentType)) {
|
|
||||||
return THREE_GPP_EXTENSION;
|
|
||||||
} else {
|
|
||||||
return DEFAULT_EXTENSION;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -22,6 +22,7 @@ import android.content.Context;
|
|||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.Environment;
|
import android.os.Environment;
|
||||||
import android.os.ParcelFileDescriptor;
|
import android.os.ParcelFileDescriptor;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
|
|
||||||
import com.android.messaging.Factory;
|
import com.android.messaging.Factory;
|
||||||
import com.android.messaging.R;
|
import com.android.messaging.R;
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ import android.graphics.Shader.TileMode;
|
|||||||
import android.graphics.drawable.Drawable;
|
import android.graphics.drawable.Drawable;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.provider.MediaStore;
|
import android.provider.MediaStore;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
|
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ import android.database.Cursor;
|
|||||||
import android.graphics.Typeface;
|
import android.graphics.Typeface;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
|
import android.support.v7.mms.pdu.ContentType;
|
||||||
import android.text.Spannable;
|
import android.text.Spannable;
|
||||||
import android.text.SpannableStringBuilder;
|
import android.text.SpannableStringBuilder;
|
||||||
import android.text.TextPaint;
|
import android.text.TextPaint;
|
||||||
@@ -41,7 +42,6 @@ import com.android.messaging.datamodel.data.ConversationListItemData;
|
|||||||
import com.android.messaging.sms.MmsUtils;
|
import com.android.messaging.sms.MmsUtils;
|
||||||
import com.android.messaging.ui.UIIntents;
|
import com.android.messaging.ui.UIIntents;
|
||||||
import com.android.messaging.ui.conversationlist.ConversationListItemView;
|
import com.android.messaging.ui.conversationlist.ConversationListItemView;
|
||||||
import com.android.messaging.util.ContentType;
|
|
||||||
import com.android.messaging.util.Dates;
|
import com.android.messaging.util.Dates;
|
||||||
import com.android.messaging.util.LogUtil;
|
import com.android.messaging.util.LogUtil;
|
||||||
import com.android.messaging.util.PhoneUtils;
|
import com.android.messaging.util.PhoneUtils;
|
||||||
|
|||||||
Reference in New Issue
Block a user