Skip to content

Commit 88d53f1

Browse files
committed
Fix channel logos
Fixes #124
1 parent a0ceb50 commit 88d53f1

File tree

2 files changed

+66
-5
lines changed

2 files changed

+66
-5
lines changed

app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ repositories {
6868
}
6969

7070
dependencies {
71-
compile 'ie.macinnes.htsp:android-htsp:v0.0.1a8'
71+
compile 'ie.macinnes.htsp:android-htsp:v0.0.1a9'
7272
// Used for testing local HTSP lib builds
7373
// compile(name: 'library-release', ext: 'aar')
7474
compile fileTree(include: ['*.jar'], dir: 'libs')

app/src/main/java/ie/macinnes/tvheadend/sync/EpgSyncTask.java

+65-4
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,16 @@
3434
import android.util.Log;
3535
import android.util.SparseArray;
3636

37+
import java.io.IOException;
38+
import java.io.InputStream;
39+
import java.io.OutputStream;
3740
import java.util.ArrayList;
3841
import java.util.Arrays;
3942
import java.util.HashSet;
4043
import java.util.List;
4144
import java.util.Set;
4245

46+
import ie.macinnes.htsp.HtspFileInputStream;
4347
import ie.macinnes.htsp.HtspMessage;
4448
import ie.macinnes.htsp.tasks.Authenticator;
4549
import ie.macinnes.tvheadend.BuildConfig;
@@ -93,6 +97,8 @@ public interface Listener {
9397
private final SparseArray<ContentProviderOperation> mPendingChannelOps = new SparseArray<>();
9498
private final SparseArray<ContentProviderOperation> mPendingProgramOps = new SparseArray<>();
9599

100+
private final SparseArray<Uri> mPendingChannelLogoFetches = new SparseArray<>();
101+
96102
private Set<Integer> mSeenChannels = new HashSet<>();
97103
private Set<Integer> mSeenPrograms = new HashSet<>();
98104

@@ -273,10 +279,9 @@ private void handleChannelAddUpdate(@NonNull HtspMessage message) {
273279
flushPendingChannelOps();
274280
}
275281

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+
}
280285

281286
mSeenChannels.add(channelId);
282287
}
@@ -325,6 +330,59 @@ private void flushPendingChannelOps() {
325330
mPendingChannelOps.clear();
326331
}
327332

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+
328386
protected void deleteChannels() {
329387
// Dirty
330388
int[] existingChannelIds = new int[mChannelUriMap.size()];
@@ -542,6 +600,9 @@ private void handleInitialSyncCompleted(@NonNull HtspMessage message) {
542600
deleteChannels();
543601
deletePrograms();
544602

603+
// Fetch all the channel logos
604+
flushPendingChannelLogoFetches();
605+
545606
Log.i(TAG, "Initial sync completed");
546607
mInitialSyncCompleted = true;
547608

0 commit comments

Comments
 (0)