|
40 | 40 | import java.util.ArrayList;
|
41 | 41 | import java.util.Arrays;
|
42 | 42 | import java.util.HashSet;
|
| 43 | +import java.util.Iterator; |
43 | 44 | import java.util.List;
|
| 45 | +import java.util.Queue; |
44 | 46 | import java.util.Set;
|
| 47 | +import java.util.concurrent.ConcurrentLinkedQueue; |
45 | 48 |
|
46 | 49 | import ie.macinnes.htsp.HtspFileInputStream;
|
47 | 50 | import ie.macinnes.htsp.HtspMessage;
|
@@ -98,11 +101,21 @@ public interface Listener {
|
98 | 101 | private final SparseArray<ContentProviderOperation> mPendingChannelOps = new SparseArray<>();
|
99 | 102 | private final SparseArray<ContentProviderOperation> mPendingProgramOps = new SparseArray<>();
|
100 | 103 |
|
101 |
| - private final SparseArray<Uri> mPendingChannelLogoFetches = new SparseArray<>(); |
| 104 | + private final Queue<PendingChannelLogoFetch> mPendingChannelLogoFetches = new ConcurrentLinkedQueue<>(); |
102 | 105 |
|
103 | 106 | private Set<Integer> mSeenChannels = new HashSet<>();
|
104 | 107 | private Set<Integer> mSeenPrograms = new HashSet<>();
|
105 | 108 |
|
| 109 | + private final class PendingChannelLogoFetch { |
| 110 | + public int channelId; |
| 111 | + public Uri logoUri; |
| 112 | + |
| 113 | + public PendingChannelLogoFetch(int channelId, Uri logoUri) { |
| 114 | + this.channelId = channelId; |
| 115 | + this.logoUri = logoUri; |
| 116 | + } |
| 117 | + } |
| 118 | + |
106 | 119 | public EpgSyncTask(Context context, @NonNull HtspMessage.Dispatcher dispatcher, boolean quickSync) {
|
107 | 120 | this(context, dispatcher);
|
108 | 121 |
|
@@ -286,7 +299,7 @@ private void handleChannelAddUpdate(@NonNull HtspMessage message) {
|
286 | 299 | }
|
287 | 300 |
|
288 | 301 | if (message.containsKey("channelIcon")) {
|
289 |
| - mPendingChannelLogoFetches.put(channelId, Uri.parse(message.getString("channelIcon"))); |
| 302 | + mPendingChannelLogoFetches.add(new PendingChannelLogoFetch(channelId, Uri.parse(message.getString("channelIcon")))); |
290 | 303 | }
|
291 | 304 |
|
292 | 305 | mSeenChannels.add(channelId);
|
@@ -343,10 +356,17 @@ private void flushPendingChannelLogoFetches() {
|
343 | 356 |
|
344 | 357 | Log.d(TAG, "Flushing " + mPendingChannelLogoFetches.size() + " channel logo fetches");
|
345 | 358 |
|
346 |
| - for (int i = 0; i < mPendingChannelLogoFetches.size(); i++) { |
347 |
| - final int channelId = mPendingChannelLogoFetches.keyAt(i); |
348 |
| - final Uri channelLogoSourceUri = mPendingChannelLogoFetches.valueAt(i); |
349 |
| - final Uri channelLogoDestUri = TvContract.buildChannelLogoUri(TvContractUtils.getChannelUri(mContext, channelId)); |
| 359 | + for (PendingChannelLogoFetch pendingChannelLogoFetch : mPendingChannelLogoFetches) { |
| 360 | + final int channelId = pendingChannelLogoFetch.channelId; |
| 361 | + final long androidChannelId = TvContractUtils.getChannelId(mContext, channelId); |
| 362 | + |
| 363 | + if (androidChannelId == TvContractUtils.INVALID_CHANNEL_ID) { |
| 364 | + Log.e(TAG, "Failed to final channel in android DB, channel ID: " + channelId); |
| 365 | + continue; |
| 366 | + } |
| 367 | + |
| 368 | + final Uri channelLogoSourceUri = pendingChannelLogoFetch.logoUri; |
| 369 | + final Uri channelLogoDestUri = TvContract.buildChannelLogoUri(androidChannelId); |
350 | 370 |
|
351 | 371 | InputStream is = null;
|
352 | 372 | OutputStream os = null;
|
|
0 commit comments