Skip to content

Commit 44850e0

Browse files
committed
Ensure all channel logs are fetched
1 parent 6293c71 commit 44850e0

File tree

2 files changed

+34
-12
lines changed

2 files changed

+34
-12
lines changed

app/src/main/java/ie/macinnes/tvheadend/TvContractUtils.java

+8-6
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
public class TvContractUtils {
2828
private static final String TAG = TvContractUtils.class.getName();
2929

30+
public static final long INVALID_CHANNEL_ID = -1;
31+
3032
public static String getInputId() {
3133
ComponentName componentName = new ComponentName(
3234
"ie.macinnes.tvheadend",
@@ -35,7 +37,7 @@ public static String getInputId() {
3537
return TvContract.buildInputId(componentName);
3638
}
3739

38-
public static Long getChannelId(Context context, int channelId) {
40+
public static long getChannelId(Context context, int channelId) {
3941
ContentResolver resolver = context.getContentResolver();
4042

4143
Uri channelsUri = TvContract.buildChannelsUriForInput(TvContractUtils.getInputId());
@@ -50,13 +52,13 @@ public static Long getChannelId(Context context, int channelId) {
5052
}
5153
}
5254

53-
return null;
55+
return INVALID_CHANNEL_ID;
5456
}
5557

5658
public static Uri getChannelUri(Context context, int channelId) {
57-
Long androidChannelId = getChannelId(context, channelId);
59+
long androidChannelId = getChannelId(context, channelId);
5860

59-
if (androidChannelId != null) {
61+
if (androidChannelId != INVALID_CHANNEL_ID) {
6062
return TvContract.buildChannelUri(androidChannelId);
6163
}
6264

@@ -117,9 +119,9 @@ public static Uri getProgramUri(Context context, int channelId, int eventId) {
117119
// TODO: Cache results...
118120
ContentResolver resolver = context.getContentResolver();
119121

120-
Long androidChannelId = getChannelId(context, channelId);
122+
long androidChannelId = getChannelId(context, channelId);
121123

122-
if (androidChannelId == null) {
124+
if (androidChannelId == INVALID_CHANNEL_ID) {
123125
Log.w(TAG, "Failed to fetch programUri, unknown channel");
124126
return null;
125127
}

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

+26-6
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,11 @@
4040
import java.util.ArrayList;
4141
import java.util.Arrays;
4242
import java.util.HashSet;
43+
import java.util.Iterator;
4344
import java.util.List;
45+
import java.util.Queue;
4446
import java.util.Set;
47+
import java.util.concurrent.ConcurrentLinkedQueue;
4548

4649
import ie.macinnes.htsp.HtspFileInputStream;
4750
import ie.macinnes.htsp.HtspMessage;
@@ -98,11 +101,21 @@ public interface Listener {
98101
private final SparseArray<ContentProviderOperation> mPendingChannelOps = new SparseArray<>();
99102
private final SparseArray<ContentProviderOperation> mPendingProgramOps = new SparseArray<>();
100103

101-
private final SparseArray<Uri> mPendingChannelLogoFetches = new SparseArray<>();
104+
private final Queue<PendingChannelLogoFetch> mPendingChannelLogoFetches = new ConcurrentLinkedQueue<>();
102105

103106
private Set<Integer> mSeenChannels = new HashSet<>();
104107
private Set<Integer> mSeenPrograms = new HashSet<>();
105108

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+
106119
public EpgSyncTask(Context context, @NonNull HtspMessage.Dispatcher dispatcher, boolean quickSync) {
107120
this(context, dispatcher);
108121

@@ -286,7 +299,7 @@ private void handleChannelAddUpdate(@NonNull HtspMessage message) {
286299
}
287300

288301
if (message.containsKey("channelIcon")) {
289-
mPendingChannelLogoFetches.put(channelId, Uri.parse(message.getString("channelIcon")));
302+
mPendingChannelLogoFetches.add(new PendingChannelLogoFetch(channelId, Uri.parse(message.getString("channelIcon"))));
290303
}
291304

292305
mSeenChannels.add(channelId);
@@ -343,10 +356,17 @@ private void flushPendingChannelLogoFetches() {
343356

344357
Log.d(TAG, "Flushing " + mPendingChannelLogoFetches.size() + " channel logo fetches");
345358

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);
350370

351371
InputStream is = null;
352372
OutputStream os = null;

0 commit comments

Comments
 (0)