ActivityChooserModel.java
23.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
package android.support.v7.widget;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.pm.ActivityInfo;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.database.DataSetObservable;
import android.os.AsyncTask;
import android.support.v4.os.AsyncTaskCompat;
import android.text.TextUtils;
import android.util.Log;
import android.util.Xml;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.xmlpull.v1.XmlSerializer;
class ActivityChooserModel
extends DataSetObservable
{
static final String a = ActivityChooserModel.class.getSimpleName();
private static final Object j = new Object();
private static final Map<String, ActivityChooserModel> k = new HashMap();
final Object b = new Object();
final List<ActivityResolveInfo> c = new ArrayList();
final Context d;
final String e;
Intent f;
boolean g = true;
boolean h = false;
OnChooseActivityListener i;
private final List<HistoricalRecord> l = new ArrayList();
private ActivitySorter m = new a();
private int n = 50;
private boolean o = false;
private boolean p = true;
private ActivityChooserModel(Context paramContext, String paramString)
{
this.d = paramContext.getApplicationContext();
if ((!TextUtils.isEmpty(paramString)) && (!paramString.endsWith(".xml")))
{
this.e = (paramString + ".xml");
return;
}
this.e = paramString;
}
public static ActivityChooserModel a(Context paramContext, String paramString)
{
synchronized (j)
{
ActivityChooserModel localActivityChooserModel2 = (ActivityChooserModel)k.get(paramString);
ActivityChooserModel localActivityChooserModel1 = localActivityChooserModel2;
if (localActivityChooserModel2 == null)
{
localActivityChooserModel1 = new ActivityChooserModel(paramContext, paramString);
k.put(paramString, localActivityChooserModel1);
}
return localActivityChooserModel1;
}
}
private boolean e()
{
if ((this.m != null) && (this.f != null) && (!this.c.isEmpty()) && (!this.l.isEmpty()))
{
this.m.sort(this.f, this.c, Collections.unmodifiableList(this.l));
return true;
}
return false;
}
private void f()
{
int i2 = this.l.size() - this.n;
if (i2 <= 0) {}
for (;;)
{
return;
this.p = true;
int i1 = 0;
while (i1 < i2)
{
this.l.remove(0);
i1 += 1;
}
}
}
/* Error */
private void g()
{
// Byte code:
// 0: aload_0
// 1: getfield 109 android/support/v7/widget/ActivityChooserModel:d Landroid/content/Context;
// 4: aload_0
// 5: getfield 135 android/support/v7/widget/ActivityChooserModel:e Ljava/lang/String;
// 8: invokevirtual 183 android/content/Context:openFileInput (Ljava/lang/String;)Ljava/io/FileInputStream;
// 11: astore_2
// 12: invokestatic 189 android/util/Xml:newPullParser ()Lorg/xmlpull/v1/XmlPullParser;
// 15: astore_3
// 16: aload_3
// 17: aload_2
// 18: ldc -65
// 20: invokeinterface 197 3 0
// 25: iconst_0
// 26: istore_1
// 27: iload_1
// 28: iconst_1
// 29: if_icmpeq +18 -> 47
// 32: iload_1
// 33: iconst_2
// 34: if_icmpeq +13 -> 47
// 37: aload_3
// 38: invokeinterface 200 1 0
// 43: istore_1
// 44: goto -17 -> 27
// 47: ldc -54
// 49: aload_3
// 50: invokeinterface 205 1 0
// 55: invokevirtual 209 java/lang/String:equals (Ljava/lang/Object;)Z
// 58: ifne +50 -> 108
// 61: new 177 org/xmlpull/v1/XmlPullParserException
// 64: dup
// 65: ldc -45
// 67: invokespecial 214 org/xmlpull/v1/XmlPullParserException:<init> (Ljava/lang/String;)V
// 70: athrow
// 71: astore_3
// 72: getstatic 62 android/support/v7/widget/ActivityChooserModel:a Ljava/lang/String;
// 75: new 125 java/lang/StringBuilder
// 78: dup
// 79: ldc -40
// 81: invokespecial 217 java/lang/StringBuilder:<init> (Ljava/lang/String;)V
// 84: aload_0
// 85: getfield 135 android/support/v7/widget/ActivityChooserModel:e Ljava/lang/String;
// 88: invokevirtual 130 java/lang/StringBuilder:append (Ljava/lang/String;)Ljava/lang/StringBuilder;
// 91: invokevirtual 133 java/lang/StringBuilder:toString ()Ljava/lang/String;
// 94: aload_3
// 95: invokestatic 222 android/util/Log:e (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)I
// 98: pop
// 99: aload_2
// 100: ifnull +7 -> 107
// 103: aload_2
// 104: invokevirtual 227 java/io/FileInputStream:close ()V
// 107: return
// 108: aload_0
// 109: getfield 86 android/support/v7/widget/ActivityChooserModel:l Ljava/util/List;
// 112: astore 4
// 114: aload 4
// 116: invokeinterface 230 1 0
// 121: aload_3
// 122: invokeinterface 200 1 0
// 127: istore_1
// 128: iload_1
// 129: iconst_1
// 130: if_icmpeq +138 -> 268
// 133: iload_1
// 134: iconst_3
// 135: if_icmpeq -14 -> 121
// 138: iload_1
// 139: iconst_4
// 140: if_icmpeq -19 -> 121
// 143: ldc -24
// 145: aload_3
// 146: invokeinterface 205 1 0
// 151: invokevirtual 209 java/lang/String:equals (Ljava/lang/Object;)Z
// 154: ifne +52 -> 206
// 157: new 177 org/xmlpull/v1/XmlPullParserException
// 160: dup
// 161: ldc -22
// 163: invokespecial 214 org/xmlpull/v1/XmlPullParserException:<init> (Ljava/lang/String;)V
// 166: athrow
// 167: astore_3
// 168: getstatic 62 android/support/v7/widget/ActivityChooserModel:a Ljava/lang/String;
// 171: new 125 java/lang/StringBuilder
// 174: dup
// 175: ldc -40
// 177: invokespecial 217 java/lang/StringBuilder:<init> (Ljava/lang/String;)V
// 180: aload_0
// 181: getfield 135 android/support/v7/widget/ActivityChooserModel:e Ljava/lang/String;
// 184: invokevirtual 130 java/lang/StringBuilder:append (Ljava/lang/String;)Ljava/lang/StringBuilder;
// 187: invokevirtual 133 java/lang/StringBuilder:toString ()Ljava/lang/String;
// 190: aload_3
// 191: invokestatic 222 android/util/Log:e (Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)I
// 194: pop
// 195: aload_2
// 196: ifnull -89 -> 107
// 199: aload_2
// 200: invokevirtual 227 java/io/FileInputStream:close ()V
// 203: return
// 204: astore_2
// 205: return
// 206: aload 4
// 208: new 15 android/support/v7/widget/ActivityChooserModel$HistoricalRecord
// 211: dup
// 212: aload_3
// 213: aconst_null
// 214: ldc -20
// 216: invokeinterface 240 3 0
// 221: aload_3
// 222: aconst_null
// 223: ldc -14
// 225: invokeinterface 240 3 0
// 230: invokestatic 248 java/lang/Long:parseLong (Ljava/lang/String;)J
// 233: aload_3
// 234: aconst_null
// 235: ldc -6
// 237: invokeinterface 240 3 0
// 242: invokestatic 256 java/lang/Float:parseFloat (Ljava/lang/String;)F
// 245: invokespecial 259 android/support/v7/widget/ActivityChooserModel$HistoricalRecord:<init> (Ljava/lang/String;JF)V
// 248: invokeinterface 262 2 0
// 253: pop
// 254: goto -133 -> 121
// 257: astore_3
// 258: aload_2
// 259: ifnull +7 -> 266
// 262: aload_2
// 263: invokevirtual 227 java/io/FileInputStream:close ()V
// 266: aload_3
// 267: athrow
// 268: aload_2
// 269: ifnull -162 -> 107
// 272: aload_2
// 273: invokevirtual 227 java/io/FileInputStream:close ()V
// 276: return
// 277: astore_2
// 278: return
// 279: astore_2
// 280: return
// 281: astore_2
// 282: goto -16 -> 266
// 285: astore_2
// 286: return
// Local variable table:
// start length slot name signature
// 0 287 0 this ActivityChooserModel
// 26 115 1 i1 int
// 11 189 2 localFileInputStream java.io.FileInputStream
// 204 69 2 localIOException1 IOException
// 277 1 2 localIOException2 IOException
// 279 1 2 localIOException3 IOException
// 281 1 2 localIOException4 IOException
// 285 1 2 localFileNotFoundException FileNotFoundException
// 15 35 3 localXmlPullParser org.xmlpull.v1.XmlPullParser
// 71 75 3 localXmlPullParserException org.xmlpull.v1.XmlPullParserException
// 167 67 3 localIOException5 IOException
// 257 10 3 localObject Object
// 112 95 4 localList List
// Exception table:
// from to target type
// 12 25 71 org/xmlpull/v1/XmlPullParserException
// 37 44 71 org/xmlpull/v1/XmlPullParserException
// 47 71 71 org/xmlpull/v1/XmlPullParserException
// 108 121 71 org/xmlpull/v1/XmlPullParserException
// 121 128 71 org/xmlpull/v1/XmlPullParserException
// 143 167 71 org/xmlpull/v1/XmlPullParserException
// 206 254 71 org/xmlpull/v1/XmlPullParserException
// 12 25 167 java/io/IOException
// 37 44 167 java/io/IOException
// 47 71 167 java/io/IOException
// 108 121 167 java/io/IOException
// 121 128 167 java/io/IOException
// 143 167 167 java/io/IOException
// 206 254 167 java/io/IOException
// 199 203 204 java/io/IOException
// 12 25 257 finally
// 37 44 257 finally
// 47 71 257 finally
// 72 99 257 finally
// 108 121 257 finally
// 121 128 257 finally
// 143 167 257 finally
// 168 195 257 finally
// 206 254 257 finally
// 272 276 277 java/io/IOException
// 103 107 279 java/io/IOException
// 262 266 281 java/io/IOException
// 0 12 285 java/io/FileNotFoundException
}
public final int a()
{
synchronized (this.b)
{
d();
int i1 = this.c.size();
return i1;
}
}
public final int a(ResolveInfo paramResolveInfo)
{
for (;;)
{
int i1;
synchronized (this.b)
{
d();
List localList = this.c;
int i2 = localList.size();
i1 = 0;
if (i1 < i2)
{
if (((ActivityResolveInfo)localList.get(i1)).resolveInfo == paramResolveInfo) {
return i1;
}
}
else {
return -1;
}
}
i1 += 1;
}
}
public final ResolveInfo a(int paramInt)
{
synchronized (this.b)
{
d();
ResolveInfo localResolveInfo = ((ActivityResolveInfo)this.c.get(paramInt)).resolveInfo;
return localResolveInfo;
}
}
final boolean a(HistoricalRecord paramHistoricalRecord)
{
boolean bool = this.l.add(paramHistoricalRecord);
if (bool)
{
this.p = true;
f();
if (!this.o) {
throw new IllegalStateException("No preceding call to #readHistoricalData");
}
if (this.p)
{
this.p = false;
if (!TextUtils.isEmpty(this.e)) {
AsyncTaskCompat.executeParallel(new b(), new Object[] { new ArrayList(this.l), this.e });
}
}
e();
notifyChanged();
}
return bool;
}
public final Intent b(int paramInt)
{
synchronized (this.b)
{
if (this.f == null) {
return null;
}
d();
Object localObject2 = (ActivityResolveInfo)this.c.get(paramInt);
localObject2 = new ComponentName(((ActivityResolveInfo)localObject2).resolveInfo.activityInfo.packageName, ((ActivityResolveInfo)localObject2).resolveInfo.activityInfo.name);
Intent localIntent1 = new Intent(this.f);
localIntent1.setComponent((ComponentName)localObject2);
if (this.i != null)
{
Intent localIntent2 = new Intent(localIntent1);
if (this.i.onChooseActivity(this, localIntent2)) {
return null;
}
}
a(new HistoricalRecord((ComponentName)localObject2, System.currentTimeMillis(), 1.0F));
return localIntent1;
}
}
public final ResolveInfo b()
{
synchronized (this.b)
{
d();
if (!this.c.isEmpty())
{
ResolveInfo localResolveInfo = ((ActivityResolveInfo)this.c.get(0)).resolveInfo;
return localResolveInfo;
}
return null;
}
}
public final int c()
{
synchronized (this.b)
{
d();
int i1 = this.l.size();
return i1;
}
}
final void d()
{
int i2 = 1;
int i1;
if ((this.h) && (this.f != null))
{
this.h = false;
this.c.clear();
List localList = this.d.getPackageManager().queryIntentActivities(this.f, 0);
int i3 = localList.size();
i1 = 0;
while (i1 < i3)
{
ResolveInfo localResolveInfo = (ResolveInfo)localList.get(i1);
this.c.add(new ActivityResolveInfo(localResolveInfo));
i1 += 1;
}
i1 = 1;
if ((!this.g) || (!this.p) || (TextUtils.isEmpty(this.e))) {
break label167;
}
this.g = false;
this.o = true;
g();
}
for (;;)
{
f();
if ((i1 | i2) != 0)
{
e();
notifyChanged();
}
return;
i1 = 0;
break;
label167:
i2 = 0;
}
}
public static abstract interface ActivityChooserModelClient
{
public abstract void setActivityChooserModel(ActivityChooserModel paramActivityChooserModel);
}
public final class ActivityResolveInfo
implements Comparable<ActivityResolveInfo>
{
public final ResolveInfo resolveInfo;
public float weight;
public ActivityResolveInfo(ResolveInfo paramResolveInfo)
{
this.resolveInfo = paramResolveInfo;
}
public final int compareTo(ActivityResolveInfo paramActivityResolveInfo)
{
return Float.floatToIntBits(paramActivityResolveInfo.weight) - Float.floatToIntBits(this.weight);
}
public final boolean equals(Object paramObject)
{
if (this == paramObject) {}
do
{
return true;
if (paramObject == null) {
return false;
}
if (getClass() != paramObject.getClass()) {
return false;
}
paramObject = (ActivityResolveInfo)paramObject;
} while (Float.floatToIntBits(this.weight) == Float.floatToIntBits(((ActivityResolveInfo)paramObject).weight));
return false;
}
public final int hashCode()
{
return Float.floatToIntBits(this.weight) + 31;
}
public final String toString()
{
StringBuilder localStringBuilder = new StringBuilder();
localStringBuilder.append("[");
localStringBuilder.append("resolveInfo:").append(this.resolveInfo.toString());
localStringBuilder.append("; weight:").append(new BigDecimal(this.weight));
localStringBuilder.append("]");
return localStringBuilder.toString();
}
}
public static abstract interface ActivitySorter
{
public abstract void sort(Intent paramIntent, List<ActivityChooserModel.ActivityResolveInfo> paramList, List<ActivityChooserModel.HistoricalRecord> paramList1);
}
public static final class HistoricalRecord
{
public final ComponentName activity;
public final long time;
public final float weight;
public HistoricalRecord(ComponentName paramComponentName, long paramLong, float paramFloat)
{
this.activity = paramComponentName;
this.time = paramLong;
this.weight = paramFloat;
}
public HistoricalRecord(String paramString, long paramLong, float paramFloat)
{
this(ComponentName.unflattenFromString(paramString), paramLong, paramFloat);
}
public final boolean equals(Object paramObject)
{
if (this == paramObject) {}
do
{
return true;
if (paramObject == null) {
return false;
}
if (getClass() != paramObject.getClass()) {
return false;
}
paramObject = (HistoricalRecord)paramObject;
if (this.activity == null)
{
if (((HistoricalRecord)paramObject).activity != null) {
return false;
}
}
else if (!this.activity.equals(((HistoricalRecord)paramObject).activity)) {
return false;
}
if (this.time != ((HistoricalRecord)paramObject).time) {
return false;
}
} while (Float.floatToIntBits(this.weight) == Float.floatToIntBits(((HistoricalRecord)paramObject).weight));
return false;
}
public final int hashCode()
{
if (this.activity == null) {}
for (int i = 0;; i = this.activity.hashCode()) {
return ((i + 31) * 31 + (int)(this.time ^ this.time >>> 32)) * 31 + Float.floatToIntBits(this.weight);
}
}
public final String toString()
{
StringBuilder localStringBuilder = new StringBuilder();
localStringBuilder.append("[");
localStringBuilder.append("; activity:").append(this.activity);
localStringBuilder.append("; time:").append(this.time);
localStringBuilder.append("; weight:").append(new BigDecimal(this.weight));
localStringBuilder.append("]");
return localStringBuilder.toString();
}
}
public static abstract interface OnChooseActivityListener
{
public abstract boolean onChooseActivity(ActivityChooserModel paramActivityChooserModel, Intent paramIntent);
}
final class a
implements ActivityChooserModel.ActivitySorter
{
private final Map<ComponentName, ActivityChooserModel.ActivityResolveInfo> b = new HashMap();
a() {}
public final void sort(Intent paramIntent, List<ActivityChooserModel.ActivityResolveInfo> paramList, List<ActivityChooserModel.HistoricalRecord> paramList1)
{
paramIntent = this.b;
paramIntent.clear();
int j = paramList.size();
int i = 0;
Object localObject;
while (i < j)
{
localObject = (ActivityChooserModel.ActivityResolveInfo)paramList.get(i);
((ActivityChooserModel.ActivityResolveInfo)localObject).weight = 0.0F;
paramIntent.put(new ComponentName(((ActivityChooserModel.ActivityResolveInfo)localObject).resolveInfo.activityInfo.packageName, ((ActivityChooserModel.ActivityResolveInfo)localObject).resolveInfo.activityInfo.name), localObject);
i += 1;
}
i = paramList1.size();
float f1 = 1.0F;
i -= 1;
if (i >= 0)
{
localObject = (ActivityChooserModel.HistoricalRecord)paramList1.get(i);
ActivityChooserModel.ActivityResolveInfo localActivityResolveInfo = (ActivityChooserModel.ActivityResolveInfo)paramIntent.get(((ActivityChooserModel.HistoricalRecord)localObject).activity);
if (localActivityResolveInfo == null) {
break label195;
}
float f2 = localActivityResolveInfo.weight;
localActivityResolveInfo.weight = (((ActivityChooserModel.HistoricalRecord)localObject).weight * f1 + f2);
f1 = 0.95F * f1;
}
label195:
for (;;)
{
i -= 1;
break;
Collections.sort(paramList);
return;
}
}
}
final class b
extends AsyncTask<Object, Void, Void>
{
b() {}
private Void a(Object... paramVarArgs)
{
int i = 0;
List localList = (List)paramVarArgs[0];
Object localObject2 = (String)paramVarArgs[1];
for (;;)
{
try
{
paramVarArgs = ActivityChooserModel.this.d.openFileOutput((String)localObject2, 0);
localObject2 = Xml.newSerializer();
int j;
ActivityChooserModel.HistoricalRecord localHistoricalRecord;
((XmlSerializer)localObject2).endTag(null, "historical-records");
}
catch (FileNotFoundException paramVarArgs)
{
try
{
((XmlSerializer)localObject2).setOutput(paramVarArgs, null);
((XmlSerializer)localObject2).startDocument("UTF-8", Boolean.valueOf(true));
((XmlSerializer)localObject2).startTag(null, "historical-records");
j = localList.size();
if (i >= j) {
break label210;
}
localHistoricalRecord = (ActivityChooserModel.HistoricalRecord)localList.remove(0);
((XmlSerializer)localObject2).startTag(null, "historical-record");
((XmlSerializer)localObject2).attribute(null, "activity", localHistoricalRecord.activity.flattenToString());
((XmlSerializer)localObject2).attribute(null, "time", String.valueOf(localHistoricalRecord.time));
((XmlSerializer)localObject2).attribute(null, "weight", String.valueOf(localHistoricalRecord.weight));
((XmlSerializer)localObject2).endTag(null, "historical-record");
i += 1;
continue;
paramVarArgs = paramVarArgs;
Log.e(ActivityChooserModel.a, "Error writing historical record file: " + (String)localObject2, paramVarArgs);
}
catch (IllegalArgumentException localIllegalArgumentException)
{
Log.e(ActivityChooserModel.a, "Error writing historical record file: " + ActivityChooserModel.this.e, localIllegalArgumentException);
ActivityChooserModel.this.g = true;
if (paramVarArgs == null) {
continue;
}
try
{
paramVarArgs.close();
return null;
}
catch (IOException paramVarArgs)
{
return null;
}
}
catch (IllegalStateException localIllegalStateException)
{
Log.e(ActivityChooserModel.a, "Error writing historical record file: " + ActivityChooserModel.this.e, localIllegalStateException);
ActivityChooserModel.this.g = true;
if (paramVarArgs == null) {
continue;
}
try
{
paramVarArgs.close();
return null;
}
catch (IOException paramVarArgs)
{
return null;
}
}
catch (IOException localIOException)
{
Log.e(ActivityChooserModel.a, "Error writing historical record file: " + ActivityChooserModel.this.e, localIOException);
ActivityChooserModel.this.g = true;
if (paramVarArgs == null) {
continue;
}
try
{
paramVarArgs.close();
return null;
}
catch (IOException paramVarArgs)
{
return null;
}
}
finally
{
ActivityChooserModel.this.g = true;
if (paramVarArgs == null) {
break label429;
}
}
return null;
}
label210:
((XmlSerializer)localObject2).endDocument();
ActivityChooserModel.this.g = true;
if (paramVarArgs != null) {
try
{
paramVarArgs.close();
return null;
}
catch (IOException paramVarArgs)
{
return null;
}
}
}
try
{
paramVarArgs.close();
label429:
throw ((Throwable)localObject1);
}
catch (IOException paramVarArgs)
{
for (;;) {}
}
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/android/support/v7/widget/ActivityChooserModel.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/