Skip to content

Commit 50ed51a

Browse files
authored
Lager ny liste ved splitt for å ikkje endre på samme liste i to ulike segmenter (#149)
1 parent b957c91 commit 50ed51a

File tree

2 files changed

+37
-4
lines changed

2 files changed

+37
-4
lines changed

src/main/java/no/nav/fpsak/tidsserie/LocalDateTimeline.java

+12-4
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ private static <X> LocalDateSegment<X> tilpassSegment(boolean harSegment, LocalD
265265
if (!harSegment) {
266266
return null;
267267
}
268-
if (segment.getLocalDateInterval().equals(ønsketIntervall)){
268+
if (segment.getLocalDateInterval().equals(ønsketIntervall)) {
269269
return segment;
270270
}
271271
return segmentSplitter.apply(ønsketIntervall, segment);
@@ -307,7 +307,7 @@ public LocalDateTimeline<V> compress(BiPredicate<V, V> e, LocalDateSegmentCombin
307307
public LocalDateTimeline<V> compress(BiPredicate<LocalDateInterval, LocalDateInterval> a, BiPredicate<V, V> e, LocalDateSegmentCombinator<V, V, V> c) {
308308
var factory = new CompressorFactory<>(a, e, c);
309309
TimelineCompressor<V> compressor = segments.stream()
310-
.collect(factory::get, TimelineCompressor::accept, TimelineCompressor::combine);
310+
.collect(factory::get, TimelineCompressor::accept, TimelineCompressor::combine);
311311

312312
return new LocalDateTimeline<>(compressor.segmenter);
313313
}
@@ -609,7 +609,8 @@ public static <V> LocalDateTimeline<List<V>> buildGroupOverlappingSegments(Colle
609609
@SuppressWarnings({"cast"})
610610
var uniqueSegments = segmentsWithPossibleOverlaps.stream().map(s -> new LocalDateSegment<>(s.getLocalDateInterval(), (List<V>) new ArrayList<V>()))
611611
.collect(Collectors.toList());
612-
var uniqueIntervalTimeline = new LocalDateTimeline<>(uniqueSegments, (interval, lhs, rhs) -> new LocalDateSegment<>(interval, new ArrayList<V>()));
612+
613+
var uniqueIntervalTimeline = new LocalDateTimeline<>(uniqueSegments, (interval, lhs, rhs) -> new LocalDateSegment<>(interval, new ArrayList<V>()), LocalDateTimeline::createNewListOnSplit);
613614

614615
for (var per : uniqueIntervalTimeline.toSegments()) {
615616
for (var seg : segmentsWithPossibleOverlaps) {
@@ -621,6 +622,13 @@ public static <V> LocalDateTimeline<List<V>> buildGroupOverlappingSegments(Colle
621622
return uniqueIntervalTimeline;
622623
}
623624

625+
private static <V> LocalDateSegment<List<V>> createNewListOnSplit(LocalDateInterval di, LocalDateSegment<List<V>> seg) {
626+
if (di.equals(seg.getLocalDateInterval())) {
627+
return seg;
628+
}
629+
return new LocalDateSegment<>(di, new ArrayList<>(seg.getValue()));
630+
}
631+
624632
@Override
625633
public String toString() {
626634
return getClass().getSimpleName() + "<" + //$NON-NLS-1$
@@ -816,7 +824,7 @@ private NavigableMap<LocalDateInterval, Integer> joinLocalDateIntervals(Navigabl
816824
* Finner alle knekkpunkter fra to tidslinjer, i sekvens.
817825
* <p>
818826
* Knekkpunkter er 'start av et intervall' og 'dagen etter slutt av et intervall'. Sistnevnte fordi det da kan være starten på et nytt intervall
819-
*
827+
* <p>
820828
* Hvis slutt av intervall er LocalDate.MAX, er dagen etter ikke representerbar i LocalDate, derfor bruker denne klassen epochDay istedet
821829
*/
822830
private static class KnekkpunktIterator<V, T> {

src/test/java/no/nav/fpsak/tidsserie/LocalDateTimelineTest.java

+25
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,31 @@ void skal_gruppere_per_segment_periode() {
314314

315315
}
316316

317+
@Test
318+
void skal_gruppere_per_segment_periode_med_overlapp_midt_i_periode() {
319+
LocalDate d1 = LocalDate.now();
320+
LocalDate d2 = d1.plusDays(2);
321+
LocalDate d3 = d2.plusDays(1);
322+
LocalDate d4 = d3.plusDays(2);
323+
324+
325+
List<LocalDateSegment<String>> segmenterMedOverlapp = List.of(
326+
new LocalDateSegment<>(d1, d4, "A"),
327+
new LocalDateSegment<>(d2, d3, "B"));
328+
329+
var timeline = LocalDateTimeline.buildGroupOverlappingSegments(segmenterMedOverlapp).compress();
330+
List<LocalDateInterval> intervaller = List.copyOf(timeline.getLocalDateIntervals());
331+
assertThat(intervaller).hasSize(3);
332+
333+
assertThat(timeline.intersection(intervaller.get(0))).isEqualTo(new LocalDateTimeline<>(intervaller.get(0), List.of("A")));
334+
335+
assertThat(timeline.intersection(intervaller.get(1))).isEqualTo(new LocalDateTimeline<>(intervaller.get(1), List.of("A", "B")));
336+
337+
assertThat(timeline.intersection(intervaller.get(2))).isEqualTo(new LocalDateTimeline<>(intervaller.get(2), List.of("A")));
338+
339+
340+
}
341+
317342
@Test
318343
void skal_håndtere_overlapp_når_flere_perioder_overlapper_med_hverandre() {
319344
Set<LocalDateSegment<Boolean>> segementer = new HashSet<>();

0 commit comments

Comments
 (0)