Skip to content

Commit

Permalink
KafkaClientTask::compare_topics use ordered topic_set
Browse files Browse the repository at this point in the history
  • Loading branch information
kedixa committed Jun 29, 2023
1 parent a778502 commit ef886ec
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions src/client/WFKafkaClient.cc
Original file line number Diff line number Diff line change
Expand Up @@ -766,25 +766,23 @@ void KafkaClientTask::set_meta_status(bool status)

bool KafkaClientTask::compare_topics(KafkaClientTask *task)
{
protocol::KafkaMetaList *meta_list1 = &this->meta_list;
protocol::KafkaMetaList *meta_list2 = &task->meta_list;
KafkaMeta *meta1, *meta2;
auto first1 = topic_set.cbegin(), last1 = topic_set.cend();
auto first2 = task->topic_set.cbegin(), last2 = task->topic_set.cend();
int cmp;

meta_list1->rewind();
meta_list2->rewind();
while (1)
while (first1 != last1 && first2 != last2)
{
meta1 = meta_list1->get_next();
meta2 = meta_list2->get_next();
if (!meta1 && !meta2)
cmp = first1->compare(*first2);
if (cmp == 0)
return true;

if (!meta1 || !meta2)
return false;

if (strcmp(meta1->get_topic(), meta2->get_topic()))
return false;
if (cmp < 0)
++first1;
else
++first2;
}

return false;
}

bool KafkaClientTask::check_cgroup()
Expand Down

0 comments on commit ef886ec

Please sign in to comment.