From 61dc19d2e0bc69004b03a990993eda547f4e0093 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Wed, 12 Nov 2014 16:01:58 -0800 Subject: Show the number of dives with given person / location in the filter panel Signed-off-by: Dirk Hohndel --- dive.c | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'dive.c') diff --git a/dive.c b/dive.c index d20c11b68..67f08f972 100644 --- a/dive.c +++ b/dive.c @@ -2500,6 +2500,7 @@ bool taglist_contains(struct tag_entry *tag_list, const char *tag) return false; } +// count the dives where the tag list contains the given tag int count_dives_with_tag(const char *tag) { int i, counter = 0; @@ -2512,6 +2513,34 @@ int count_dives_with_tag(const char *tag) return counter; } +extern bool string_sequence_contains(const char *string_sequence, const char *text); + +// count the dives where the person is included in the comma separated string sequences of buddies or divemasters +int count_dives_with_person(const char *person) +{ + int i, counter = 0; + struct dive *d; + + for_each_dive (i, d) { + if (string_sequence_contains(d->buddy, person) || string_sequence_contains(d->divemaster, person)) + counter++; + } + return counter; +} + +// count the dives with exactly the location +int count_dives_with_location(const char *location) +{ + int i, counter = 0; + struct dive *d; + + for_each_dive (i, d) { + if (same_string(d->location, location)) + counter++; + } + return counter; +} + struct dive *merge_dives(struct dive *a, struct dive *b, int offset, bool prefer_downloaded) { struct dive *res = alloc_dive(); -- cgit v1.2.3-70-g09d2