|
34 | 34 | import android.util.Log;
|
35 | 35 | import android.util.SparseArray;
|
36 | 36 |
|
| 37 | +import java.io.IOException; |
| 38 | +import java.io.InputStream; |
| 39 | +import java.io.OutputStream; |
37 | 40 | import java.util.ArrayList;
|
38 | 41 | import java.util.Arrays;
|
39 | 42 | import java.util.HashSet;
|
40 | 43 | import java.util.List;
|
41 | 44 | import java.util.Set;
|
42 | 45 |
|
| 46 | +import ie.macinnes.htsp.HtspFileInputStream; |
43 | 47 | import ie.macinnes.htsp.HtspMessage;
|
44 | 48 | import ie.macinnes.htsp.tasks.Authenticator;
|
45 | 49 | import ie.macinnes.tvheadend.BuildConfig;
|
@@ -93,6 +97,8 @@ public interface Listener {
|
93 | 97 | private final SparseArray<ContentProviderOperation> mPendingChannelOps = new SparseArray<>();
|
94 | 98 | private final SparseArray<ContentProviderOperation> mPendingProgramOps = new SparseArray<>();
|
95 | 99 |
|
| 100 | + private final SparseArray<Uri> mPendingChannelLogoFetches = new SparseArray<>(); |
| 101 | + |
96 | 102 | private Set<Integer> mSeenChannels = new HashSet<>();
|
97 | 103 | private Set<Integer> mSeenPrograms = new HashSet<>();
|
98 | 104 |
|
@@ -273,10 +279,9 @@ private void handleChannelAddUpdate(@NonNull HtspMessage message) {
|
273 | 279 | flushPendingChannelOps();
|
274 | 280 | }
|
275 | 281 |
|
276 |
| - // TODO |
277 |
| -// if (message.getChannelIcon() != null) { |
278 |
| -// fetchChannelLogo(channelUri, message); |
279 |
| -// } |
| 282 | + if (message.containsKey("channelIcon")) { |
| 283 | + mPendingChannelLogoFetches.put(channelId, Uri.parse(message.getString("channelIcon"))); |
| 284 | + } |
280 | 285 |
|
281 | 286 | mSeenChannels.add(channelId);
|
282 | 287 | }
|
@@ -325,6 +330,59 @@ private void flushPendingChannelOps() {
|
325 | 330 | mPendingChannelOps.clear();
|
326 | 331 | }
|
327 | 332 |
|
| 333 | + private void flushPendingChannelLogoFetches() { |
| 334 | + if (mPendingChannelLogoFetches.size() == 0) { |
| 335 | + return; |
| 336 | + } |
| 337 | + |
| 338 | + Log.d(TAG, "Flushing " + mPendingChannelLogoFetches.size() + " channel logo fetches"); |
| 339 | + |
| 340 | + for (int i = 0; i < mPendingChannelLogoFetches.size(); i++) { |
| 341 | + final int channelId = mPendingChannelLogoFetches.keyAt(i); |
| 342 | + final Uri channelLogoSourceUri = mPendingChannelLogoFetches.valueAt(i); |
| 343 | + final Uri channelLogoDestUri = TvContract.buildChannelLogoUri(TvContractUtils.getChannelUri(mContext, channelId)); |
| 344 | + |
| 345 | + |
| 346 | + InputStream is = null; |
| 347 | + OutputStream os = null; |
| 348 | + |
| 349 | + try { |
| 350 | + is = new HtspFileInputStream(mDispatcher, channelLogoSourceUri.getPath()); |
| 351 | + os = mContentResolver.openOutputStream(channelLogoDestUri); |
| 352 | + |
| 353 | + int read; |
| 354 | + int totalRead = 0; |
| 355 | + byte[] bytes = new byte[102400]; |
| 356 | + |
| 357 | + while ((read = is.read(bytes)) != -1) { |
| 358 | + os.write(bytes, 0, read); |
| 359 | + totalRead += read; |
| 360 | + } |
| 361 | + |
| 362 | + Log.d(TAG, "Successfully fetch logo from " + channelLogoSourceUri + " to " + channelLogoDestUri + " (" + totalRead + " bytes)"); |
| 363 | + } catch (IOException e) { |
| 364 | + Log.e(TAG, "Failed to fetch logo from " + channelLogoSourceUri + " to " + channelLogoDestUri, e); |
| 365 | + } finally { |
| 366 | + if (is != null) { |
| 367 | + try { |
| 368 | + os.close(); |
| 369 | + } catch (IOException e) { |
| 370 | + // Ignore... |
| 371 | + } |
| 372 | + } |
| 373 | + if (os != null) { |
| 374 | + try { |
| 375 | + os.close(); |
| 376 | + } catch (IOException e) { |
| 377 | + // Ignore... |
| 378 | + } |
| 379 | + } |
| 380 | + } |
| 381 | + |
| 382 | + mPendingChannelLogoFetches.remove(channelId); |
| 383 | + } |
| 384 | + } |
| 385 | + |
328 | 386 | protected void deleteChannels() {
|
329 | 387 | // Dirty
|
330 | 388 | int[] existingChannelIds = new int[mChannelUriMap.size()];
|
@@ -542,6 +600,9 @@ private void handleInitialSyncCompleted(@NonNull HtspMessage message) {
|
542 | 600 | deleteChannels();
|
543 | 601 | deletePrograms();
|
544 | 602 |
|
| 603 | + // Fetch all the channel logos |
| 604 | + flushPendingChannelLogoFetches(); |
| 605 | + |
545 | 606 | Log.i(TAG, "Initial sync completed");
|
546 | 607 | mInitialSyncCompleted = true;
|
547 | 608 |
|
|
0 commit comments