Skip to content

sgnts.base.buffer

Event dataclass

Bases: TimeLike


              flowchart TD
              sgnts.base.buffer.Event[Event]
              sgnts.base.buffer.TimeLike[TimeLike]

                              sgnts.base.buffer.TimeLike --> sgnts.base.buffer.Event
                


              click sgnts.base.buffer.Event href "" "sgnts.base.buffer.Event"
              click sgnts.base.buffer.TimeLike href "" "sgnts.base.buffer.TimeLike"
            

Event with metadata.

Parameters:

Name Type Description Default
offset int

int, the offset of the buffer. See Offset class for definitions.

required
data Any

Any, data of the event

None
Source code in sgnts/base/buffer.py
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@dataclass
class Event(TimeLike):
    """Event with metadata.

    Args:
        offset:
            int, the offset of the buffer. See Offset class for definitions.
        data:
            Any, data of the event
    """

    offset: int
    data: Any = None

    @classmethod
    def from_time(cls, time: int, data: Any = None) -> Event:
        """Create an Event from a reference time (in nanoseconds)."""
        offset = Offset.fromns(time) - Offset.offset_ref_t0
        return cls(offset=offset, data=data)

from_time(time, data=None) classmethod

Create an Event from a reference time (in nanoseconds).

Source code in sgnts/base/buffer.py
121
122
123
124
125
@classmethod
def from_time(cls, time: int, data: Any = None) -> Event:
    """Create an Event from a reference time (in nanoseconds)."""
    offset = Offset.fromns(time) - Offset.offset_ref_t0
    return cls(offset=offset, data=data)

EventBuffer dataclass

Bases: TimeSpanLike


              flowchart TD
              sgnts.base.buffer.EventBuffer[EventBuffer]
              sgnts.base.buffer.TimeSpanLike[TimeSpanLike]
              sgnts.base.buffer.TimeLike[TimeLike]

                              sgnts.base.buffer.TimeSpanLike --> sgnts.base.buffer.EventBuffer
                                sgnts.base.buffer.TimeLike --> sgnts.base.buffer.TimeSpanLike
                



              click sgnts.base.buffer.EventBuffer href "" "sgnts.base.buffer.EventBuffer"
              click sgnts.base.buffer.TimeSpanLike href "" "sgnts.base.buffer.TimeSpanLike"
              click sgnts.base.buffer.TimeLike href "" "sgnts.base.buffer.TimeLike"
            

Event buffer with associated metadata.

Parameters:

Name Type Description Default
offset int

int, the offset of the buffer. See Offset class for definitions.

required
noffset int

int, the number of offsets the buffer spans, or the duration.

required
data Sequence[Any]

Sequence[Any], event data covering the span in question.

list()
Source code in sgnts/base/buffer.py
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
@dataclass(eq=False)
class EventBuffer(TimeSpanLike):
    """Event buffer with associated metadata.

    Args:
        offset:
            int, the offset of the buffer. See Offset class for definitions.
        noffset:
            int, the number of offsets the buffer spans, or the duration.
        data:
            Sequence[Any], event data covering the span in question.
    """

    offset: int
    noffset: int
    data: Sequence[Any] = field(default_factory=list)

    def __post_init__(self):
        if not isinstance(self.offset, int) or not isinstance(self.noffset, int):
            msg = "offset and noffset must be integers"
            raise ValueError(msg)

    @classmethod
    def from_span(
        cls, start: int, end: int, data: Sequence[Any] | None = None
    ) -> EventBuffer:
        """Create an EventBuffer from start/end times (in nanoseconds)."""
        if not isinstance(start, int) or not isinstance(end, int) or not (start <= end):
            raise ValueError(
                "start and end must be integers and start must be <= end,"
                f"got {start} and {end}"
            )
        offset = Offset.fromns(start)
        noffset = Offset.fromns(end) - offset
        if data is None:
            data = []
        return cls(offset=offset, noffset=noffset, data=data)

    def __iter__(self):
        return iter(self.data)

    def __getitem__(self, idx: int) -> Any:
        return self.data[idx]

    @property
    def events(self) -> Sequence[Any]:
        """The event data."""
        return self.data

    def __repr__(self):
        with numpy.printoptions(threshold=3, edgeitems=1):
            return "EventBuffer(offset=%d, end_offset=%d, data=%s)" % (
                self.offset,
                self.end_offset,
                self.data,
            )

    def __bool__(self):
        return bool(self.data)

    @property
    def is_gap(self):
        return not self.data

    def __contains__(self, item):
        # FIXME, is this what we want?
        if isinstance(item, int):
            # The end offset is not actually in the buffer hence the second "<" vs "<="
            return self.offset <= item < self.end_offset
        elif isinstance(item, EventBuffer):
            return (self.offset <= item.offset) and (item.end_offset <= self.end_offset)
        else:
            return False

events property

The event data.

from_span(start, end, data=None) classmethod

Create an EventBuffer from start/end times (in nanoseconds).

Source code in sgnts/base/buffer.py
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
@classmethod
def from_span(
    cls, start: int, end: int, data: Sequence[Any] | None = None
) -> EventBuffer:
    """Create an EventBuffer from start/end times (in nanoseconds)."""
    if not isinstance(start, int) or not isinstance(end, int) or not (start <= end):
        raise ValueError(
            "start and end must be integers and start must be <= end,"
            f"got {start} and {end}"
        )
    offset = Offset.fromns(start)
    noffset = Offset.fromns(end) - offset
    if data is None:
        data = []
    return cls(offset=offset, noffset=noffset, data=data)

EventFrame dataclass

Bases: TimeSpanFrame


              flowchart TD
              sgnts.base.buffer.EventFrame[EventFrame]
              sgnts.base.buffer.TimeSpanFrame[TimeSpanFrame]
              sgnts.base.buffer.TimeSpanLike[TimeSpanLike]
              sgnts.base.buffer.TimeLike[TimeLike]

                              sgnts.base.buffer.TimeSpanFrame --> sgnts.base.buffer.EventFrame
                                sgnts.base.buffer.TimeSpanLike --> sgnts.base.buffer.TimeSpanFrame
                                sgnts.base.buffer.TimeLike --> sgnts.base.buffer.TimeSpanLike
                




              click sgnts.base.buffer.EventFrame href "" "sgnts.base.buffer.EventFrame"
              click sgnts.base.buffer.TimeSpanFrame href "" "sgnts.base.buffer.TimeSpanFrame"
              click sgnts.base.buffer.TimeSpanLike href "" "sgnts.base.buffer.TimeSpanLike"
              click sgnts.base.buffer.TimeLike href "" "sgnts.base.buffer.TimeLike"
            

An sgn Frame object that holds a list of EventBuffers.

EventFrame can be created with data (offset/noffset computed from buffers) or empty with explicit offset/noffset for incremental population.

Parameters:

Name Type Description Default
data list[EventBuffer]

list[EventBuffer], EventBuffers to hold

list()
offset int

int, explicit offset when creating empty frame

0
noffset int

int, explicit noffset (duration) when creating empty frame

0
Source code in sgnts/base/buffer.py
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
@dataclass(eq=False)
class EventFrame(TimeSpanFrame):
    """An sgn Frame object that holds a list of EventBuffers.

    EventFrame can be created with data (offset/noffset computed from buffers)
    or empty with explicit offset/noffset for incremental population.

    Args:
        data: list[EventBuffer], EventBuffers to hold
        offset: int, explicit offset when creating empty frame
        noffset: int, explicit noffset (duration) when creating empty frame
    """

    data: list[EventBuffer] = field(default_factory=list)
    offset: int = 0
    noffset: int = 0

    def __post_init__(self):
        super().__post_init__()
        # If data exists, compute offset/noffset from data
        if self.data:
            # Ensure user didn't try to manually set offset/noffset
            if self.offset != 0 or self.noffset != 0:
                raise ValueError(
                    "Cannot specify offset/noffset when providing data - "
                    "they are computed from data"
                )
            # Compute from data
            self.offset = self.data[0].offset
            self.noffset = self.data[-1].end_offset - self.offset

            # Validate computed values
            if (
                not isinstance(self.start, int)
                or not isinstance(self.end, int)
                or not (self.start <= self.end)
            ):
                raise ValueError(
                    "start and end must be integers and start must be <= end,"
                    f"got {self.start} and {self.end}"
                )

    def __iter__(self):
        return iter(self.data)

    def __getitem__(self, idx: int) -> EventBuffer:
        return self.data[idx]

    def __contains__(self, other):
        return other.slice in self.slice

    @property
    def events(self):
        """The list of Events."""
        return [event for buffer in self.data for event in buffer.data]

    def __repr__(self):
        out = (
            f"EventFrame(EOS={self.EOS}, is_gap={self.is_gap}, "
            f"metadata={self.metadata}, buffers={{\n"
        )
        for buf in self.data:
            out += f"    {buf},\n"
        out += "}})"
        return out

    def append(self, item: EventBuffer) -> None:
        """Append EventBuffer with validation.

        Validates that buffer falls within frame bounds (offset to offset+noffset)
        and is contiguous with previous buffers.

        Args:
            item: EventBuffer to append

        Raises:
            AssertionError if validation fails
        """
        frame_end_offset = self.offset + self.noffset

        # Check buffer falls within bounds
        assert (
            self.offset <= item.offset
        ), f"Buffer offset {item.offset} starts before frame offset {self.offset}"
        assert item.end_offset <= frame_end_offset, (
            f"Buffer end_offset {item.end_offset} extends beyond frame "
            f"end_offset {frame_end_offset}"
        )

        # Check contiguity with previous buffer
        if self.data:
            assert item.offset == self.data[-1].end_offset, (
                f"Buffer offset {item.offset} is not contiguous with "
                f"previous buffer end {self.data[-1].end_offset}"
            )

        self.data.append(item)

    def validate_span(self) -> None:
        """Validate that data fully spans the offset/noffset range.

        Checks that:
        - First buffer starts at frame offset
        - Last buffer ends at frame offset+noffset (the frame's end_offset)
        - All buffers are contiguous

        Raises:
            AssertionError if validation fails
        """
        if self.data:
            frame_end_offset = self.offset + self.noffset

            assert self.data[0].offset == self.offset, (
                f"First buffer offset {self.data[0].offset} != "
                f"frame offset {self.offset}"
            )
            assert self.data[-1].end_offset == frame_end_offset, (
                f"Last buffer end_offset {self.data[-1].end_offset} != "
                f"frame end_offset {frame_end_offset}"
            )
            # Check all buffers are contiguous
            for i in range(1, len(self.data)):
                assert self.data[i].offset == self.data[i - 1].end_offset, (
                    f"Gap between buffer {i-1} (end={self.data[i-1].end_offset}) "
                    f"and buffer {i} (start={self.data[i].offset})"
                )

events property

The list of Events.

append(item)

Append EventBuffer with validation.

Validates that buffer falls within frame bounds (offset to offset+noffset) and is contiguous with previous buffers.

Parameters:

Name Type Description Default
item EventBuffer

EventBuffer to append

required
Source code in sgnts/base/buffer.py
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
def append(self, item: EventBuffer) -> None:
    """Append EventBuffer with validation.

    Validates that buffer falls within frame bounds (offset to offset+noffset)
    and is contiguous with previous buffers.

    Args:
        item: EventBuffer to append

    Raises:
        AssertionError if validation fails
    """
    frame_end_offset = self.offset + self.noffset

    # Check buffer falls within bounds
    assert (
        self.offset <= item.offset
    ), f"Buffer offset {item.offset} starts before frame offset {self.offset}"
    assert item.end_offset <= frame_end_offset, (
        f"Buffer end_offset {item.end_offset} extends beyond frame "
        f"end_offset {frame_end_offset}"
    )

    # Check contiguity with previous buffer
    if self.data:
        assert item.offset == self.data[-1].end_offset, (
            f"Buffer offset {item.offset} is not contiguous with "
            f"previous buffer end {self.data[-1].end_offset}"
        )

    self.data.append(item)

validate_span()

Validate that data fully spans the offset/noffset range.

Checks that: - First buffer starts at frame offset - Last buffer ends at frame offset+noffset (the frame's end_offset) - All buffers are contiguous

Source code in sgnts/base/buffer.py
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
def validate_span(self) -> None:
    """Validate that data fully spans the offset/noffset range.

    Checks that:
    - First buffer starts at frame offset
    - Last buffer ends at frame offset+noffset (the frame's end_offset)
    - All buffers are contiguous

    Raises:
        AssertionError if validation fails
    """
    if self.data:
        frame_end_offset = self.offset + self.noffset

        assert self.data[0].offset == self.offset, (
            f"First buffer offset {self.data[0].offset} != "
            f"frame offset {self.offset}"
        )
        assert self.data[-1].end_offset == frame_end_offset, (
            f"Last buffer end_offset {self.data[-1].end_offset} != "
            f"frame end_offset {frame_end_offset}"
        )
        # Check all buffers are contiguous
        for i in range(1, len(self.data)):
            assert self.data[i].offset == self.data[i - 1].end_offset, (
                f"Gap between buffer {i-1} (end={self.data[i-1].end_offset}) "
                f"and buffer {i} (start={self.data[i].offset})"
            )

SeriesBuffer dataclass

Bases: TimeSpanLike


              flowchart TD
              sgnts.base.buffer.SeriesBuffer[SeriesBuffer]
              sgnts.base.buffer.TimeSpanLike[TimeSpanLike]
              sgnts.base.buffer.TimeLike[TimeLike]

                              sgnts.base.buffer.TimeSpanLike --> sgnts.base.buffer.SeriesBuffer
                                sgnts.base.buffer.TimeLike --> sgnts.base.buffer.TimeSpanLike
                



              click sgnts.base.buffer.SeriesBuffer href "" "sgnts.base.buffer.SeriesBuffer"
              click sgnts.base.buffer.TimeSpanLike href "" "sgnts.base.buffer.TimeSpanLike"
              click sgnts.base.buffer.TimeLike href "" "sgnts.base.buffer.TimeLike"
            

Timeseries buffer with associated metadata.

Parameters:

Name Type Description Default
offset int

int, the offset of the buffer. See Offset class for definitions.

required
sample_rate int

int, the sample rate belonging to the set of Offset.ALLOWED_RATES

required
data Optional[Union[int, Array]]

Optional[Union[int, Array]], the timeseries data or None.

None
shape tuple

tuple, the shape of the data regardless of gaps. Required if data is None or int, and represents the shape of the absent data.

(-1,)
backend type[ArrayBackend]

type[ArrayBackend], default NumpyBackend, the wrapper around array operations

NumpyBackend
Source code in sgnts/base/buffer.py
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
@dataclass(eq=False)
class SeriesBuffer(TimeSpanLike):
    """Timeseries buffer with associated metadata.

    Args:
        offset:
            int, the offset of the buffer. See Offset class for definitions.
        sample_rate:
            int, the sample rate belonging to the set of Offset.ALLOWED_RATES
        data:
            Optional[Union[int, Array]], the timeseries data or None.
        shape:
            tuple, the shape of the data regardless of gaps. Required if data is None
            or int, and represents the shape of the absent data.
        backend:
            type[ArrayBackend], default NumpyBackend, the wrapper around array
            operations
    """

    offset: int
    sample_rate: int
    data: Optional[Union[int, Array]] = None
    shape: tuple = (-1,)
    backend: type[ArrayBackend] = NumpyBackend

    def __post_init__(self):
        assert isinstance(self.offset, int)
        if self.sample_rate not in Offset.ALLOWED_RATES:
            raise ValueError(
                "%s not in allowed rates %s" % (self.sample_rate, Offset.ALLOWED_RATES)
            )
        if self.data is None:
            if self.shape == (-1,):
                raise ValueError("if data is None self.shape must be given")
        elif isinstance(self.data, int) and self.data == 1:
            if self.shape == (-1,):
                raise ValueError("if data is 1 self.shape must be given")
            self.data = self.backend.ones(self.shape)
        elif isinstance(self.data, int) and self.data == 0:
            if self.shape == (-1,):
                raise ValueError("if data is 0 self.shape must be given")
            self.data = self.backend.zeros(self.shape)
        elif self.shape == (-1,):
            self.shape = self.data.shape
        else:
            if self.shape != self.data.shape:
                raise ValueError(
                    "Array size mismatch: self.shape and self.data.shape "
                    "must agree,"
                    f"got {self.shape} and {self.data.shape} "
                    f"with data {self.data}"
                )

        assert isinstance(self.shape, tuple)
        assert len(self.shape) > 0, f"Buffer shape cannot be empty, got {self.shape}"

        for t in self.shape:
            assert isinstance(t, int)

        # set the data specification
        self.spec = SeriesDataSpec(
            sample_rate=self.sample_rate, data_type=self.backend.DTYPE
        )

    def __and__(self, other):
        sl = self.slice & other.slice
        if sl:
            return self.sub_buffer(sl)
        else:
            return None

    def isfinite(self):
        return self.slice.isfinite()

    def copy(
        self,
        offset: int | None = None,
        sample_rate: int | None = None,
        data: int | Array | None = None,
        is_gap: bool | None = None,
        shape: tuple | None = None,
        backend: type[ArrayBackend] | None = None,
    ) -> SeriesBuffer:
        """Returns a copy of the TSFrame with requested modifications.

        Any attributes not being changed will inherit from the original
        TSFrame.

        Args:
            offset:
                int, optional, the offset of the buffer. See Offset class for
                definitions.
            sample_rate:
                int, optional, the sample rate belonging to the set of
                Offset.ALLOWED_RATES
            data:
                int | Array, optional, the timeseries data.
            is_gap:
                bool, optional, set the buffer as a gap (or non-gap).
            shape:
                tuple, optional, the shape of the data regardless of gaps.
                Required if data is None or int, and represents the shape of
                the absent data.
            backend:
                type[ArrayBackend], optional, the wrapper around array
                operations
        """
        offset = self.offset if offset is None else offset
        sample_rate = self.sample_rate if sample_rate is None else sample_rate
        shape = self.shape if shape is None else shape
        backend = self.backend if backend is None else backend

        # using data=None as a case to decide whether to modify the buffer's
        # data with user-specified data needs extra care due to data=None also
        # being used to define the presence of a gap, so instead we enumerate
        # the possible cases based on whether is_gap is set and what the value
        # is if it is set.
        # NOTE: this can be simplified but is written as such to be explicit
        if is_gap is None:  # inherit buffer's gap status
            buf_data = self.data if data is None else data
        elif is_gap:  # change to gap
            buf_data = None
        else:  # change to non-gap
            buf_data = data

        return SeriesBuffer(
            offset=offset, sample_rate=sample_rate, data=buf_data, shape=shape
        )

    @staticmethod
    def fromoffsetslice(
        offslice: TSSlice,
        sample_rate: int,
        data: Optional[Union[int, Array]] = None,
        channels: tuple[int, ...] = (),
    ) -> "SeriesBuffer":
        """Create a SeriesBuffer from a requested offset slice.

        Args:
            offslice:
                TSSlice, the offset slices the buffer spans
            sample_rate:
                int, the sample rate of the buffer
            data:
                Optional[Union[int, Array]], the data in the buffer
            channels:
                tuple[int, ...], the number of channels except the last dimension of the
                shape of the data, i.e., channels = data.shape[:-1]

        Returns:
            SeriesBuffer, the buffer that spans the requested offset slice
        """
        shape = channels + (
            Offset.tosamples(offslice.stop - offslice.start, sample_rate),
        )
        return SeriesBuffer(
            offset=offslice.start, sample_rate=sample_rate, data=data, shape=shape
        )

    def new(
        self,
        offslice: Optional[TSSlice] = None,
        data: Optional[Union[int, Array]] = None,
    ):
        """
        Return a new buffer from an existing one and optionally change the offsets.
        """
        return SeriesBuffer.fromoffsetslice(
            self.slice if offslice is None else offslice,
            self.sample_rate,
            data,
            self.shape[:-1],
        )

    def __repr__(self):
        with numpy.printoptions(threshold=3, edgeitems=1):
            return (
                "SeriesBuffer(offset=%d, offset_end=%d, shape=%s, sample_rate=%d,"
                " duration=%d, data=%s)"
                % (
                    self.offset,
                    self.end_offset,
                    self.shape,
                    self.sample_rate,
                    self.duration,
                    self.data,
                )
            )

    @property
    def properties(self):
        return {
            "offset": self.offset,
            "end_offset": self.end_offset,
            "t0": self.t0,
            "end": self.end,
            "shape": self.shape,
            "sample_shape": self.sample_shape,
            "sample_rate": self.sample_rate,
        }

    def __bool__(self):
        return self.data is not None

    def __len__(self):
        return 0 if self.data is None else len(self.data)

    def set_data(self, data: Optional[Array] = None) -> None:
        """Set the data attribute to the newly provided data.

        Args:
            data:
                Optional[Array], the new data to set to
        """
        if isinstance(data, int) and data == 1:
            self.data = self.backend.ones(self.shape)
        elif isinstance(data, int) and data == 0:
            self.data = self.backend.zeros(self.shape)
        elif isinstance(data, (int, float, complex)):
            # Handle any numeric value by creating an array filled with that value
            self.data = self.backend.full(self.shape, data)
        elif data is not None and self.shape != data.shape:
            raise ValueError("Data are incompatible shapes")
        else:
            # it really isn't clear to me if this should be by reference or copy...
            self.data = data

    @property
    def tarr(self) -> Array:
        """An array of time stamps for each sample of the data in the buffer, in
        seconds.

        Returns:
            Array, the time array
        """
        return (
            self.backend.arange(self.samples) / self.sample_rate
            + self.t0 / Time.SECONDS
        )

    def __eq__(self, value: Union[SeriesBuffer, Any]) -> bool:
        # FIXME this is a bit convoluted.  In order for some of these tests to
        # be triggered strange manipulation of objects would have to occur.
        # Consider making the SeriesBuffer properties read only where possible.
        is_series_buffer = isinstance(value, SeriesBuffer)
        if not is_series_buffer:
            return False
        if not (value.shape == self.shape):
            return False
        # FIXME is this the right check? Or do we want to check dtype? Under
        # what circumstances will this check fail?
        if type(self.data) is not type(value.data):
            return False
        if isinstance(self.data, NumpyArray) and isinstance(value.data, NumpyArray):
            share_data = NumpyBackend.all(self.data == value.data)
        elif isinstance(self.data, TorchArray) and isinstance(value.data, TorchArray):
            share_data = TorchBackend.all(self.data == value.data)
        elif self.data is None and value.data is None:
            share_data = True
        else:
            # Will need to expand this conditional if/when other data types are added
            raise ValueError("invalid data object")
        share_offset = value.offset == self.offset
        share_sample_rate = value.sample_rate == self.sample_rate
        return share_data and share_offset and share_sample_rate

    @property
    def noffset(self) -> int:
        """The number of offsets spanned by this buffer.

        Returns:
            int, the offset duration
        """
        return Offset.fromsamples(self.samples, self.sample_rate)

    @noffset.setter
    def noffset(self, other: int) -> None:
        msg = "cannot set noffset on a SeriesBuffer"
        raise AttributeError(msg)

    @property
    def samples(self) -> int:
        """The number of samples the buffer carries.

        Return:
            int, the number of samples
        """
        assert len(self.shape) > 0, f"Buffer shape cannot be empty, got {self.shape}"
        return self.shape[-1]

    @property
    def sample_shape(self) -> tuple:
        """return the sample shape"""
        return self.shape[:-1]

    @property
    def is_gap(self) -> bool:
        """Whether the buffer is a gap. This is determined by whether the data is None.

        Returns:
            bool, whether the buffer is a gap
        """
        return self.data is None

    def filleddata(self, zeros_func=None) -> Array:
        """Fill the data with zeros if buffer is a gap, otherwise return the data.

        Args:
            zeros_func:
                the function to produce a zeros array

        Returns:
            Array, the filled data
        """
        if zeros_func is None:
            zeros_func = self.backend.zeros

        if self.data is not None:
            return self.data
        else:
            return zeros_func(self.shape)

    def __contains__(self, item):
        # FIXME, is this what we want?
        if isinstance(item, int):
            # The end offset is not actually in the buffer hence the second "<" vs "<="
            return self.offset <= item < self.end_offset
        elif isinstance(item, SeriesBuffer):
            return (self.offset <= item.offset) and (item.end_offset <= self.end_offset)
        else:
            return False

    def _insert(self, data: Array, offset) -> None:
        """TODO workshop the name
        Adds data from a whose slice is
        fully contained within self's into self.
        Does not do safety checks."""
        insertion_index = Offset.tosamples(
            offset - self.offset, sample_rate=self.sample_rate
        )
        # FIXME: this is a thorny issue because of how generous we are with the type
        # of data and the type of Array.  Fixing this will involve being
        # stricter about types and more careful throughout the array_ops
        # module.
        self.data[
            ..., insertion_index : insertion_index + data.shape[-1]
        ] += data  # type: ignore

    @property
    def _backend_from_data(self):
        if isinstance(self.data, NumpyArray):
            return NumpyBackend
        elif isinstance(self.data, TorchArray):
            if (
                self.data.device != TorchBackend.DEVICE
                or self.data.dtype != TorchBackend.DTYPE
            ):
                raise ValueError("TorchArray and data backends are incompatable")
            return TorchBackend
        else:
            return None

    def __add__(self, item: SeriesBuffer) -> SeriesBuffer:
        """Add two `SeriesBuffer`s, padding as necessary.

        Args:
            item:
                SeriesBuffer, The other component of the addition. Must be a
                SeriesBuffer, must have the same sample rate as self, and its data must
                be the same type (e.g. numpy array or pytorch Tensor)

        Returns:
            SeriesBuffer, The SeriesBuffer resulting from the addition
        """
        # Choose the correct backend
        # Handle polymorphism more smoothly in the future?
        # It's python so maybe this is the best option available
        if not isinstance(item, SeriesBuffer):
            raise TypeError("Both arguments must be of the SeriesBuffer type")
        # A bit convoluted, cases are:
        # - if both None then output gap
        # - if one None fill the gap and add with other's backend
        # - if neither None but disagree raise an error
        backend = self._backend_from_data
        if (
            (backend != item._backend_from_data)
            and (item._backend_from_data is not None)
            and (backend is not None)
        ):
            raise TypeError("Incompatible data types")
        if backend is None and item._backend_from_data is not None:
            backend = item._backend_from_data
        if self.shape[:-1] != item.shape[:-1]:
            raise ValueError("All dimensions except the padding dimension must match")
        if self.sample_rate != item.sample_rate:
            raise ValueError("Sample rates must match")
        new_buffer = self.fromoffsetslice(
            self.slice | item.slice,
            sample_rate=self.sample_rate,
            data=None,
            channels=self.shape[:-1],
        )
        if backend is None:
            return new_buffer

        new_buffer.data = new_buffer.filleddata(backend.zeros)
        self_filled_data = self.filleddata(backend.zeros)
        item_filled_data = item.filleddata(backend.zeros)

        new_buffer._insert(self_filled_data, self.offset)
        new_buffer._insert(item_filled_data, item.offset)

        return new_buffer

    def pad_buffer(
        self, off: int, data: Optional[Union[int, Array]] = None
    ) -> "SeriesBuffer":
        """Generate a buffer to pad before this buffer.

        Args:
            off:
                int, the offset to start the padding. Must be earlier than this buffer.
            data:
                Optional[Union[int, Array]], the data of the pad buffer

        Returns:
            SeriesBuffer, the pad buffer
        """
        assert (
            off < self.offset
        ), f"Requested offset {off} must be before buffer offset {self.offset}"
        return SeriesBuffer(
            offset=off,
            sample_rate=self.sample_rate,
            data=data,
            shape=self.shape[:-1]
            + (Offset.tosamples(self.offset - off, self.sample_rate),),
        )

    def sub_buffer(self, slc: TSSlice, gap: bool = False) -> "SeriesBuffer":
        """Generate a sub buffer whose offset slice is within this buffer.

        Args:
            slc:
                TSSlice, the offset slice of the sub buffer
            gap:
                bool, if True, set the sub buffer to a gap

        Returns:
            SeriesBuffer, the sub buffer
        """
        assert (
            slc in self.slice
        ), f"Requested slice {slc} not contained in buffer slice {self.slice}"
        startsamples, stopsamples = Offset.tosamples(
            slc.start - self.offset, self.sample_rate
        ), Offset.tosamples(slc.stop - self.offset, self.sample_rate)
        if not gap and self.data is not None and not isinstance(self.data, int):
            data = self.data[..., startsamples:stopsamples]
        else:
            data = None

        return SeriesBuffer(
            offset=slc.start,
            sample_rate=self.sample_rate,
            data=data,
            shape=self.shape[:-1] + (stopsamples - startsamples,),
        )

    def split(
        self, boundaries: Union[int, TSSlices], contiguous: bool = False
    ) -> list["SeriesBuffer"]:
        """Split the buffer according to the requested offset boundaries.

        Args:
            boundaries:
                Union[int, TSSlices], the offset boundaries to split the buffer into.
            contiguous:
                bool, if True, will generate gap buffers when there are discontinuities

        Returns:
            list[SeriesBuffer], a list of SeriesBuffers split up according to the
            offset boundaries
        """
        out = []
        if isinstance(boundaries, int):
            boundaries = TSSlices(self.slice.split(boundaries))
        if not isinstance(boundaries, TSSlices):
            raise NotImplementedError
        for slc in boundaries.slices:
            assert (
                slc in self.slice
            ), f"Slice {slc} must be within buffer bounds {self.slice}"
            out.append(self.sub_buffer(slc))
        if contiguous:
            gap_boundaries = boundaries.invert(self.slice)
            for slc in gap_boundaries.slices:
                out.append(self.sub_buffer(slc, gap=True))
        return sorted(out)

is_gap property

Whether the buffer is a gap. This is determined by whether the data is None.

Returns:

Type Description
bool

bool, whether the buffer is a gap

noffset property writable

The number of offsets spanned by this buffer.

Returns:

Type Description
int

int, the offset duration

sample_shape property

return the sample shape

samples property

The number of samples the buffer carries.

Return

int, the number of samples

tarr property

An array of time stamps for each sample of the data in the buffer, in seconds.

Returns:

Type Description
Array

Array, the time array

__add__(item)

Add two SeriesBuffers, padding as necessary.

Parameters:

Name Type Description Default
item SeriesBuffer

SeriesBuffer, The other component of the addition. Must be a SeriesBuffer, must have the same sample rate as self, and its data must be the same type (e.g. numpy array or pytorch Tensor)

required

Returns:

Type Description
SeriesBuffer

SeriesBuffer, The SeriesBuffer resulting from the addition

Source code in sgnts/base/buffer.py
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
def __add__(self, item: SeriesBuffer) -> SeriesBuffer:
    """Add two `SeriesBuffer`s, padding as necessary.

    Args:
        item:
            SeriesBuffer, The other component of the addition. Must be a
            SeriesBuffer, must have the same sample rate as self, and its data must
            be the same type (e.g. numpy array or pytorch Tensor)

    Returns:
        SeriesBuffer, The SeriesBuffer resulting from the addition
    """
    # Choose the correct backend
    # Handle polymorphism more smoothly in the future?
    # It's python so maybe this is the best option available
    if not isinstance(item, SeriesBuffer):
        raise TypeError("Both arguments must be of the SeriesBuffer type")
    # A bit convoluted, cases are:
    # - if both None then output gap
    # - if one None fill the gap and add with other's backend
    # - if neither None but disagree raise an error
    backend = self._backend_from_data
    if (
        (backend != item._backend_from_data)
        and (item._backend_from_data is not None)
        and (backend is not None)
    ):
        raise TypeError("Incompatible data types")
    if backend is None and item._backend_from_data is not None:
        backend = item._backend_from_data
    if self.shape[:-1] != item.shape[:-1]:
        raise ValueError("All dimensions except the padding dimension must match")
    if self.sample_rate != item.sample_rate:
        raise ValueError("Sample rates must match")
    new_buffer = self.fromoffsetslice(
        self.slice | item.slice,
        sample_rate=self.sample_rate,
        data=None,
        channels=self.shape[:-1],
    )
    if backend is None:
        return new_buffer

    new_buffer.data = new_buffer.filleddata(backend.zeros)
    self_filled_data = self.filleddata(backend.zeros)
    item_filled_data = item.filleddata(backend.zeros)

    new_buffer._insert(self_filled_data, self.offset)
    new_buffer._insert(item_filled_data, item.offset)

    return new_buffer

copy(offset=None, sample_rate=None, data=None, is_gap=None, shape=None, backend=None)

Returns a copy of the TSFrame with requested modifications.

Any attributes not being changed will inherit from the original TSFrame.

Parameters:

Name Type Description Default
offset int | None

int, optional, the offset of the buffer. See Offset class for definitions.

None
sample_rate int | None

int, optional, the sample rate belonging to the set of Offset.ALLOWED_RATES

None
data int | Array | None

int | Array, optional, the timeseries data.

None
is_gap bool | None

bool, optional, set the buffer as a gap (or non-gap).

None
shape tuple | None

tuple, optional, the shape of the data regardless of gaps. Required if data is None or int, and represents the shape of the absent data.

None
backend type[ArrayBackend] | None

type[ArrayBackend], optional, the wrapper around array operations

None
Source code in sgnts/base/buffer.py
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
def copy(
    self,
    offset: int | None = None,
    sample_rate: int | None = None,
    data: int | Array | None = None,
    is_gap: bool | None = None,
    shape: tuple | None = None,
    backend: type[ArrayBackend] | None = None,
) -> SeriesBuffer:
    """Returns a copy of the TSFrame with requested modifications.

    Any attributes not being changed will inherit from the original
    TSFrame.

    Args:
        offset:
            int, optional, the offset of the buffer. See Offset class for
            definitions.
        sample_rate:
            int, optional, the sample rate belonging to the set of
            Offset.ALLOWED_RATES
        data:
            int | Array, optional, the timeseries data.
        is_gap:
            bool, optional, set the buffer as a gap (or non-gap).
        shape:
            tuple, optional, the shape of the data regardless of gaps.
            Required if data is None or int, and represents the shape of
            the absent data.
        backend:
            type[ArrayBackend], optional, the wrapper around array
            operations
    """
    offset = self.offset if offset is None else offset
    sample_rate = self.sample_rate if sample_rate is None else sample_rate
    shape = self.shape if shape is None else shape
    backend = self.backend if backend is None else backend

    # using data=None as a case to decide whether to modify the buffer's
    # data with user-specified data needs extra care due to data=None also
    # being used to define the presence of a gap, so instead we enumerate
    # the possible cases based on whether is_gap is set and what the value
    # is if it is set.
    # NOTE: this can be simplified but is written as such to be explicit
    if is_gap is None:  # inherit buffer's gap status
        buf_data = self.data if data is None else data
    elif is_gap:  # change to gap
        buf_data = None
    else:  # change to non-gap
        buf_data = data

    return SeriesBuffer(
        offset=offset, sample_rate=sample_rate, data=buf_data, shape=shape
    )

filleddata(zeros_func=None)

Fill the data with zeros if buffer is a gap, otherwise return the data.

Parameters:

Name Type Description Default
zeros_func

the function to produce a zeros array

None

Returns:

Type Description
Array

Array, the filled data

Source code in sgnts/base/buffer.py
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
def filleddata(self, zeros_func=None) -> Array:
    """Fill the data with zeros if buffer is a gap, otherwise return the data.

    Args:
        zeros_func:
            the function to produce a zeros array

    Returns:
        Array, the filled data
    """
    if zeros_func is None:
        zeros_func = self.backend.zeros

    if self.data is not None:
        return self.data
    else:
        return zeros_func(self.shape)

fromoffsetslice(offslice, sample_rate, data=None, channels=()) staticmethod

Create a SeriesBuffer from a requested offset slice.

Parameters:

Name Type Description Default
offslice TSSlice

TSSlice, the offset slices the buffer spans

required
sample_rate int

int, the sample rate of the buffer

required
data Optional[Union[int, Array]]

Optional[Union[int, Array]], the data in the buffer

None
channels tuple[int, ...]

tuple[int, ...], the number of channels except the last dimension of the shape of the data, i.e., channels = data.shape[:-1]

()

Returns:

Type Description
'SeriesBuffer'

SeriesBuffer, the buffer that spans the requested offset slice

Source code in sgnts/base/buffer.py
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
@staticmethod
def fromoffsetslice(
    offslice: TSSlice,
    sample_rate: int,
    data: Optional[Union[int, Array]] = None,
    channels: tuple[int, ...] = (),
) -> "SeriesBuffer":
    """Create a SeriesBuffer from a requested offset slice.

    Args:
        offslice:
            TSSlice, the offset slices the buffer spans
        sample_rate:
            int, the sample rate of the buffer
        data:
            Optional[Union[int, Array]], the data in the buffer
        channels:
            tuple[int, ...], the number of channels except the last dimension of the
            shape of the data, i.e., channels = data.shape[:-1]

    Returns:
        SeriesBuffer, the buffer that spans the requested offset slice
    """
    shape = channels + (
        Offset.tosamples(offslice.stop - offslice.start, sample_rate),
    )
    return SeriesBuffer(
        offset=offslice.start, sample_rate=sample_rate, data=data, shape=shape
    )

new(offslice=None, data=None)

Return a new buffer from an existing one and optionally change the offsets.

Source code in sgnts/base/buffer.py
520
521
522
523
524
525
526
527
528
529
530
531
532
533
def new(
    self,
    offslice: Optional[TSSlice] = None,
    data: Optional[Union[int, Array]] = None,
):
    """
    Return a new buffer from an existing one and optionally change the offsets.
    """
    return SeriesBuffer.fromoffsetslice(
        self.slice if offslice is None else offslice,
        self.sample_rate,
        data,
        self.shape[:-1],
    )

pad_buffer(off, data=None)

Generate a buffer to pad before this buffer.

Parameters:

Name Type Description Default
off int

int, the offset to start the padding. Must be earlier than this buffer.

required
data Optional[Union[int, Array]]

Optional[Union[int, Array]], the data of the pad buffer

None

Returns:

Type Description
'SeriesBuffer'

SeriesBuffer, the pad buffer

Source code in sgnts/base/buffer.py
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
def pad_buffer(
    self, off: int, data: Optional[Union[int, Array]] = None
) -> "SeriesBuffer":
    """Generate a buffer to pad before this buffer.

    Args:
        off:
            int, the offset to start the padding. Must be earlier than this buffer.
        data:
            Optional[Union[int, Array]], the data of the pad buffer

    Returns:
        SeriesBuffer, the pad buffer
    """
    assert (
        off < self.offset
    ), f"Requested offset {off} must be before buffer offset {self.offset}"
    return SeriesBuffer(
        offset=off,
        sample_rate=self.sample_rate,
        data=data,
        shape=self.shape[:-1]
        + (Offset.tosamples(self.offset - off, self.sample_rate),),
    )

set_data(data=None)

Set the data attribute to the newly provided data.

Parameters:

Name Type Description Default
data Optional[Array]

Optional[Array], the new data to set to

None
Source code in sgnts/base/buffer.py
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
def set_data(self, data: Optional[Array] = None) -> None:
    """Set the data attribute to the newly provided data.

    Args:
        data:
            Optional[Array], the new data to set to
    """
    if isinstance(data, int) and data == 1:
        self.data = self.backend.ones(self.shape)
    elif isinstance(data, int) and data == 0:
        self.data = self.backend.zeros(self.shape)
    elif isinstance(data, (int, float, complex)):
        # Handle any numeric value by creating an array filled with that value
        self.data = self.backend.full(self.shape, data)
    elif data is not None and self.shape != data.shape:
        raise ValueError("Data are incompatible shapes")
    else:
        # it really isn't clear to me if this should be by reference or copy...
        self.data = data

split(boundaries, contiguous=False)

Split the buffer according to the requested offset boundaries.

Parameters:

Name Type Description Default
boundaries Union[int, TSSlices]

Union[int, TSSlices], the offset boundaries to split the buffer into.

required
contiguous bool

bool, if True, will generate gap buffers when there are discontinuities

False

Returns:

Type Description
list['SeriesBuffer']

list[SeriesBuffer], a list of SeriesBuffers split up according to the

list['SeriesBuffer']

offset boundaries

Source code in sgnts/base/buffer.py
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
def split(
    self, boundaries: Union[int, TSSlices], contiguous: bool = False
) -> list["SeriesBuffer"]:
    """Split the buffer according to the requested offset boundaries.

    Args:
        boundaries:
            Union[int, TSSlices], the offset boundaries to split the buffer into.
        contiguous:
            bool, if True, will generate gap buffers when there are discontinuities

    Returns:
        list[SeriesBuffer], a list of SeriesBuffers split up according to the
        offset boundaries
    """
    out = []
    if isinstance(boundaries, int):
        boundaries = TSSlices(self.slice.split(boundaries))
    if not isinstance(boundaries, TSSlices):
        raise NotImplementedError
    for slc in boundaries.slices:
        assert (
            slc in self.slice
        ), f"Slice {slc} must be within buffer bounds {self.slice}"
        out.append(self.sub_buffer(slc))
    if contiguous:
        gap_boundaries = boundaries.invert(self.slice)
        for slc in gap_boundaries.slices:
            out.append(self.sub_buffer(slc, gap=True))
    return sorted(out)

sub_buffer(slc, gap=False)

Generate a sub buffer whose offset slice is within this buffer.

Parameters:

Name Type Description Default
slc TSSlice

TSSlice, the offset slice of the sub buffer

required
gap bool

bool, if True, set the sub buffer to a gap

False

Returns:

Type Description
'SeriesBuffer'

SeriesBuffer, the sub buffer

Source code in sgnts/base/buffer.py
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
def sub_buffer(self, slc: TSSlice, gap: bool = False) -> "SeriesBuffer":
    """Generate a sub buffer whose offset slice is within this buffer.

    Args:
        slc:
            TSSlice, the offset slice of the sub buffer
        gap:
            bool, if True, set the sub buffer to a gap

    Returns:
        SeriesBuffer, the sub buffer
    """
    assert (
        slc in self.slice
    ), f"Requested slice {slc} not contained in buffer slice {self.slice}"
    startsamples, stopsamples = Offset.tosamples(
        slc.start - self.offset, self.sample_rate
    ), Offset.tosamples(slc.stop - self.offset, self.sample_rate)
    if not gap and self.data is not None and not isinstance(self.data, int):
        data = self.data[..., startsamples:stopsamples]
    else:
        data = None

    return SeriesBuffer(
        offset=slc.start,
        sample_rate=self.sample_rate,
        data=data,
        shape=self.shape[:-1] + (stopsamples - startsamples,),
    )

SeriesDataSpec dataclass

Bases: DataSpec


              flowchart TD
              sgnts.base.buffer.SeriesDataSpec[SeriesDataSpec]

              

              click sgnts.base.buffer.SeriesDataSpec href "" "sgnts.base.buffer.SeriesDataSpec"
            

Data specification for timeseries.

Parameters:

Name Type Description Default
sample_rate int

int, the sample rate associated with the data.

required
data_type Any

Any, the data type associated with the data.

required
Source code in sgnts/base/buffer.py
346
347
348
349
350
351
352
353
354
355
356
357
358
@dataclass(frozen=True)
class SeriesDataSpec(DataSpec):
    """Data specification for timeseries.

    Args:
        sample_rate:
            int, the sample rate associated with the data.
        data_type:
            Any, the data type associated with the data.
    """

    sample_rate: int
    data_type: Any

TSCollectFrame dataclass

Bases: TimeSpanFrame


              flowchart TD
              sgnts.base.buffer.TSCollectFrame[TSCollectFrame]
              sgnts.base.buffer.TimeSpanFrame[TimeSpanFrame]
              sgnts.base.buffer.TimeSpanLike[TimeSpanLike]
              sgnts.base.buffer.TimeLike[TimeLike]

                              sgnts.base.buffer.TimeSpanFrame --> sgnts.base.buffer.TSCollectFrame
                                sgnts.base.buffer.TimeSpanLike --> sgnts.base.buffer.TimeSpanFrame
                                sgnts.base.buffer.TimeLike --> sgnts.base.buffer.TimeSpanLike
                




              click sgnts.base.buffer.TSCollectFrame href "" "sgnts.base.buffer.TSCollectFrame"
              click sgnts.base.buffer.TimeSpanFrame href "" "sgnts.base.buffer.TimeSpanFrame"
              click sgnts.base.buffer.TimeSpanLike href "" "sgnts.base.buffer.TimeSpanLike"
              click sgnts.base.buffer.TimeLike href "" "sgnts.base.buffer.TimeLike"
            

A collector for incrementally building a TSFrame with validation.

TSCollectFrame provides atomic all-or-nothing buffer collection: - Buffers are collected in a temporary list - Validation occurs on close() - Only commits to parent TSFrame if all validations pass - Can be used as a context manager for automatic cleanup

Parameters:

Name Type Description Default
parent_frame TSFrame

TSFrame, the frame to populate

required
Usage

Context manager (automatic close)

frame = TSFrame(offset=0, noffset=1000) with frame.fill() as collector: collector.append(buf1) collector.append(buf2)

frame now has buffers

Manual (explicit control)

frame = TSFrame(offset=0, noffset=1000) collector = frame.fill() collector.append(buf1) collector.close()

Source code in sgnts/base/buffer.py
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
@dataclass(eq=False, kw_only=True)
class TSCollectFrame(TimeSpanFrame):
    """A collector for incrementally building a TSFrame with validation.

    TSCollectFrame provides atomic all-or-nothing buffer collection:
    - Buffers are collected in a temporary list
    - Validation occurs on close()
    - Only commits to parent TSFrame if all validations pass
    - Can be used as a context manager for automatic cleanup

    Args:
        parent_frame: TSFrame, the frame to populate

    Usage:
        # Context manager (automatic close)
        frame = TSFrame(offset=0, noffset=1000)
        with frame.fill() as collector:
            collector.append(buf1)
            collector.append(buf2)
        # frame now has buffers

        # Manual (explicit control)
        frame = TSFrame(offset=0, noffset=1000)
        collector = frame.fill()
        collector.append(buf1)
        collector.close()
    """

    parent_frame: TSFrame
    _buffers: list[SeriesBuffer] = field(default_factory=list, init=False, repr=False)
    _closed: bool = field(default=False, init=False, repr=False)

    def __post_init__(self):
        super().__post_init__()
        # Inherit offset/noffset from parent
        self.offset = self.parent_frame.offset
        self.noffset = self.parent_frame.noffset
        self.EOS = self.parent_frame.EOS
        self.metadata = self.parent_frame.metadata

    def __iter__(self):
        """Iterate over collected buffers."""
        return iter(self._buffers)

    def __len__(self) -> int:
        """Return number of collected buffers."""
        return len(self._buffers)

    def __enter__(self) -> TSCollectFrame:
        """Enter context manager."""
        if len(self.parent_frame.buffers) > 0:
            raise ValueError(
                "Cannot use fill() on a TSFrame that already has buffers. "
                "TSCollectFrame can only populate empty frames."
            )
        return self

    def __exit__(self, exc_type, exc_val, exc_tb):
        """Exit context manager - close if no exception occurred."""
        if exc_type is None:
            self.close()
        return False

    def append(self, item: SeriesBuffer) -> None:
        """Append SeriesBuffer to temporary collection.

        Validates that buffer falls within frame bounds and is contiguous
        with previous buffers. Does not commit to parent frame until close().

        Args:
            item: SeriesBuffer to append
        """
        if self._closed:
            raise ValueError("Cannot append to closed TSCollectFrame")

        frame_end_offset = self.offset + self.noffset

        # Check buffer falls within bounds
        assert (
            self.offset <= item.offset
        ), f"Buffer offset {item.offset} starts before frame offset {self.offset}"
        assert item.end_offset <= frame_end_offset, (
            f"Buffer end_offset {item.end_offset} extends beyond frame "
            f"end_offset {frame_end_offset}"
        )

        # Check contiguity with previous buffer
        if self._buffers:
            assert item.offset == self._buffers[-1].end_offset, (
                f"Buffer offset {item.offset} is not contiguous with "
                f"previous buffer end {self._buffers[-1].end_offset}"
            )
        else:
            # First buffer must start at frame offset
            assert item.offset == self.offset, (
                f"First buffer offset {item.offset} must match "
                f"frame offset {self.offset}"
            )

        self._buffers.append(item)

    def extend(self, items: Iterable[SeriesBuffer]) -> None:
        """Extend with multiple SeriesBuffers, validating each.

        Args:
            items: Iterable of SeriesBuffers to append
        """
        for item in items:
            self.append(item)

    def __iadd__(self, item: SeriesBuffer) -> TSCollectFrame:
        """Support += operator for appending."""
        self.append(item)
        return self

    def validate_span(self) -> None:
        """Validate that buffers fully span the offset/noffset range.

        Checks that:
        - First buffer starts at frame offset
        - Last buffer ends at frame offset+noffset (the frame's end_offset)
        """
        if not self._buffers:
            raise ValueError("Cannot validate empty collector - no buffers added")

        frame_end_offset = self.offset + self.noffset

        assert self._buffers[0].offset == self.offset, (
            f"First buffer offset {self._buffers[0].offset} != "
            f"frame offset {self.offset}"
        )
        assert self._buffers[-1].end_offset == frame_end_offset, (
            f"Last buffer end_offset {self._buffers[-1].end_offset} != "
            f"frame end_offset {frame_end_offset}"
        )

    def close(self) -> None:
        """Validate and commit buffers to parent TSFrame.

        This validates that buffers span the frame's offset/noffset range,
        then atomically commits them to the parent frame using set_buffers(),
        which performs additional validation (contiguity, consistent specs, etc.).

        After close(), this TSCollectFrame cannot be used again.
        """
        if self._closed:
            raise ValueError("TSCollectFrame already closed")

        # Validate that buffers span the frame's range
        self.validate_span()

        # Atomically commit to parent frame
        # set_buffers() handles contiguity, backend, and spec validation
        self.parent_frame.set_buffers(self._buffers)

        # Mark as closed
        self._closed = True

__enter__()

Enter context manager.

Source code in sgnts/base/buffer.py
927
928
929
930
931
932
933
934
def __enter__(self) -> TSCollectFrame:
    """Enter context manager."""
    if len(self.parent_frame.buffers) > 0:
        raise ValueError(
            "Cannot use fill() on a TSFrame that already has buffers. "
            "TSCollectFrame can only populate empty frames."
        )
    return self

__exit__(exc_type, exc_val, exc_tb)

Exit context manager - close if no exception occurred.

Source code in sgnts/base/buffer.py
936
937
938
939
940
def __exit__(self, exc_type, exc_val, exc_tb):
    """Exit context manager - close if no exception occurred."""
    if exc_type is None:
        self.close()
    return False

__iadd__(item)

Support += operator for appending.

Source code in sgnts/base/buffer.py
989
990
991
992
def __iadd__(self, item: SeriesBuffer) -> TSCollectFrame:
    """Support += operator for appending."""
    self.append(item)
    return self

__iter__()

Iterate over collected buffers.

Source code in sgnts/base/buffer.py
919
920
921
def __iter__(self):
    """Iterate over collected buffers."""
    return iter(self._buffers)

__len__()

Return number of collected buffers.

Source code in sgnts/base/buffer.py
923
924
925
def __len__(self) -> int:
    """Return number of collected buffers."""
    return len(self._buffers)

append(item)

Append SeriesBuffer to temporary collection.

Validates that buffer falls within frame bounds and is contiguous with previous buffers. Does not commit to parent frame until close().

Parameters:

Name Type Description Default
item SeriesBuffer

SeriesBuffer to append

required
Source code in sgnts/base/buffer.py
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
def append(self, item: SeriesBuffer) -> None:
    """Append SeriesBuffer to temporary collection.

    Validates that buffer falls within frame bounds and is contiguous
    with previous buffers. Does not commit to parent frame until close().

    Args:
        item: SeriesBuffer to append
    """
    if self._closed:
        raise ValueError("Cannot append to closed TSCollectFrame")

    frame_end_offset = self.offset + self.noffset

    # Check buffer falls within bounds
    assert (
        self.offset <= item.offset
    ), f"Buffer offset {item.offset} starts before frame offset {self.offset}"
    assert item.end_offset <= frame_end_offset, (
        f"Buffer end_offset {item.end_offset} extends beyond frame "
        f"end_offset {frame_end_offset}"
    )

    # Check contiguity with previous buffer
    if self._buffers:
        assert item.offset == self._buffers[-1].end_offset, (
            f"Buffer offset {item.offset} is not contiguous with "
            f"previous buffer end {self._buffers[-1].end_offset}"
        )
    else:
        # First buffer must start at frame offset
        assert item.offset == self.offset, (
            f"First buffer offset {item.offset} must match "
            f"frame offset {self.offset}"
        )

    self._buffers.append(item)

close()

Validate and commit buffers to parent TSFrame.

This validates that buffers span the frame's offset/noffset range, then atomically commits them to the parent frame using set_buffers(), which performs additional validation (contiguity, consistent specs, etc.).

After close(), this TSCollectFrame cannot be used again.

Source code in sgnts/base/buffer.py
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
def close(self) -> None:
    """Validate and commit buffers to parent TSFrame.

    This validates that buffers span the frame's offset/noffset range,
    then atomically commits them to the parent frame using set_buffers(),
    which performs additional validation (contiguity, consistent specs, etc.).

    After close(), this TSCollectFrame cannot be used again.
    """
    if self._closed:
        raise ValueError("TSCollectFrame already closed")

    # Validate that buffers span the frame's range
    self.validate_span()

    # Atomically commit to parent frame
    # set_buffers() handles contiguity, backend, and spec validation
    self.parent_frame.set_buffers(self._buffers)

    # Mark as closed
    self._closed = True

extend(items)

Extend with multiple SeriesBuffers, validating each.

Parameters:

Name Type Description Default
items Iterable[SeriesBuffer]

Iterable of SeriesBuffers to append

required
Source code in sgnts/base/buffer.py
980
981
982
983
984
985
986
987
def extend(self, items: Iterable[SeriesBuffer]) -> None:
    """Extend with multiple SeriesBuffers, validating each.

    Args:
        items: Iterable of SeriesBuffers to append
    """
    for item in items:
        self.append(item)

validate_span()

Validate that buffers fully span the offset/noffset range.

Checks that: - First buffer starts at frame offset - Last buffer ends at frame offset+noffset (the frame's end_offset)

Source code in sgnts/base/buffer.py
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
def validate_span(self) -> None:
    """Validate that buffers fully span the offset/noffset range.

    Checks that:
    - First buffer starts at frame offset
    - Last buffer ends at frame offset+noffset (the frame's end_offset)
    """
    if not self._buffers:
        raise ValueError("Cannot validate empty collector - no buffers added")

    frame_end_offset = self.offset + self.noffset

    assert self._buffers[0].offset == self.offset, (
        f"First buffer offset {self._buffers[0].offset} != "
        f"frame offset {self.offset}"
    )
    assert self._buffers[-1].end_offset == frame_end_offset, (
        f"Last buffer end_offset {self._buffers[-1].end_offset} != "
        f"frame end_offset {frame_end_offset}"
    )

TSFrame dataclass

Bases: TimeSpanFrame


              flowchart TD
              sgnts.base.buffer.TSFrame[TSFrame]
              sgnts.base.buffer.TimeSpanFrame[TimeSpanFrame]
              sgnts.base.buffer.TimeSpanLike[TimeSpanLike]
              sgnts.base.buffer.TimeLike[TimeLike]

                              sgnts.base.buffer.TimeSpanFrame --> sgnts.base.buffer.TSFrame
                                sgnts.base.buffer.TimeSpanLike --> sgnts.base.buffer.TimeSpanFrame
                                sgnts.base.buffer.TimeLike --> sgnts.base.buffer.TimeSpanLike
                




              click sgnts.base.buffer.TSFrame href "" "sgnts.base.buffer.TSFrame"
              click sgnts.base.buffer.TimeSpanFrame href "" "sgnts.base.buffer.TimeSpanFrame"
              click sgnts.base.buffer.TimeSpanLike href "" "sgnts.base.buffer.TimeSpanLike"
              click sgnts.base.buffer.TimeLike href "" "sgnts.base.buffer.TimeLike"
            

An sgn Frame object that holds a list of buffers

TSFrame can be created with data (offset/noffset computed from buffers) or empty with explicit offset/noffset for incremental population.

Parameters:

Name Type Description Default
buffers list[SeriesBuffer]

list[SeriesBuffer], SeriesBuffers to hold

list()
offset int

int, explicit offset when creating empty frame

0
noffset int

int, explicit noffset (duration) when creating empty frame

0
Source code in sgnts/base/buffer.py
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
@dataclass(eq=False)
class TSFrame(TimeSpanFrame):
    """An sgn Frame object that holds a list of buffers

    TSFrame can be created with data (offset/noffset computed from buffers)
    or empty with explicit offset/noffset for incremental population.

    Args:
        buffers: list[SeriesBuffer], SeriesBuffers to hold
        offset: int, explicit offset when creating empty frame
        noffset: int, explicit noffset (duration) when creating empty frame
    """

    buffers: list[SeriesBuffer] = field(default_factory=list)
    offset: int = 0
    noffset: int = 0

    def __post_init__(self):
        super().__post_init__()

        # If buffers exist, compute offset/noffset from buffers
        if self.buffers:
            # Ensure user didn't try to manually set offset/noffset
            if self.offset != 0 or self.noffset != 0:
                raise ValueError(
                    "Cannot specify offset/noffset when providing buffers - "
                    "they are computed from buffers"
                )

            # Compute from buffers
            self.offset = self.buffers[0].offset
            self.noffset = self.buffers[-1].end_offset - self.offset

            # Validate and update buffer-dependent attributes
            self.validate_buffers()
            self.update_buffer_attrs()
            self.spec = self.buffers[0].spec
        else:
            # Empty frame - offset/noffset are used as-is
            # Set default attributes for empty frame
            self.is_gap = False
            self.spec = None

    def __getitem__(self, item):
        return self.buffers[item]

    def __iter__(self):
        return iter(self.buffers)

    def __repr__(self):
        out = (
            f"TSFrame(EOS={self.EOS}, is_gap={self.is_gap}, "
            f"metadata={self.metadata}, buffers=[\n"
        )
        for buf in self:
            out += f"    {buf},\n"
        out += "])"
        return out

    def __len__(self):
        return len(self.buffers)

    def fill(self) -> TSCollectFrame:
        """Create a TSCollectFrame for atomically populating this frame.

        Returns a TSCollectFrame that can be used to incrementally add buffers
        with validation. The buffers are only committed to this frame when
        close() is called (or automatically via context manager).

        Returns:
            TSCollectFrame: A collector for building this frame

        Usage:
            # Context manager (recommended - automatic close)
            frame = TSFrame(offset=0, noffset=1000)
            with frame.fill() as collector:
                collector.append(buf1)
                collector.append(buf2)
            # frame now has buffers

            # Manual (explicit control)
            frame = TSFrame(offset=0, noffset=1000)
            collector = frame.fill()
            collector.append(buf1)
            collector.close()  # commits to frame
        """
        return TSCollectFrame(parent_frame=self)

    def validate_span(self) -> None:
        """Validate that buffers fully span the offset/noffset range.

        Checks that:
        - First buffer starts at frame offset
        - Last buffer ends at frame offset+noffset (the frame's end_offset)
        - All buffers are contiguous
        """
        if self.buffers:
            frame_end_offset = self.offset + self.noffset

            assert self.buffers[0].offset == self.offset, (
                f"First buffer offset {self.buffers[0].offset} != "
                f"frame offset {self.offset}"
            )
            assert self.buffers[-1].end_offset == frame_end_offset, (
                f"Last buffer end_offset {self.buffers[-1].end_offset} != "
                f"frame end_offset {frame_end_offset}"
            )
            # validate_buffers checks contiguity
            self.validate_buffers()

    def validate_buffers(self) -> None:
        """Sanity check that the buffers don't overlap nor have discontinuities.

        Args:
            bufs:
                list[SeriesBuffer], the buffers to perform the sanity check on
        """
        # FIXME: is there a smart way using TSSlics?

        if len(self.buffers) > 1:
            slices = [buf.slice for buf in self.buffers]
            off0 = slices[0].stop
            for sl in slices[1:]:
                assert off0 == sl.start, (
                    f"Buffer offset {off0} must match slice start {sl.start} "
                    f"for contiguous buffers"
                )
                off0 = sl.stop

        # Check all backends are the same
        backends = {buf.backend for buf in self.buffers}
        assert (
            len(backends) == 1
        ), f"All buffers must have the same backend, got {backends}"

        # check that data specifications are all the same
        data_specs = {buf.spec for buf in self.buffers}
        assert (
            len(data_specs) == 1
        ), f"All buffers must have the same data specifications, got {data_specs}"

    def update_buffer_attrs(self):
        """Helper method for updating buffer dependent attributes.

        This is useful since buffers are mutable, and there are cases where we modify
        the buffer contents after the TSFrame has been created, e.g., when preparing a
        return frame in a "new" method.
        """
        self.is_gap = all([b.is_gap for b in self.buffers])

    def set_buffers(self, bufs: list[SeriesBuffer]) -> None:
        """Set the buffers attribute to the bufs provided.

        Args:
            bufs:
                list[SeriesBuffers], the list of buffers to set to
        """
        self.buffers = bufs
        self.validate_buffers()
        self.update_buffer_attrs()

    @property
    @ensure_nonempty
    def shape(self) -> tuple[int, ...]:
        """The shape of the TSFrame.

        Returns:
            tuple[int, ...], the shape of the TSFrame
        """
        return self.buffers[0].shape[:-1] + (sum(b.samples for b in self.buffers),)

    @property
    @ensure_nonempty
    def samples(self) -> int:
        """The number of samples in the Frame.

        Return:
            int, the number of samples
        """
        return sum(buf.samples for buf in self.buffers)

    @property
    @ensure_nonempty
    def sample_shape(self) -> tuple:
        """return the sample shape"""
        return self.buffers[0].sample_shape

    @property
    @ensure_nonempty
    def sample_rate(self) -> int:
        """The sample rate of the TSFrame.

        Returns:
            int, the sample rate
        """
        return self.buffers[0].sample_rate

    @classmethod
    def from_buffer_kwargs(cls, **kwargs):
        """A short hand for the following:

        >>> buf = SeriesBuffer(**kwargs)
        >>> frame = TSFrame(buffers=[buf])
        """
        return cls(buffers=[SeriesBuffer(**kwargs)])

    @property
    @ensure_nonempty
    def backend(self) -> type[ArrayBackend]:
        """The backend of the buffers.

        Returns:
            type[ArrayBackend], the backend of the buffers
        """
        return self.buffers[0].backend

    @ensure_nonempty
    def heartbeat(self, EOS=False):
        frame = TSFrame.from_buffer_kwargs(
            offset=self.offset,
            sample_rate=self.sample_rate,
            shape=self.sample_shape + (0,),
            data=None,
        )
        frame.EOS = EOS
        return frame

    def __next__(self):
        """
        return a new empty frame that is like the current one but advanced to
        the next offset, e.g.,

        >>> frame = TSFrame.from_buffer_kwargs(offset=0,
                        sample_rate=2048, shape=(2048,))
        >>> print (frame)

                SeriesBuffer(offset=0, offset_end=16384, shape=(2048,),
                             sample_rate=2048, duration=1000000000, data=None)
        >>> print (next(frame))
        """
        return self.from_buffer_kwargs(
            offset=self.end_offset, sample_rate=self.sample_rate, shape=self.shape
        )

    def __contains__(self, other):
        return other.slice in self.slice

    @ensure_nonempty
    def intersect(self, other):
        """
        Intersect self with another frame and return up to three
        frames, the frame before, the intersecting frame and the frame after.  For
        example, given two frames A and B:

        A:
                SeriesBuffer(offset=0, offset_end=4096, shape=(32,),
                             sample_rate=128, duration=250000000, data=None)
                SeriesBuffer(offset=4096, offset_end=20480, shape=(128,),
                             sample_rate=128, duration=1000000000, data=None)
        B:
                SeriesBuffer(offset=2048, offset_end=10240, shape=(64,),
                             sample_rate=128, duration=500000000, data=None)
                SeriesBuffer(offset=10240, offset_end=174080, shape=(1280,),
                             sample_rate=128, duration=10000000000, data=None)

        B.intersect(A):

                before Frame:
                SeriesBuffer(offset=0, offset_end=2048, shape=(16,),
                             sample_rate=128, duration=125000000, data=None)

                intersecting Frame:
                SeriesBuffer(offset=2048, offset_end=4096, shape=(16,),
                             sample_rate=128, duration=125000000, data=None)
                SeriesBuffer(offset=4096, offset_end=20480, shape=(128,),
                             sample_rate=128, duration=1000000000, data=None)

                after Frame: None

        A.intersect(B):

                before Frame: None

                intersecting Frame:
                SeriesBuffer(offset=2048, offset_end=10240, shape=(64,),
                             sample_rate=128, duration=500000000, data=None)
                SeriesBuffer(offset=10240, offset_end=20480, shape=(80,),
                             sample_rate=128, duration=625000000, data=None)

                after Frame:
                SeriesBuffer(offset=20480, offset_end=174080, shape=(1200,),
                             sample_rate=128, duration=9375000000, data=None)
        """
        bbuf = []
        inbuf = []
        abuf = []
        for buf in other.buffers:
            if buf.end_offset <= self.offset:
                bbuf.append(buf)
            elif buf.offset >= self.end_offset:
                abuf.append(buf)
            elif buf in self:
                inbuf.append(buf)
            else:
                outside_slices = TSSlices(self.slice - buf.slice).search(buf.slice)
                outside_bufs = buf.split(outside_slices)
                for obuf in outside_bufs:
                    assert (obuf.end_offset <= self.offset) or (
                        obuf.offset >= self.end_offset
                    ), (
                        f"Buffer overlap detected - output buffer "
                        f"[{obuf.offset}, {obuf.end_offset}] must not overlap "
                        f"with frame range [{self.offset}, {self.end_offset}]"
                    )
                    if obuf.end_offset <= self.offset:
                        bbuf.append(obuf)
                    else:
                        abuf.append(obuf)
                inbuf.extend(buf.split(TSSlices([self.slice & buf.slice])))
        return (
            None if not bbuf else TSFrame(buffers=bbuf),
            None if not inbuf else TSFrame(buffers=inbuf),
            None if not abuf else TSFrame(buffers=abuf),
        )

    @property
    @ensure_nonempty
    def tarr(self) -> Array:
        """An array of time stamps for each sample of the data in the buffer, in
        seconds.

        Returns:
            Array, the time array
        """
        return (
            self.backend.arange(self.samples) / self.sample_rate
            + self.t0 / Time.SECONDS
        )

    @ensure_nonempty
    def filleddata(self, zeros_func=None) -> Array:
        """Combined buffer data for the entire frame with zeros filled
        in for buffer gaps.

        Basically SeriesBuffer.filleddata() for the entire frame.

        Args:
            zeros_func:
                the function to produce a zeros array

        Returns:
            Array, the filled data

        """
        arrays = [buf.filleddata(zeros_func) for buf in self.buffers]
        return self.backend.cat(arrays, axis=-1)

    @ensure_nonempty
    def search(self, buf):
        out = []
        for b in self:
            intersects = b & buf
            if intersects is not None and intersects.isfinite():
                out.append(intersects)
        return out

    @ensure_nonempty
    def align(self, tsslices) -> "TSFrame":
        "Align buffers according to the TSSlices provided"
        assert (
            self.slice == tsslices.slice
        ), "The boundaries provided are not aligned with the frame boundaries"
        bufs = []
        for aligned_buf in [self[0].new(offslice) for offslice in tsslices]:
            searched_bufs = self.search(aligned_buf)
            # promote any gaps
            if any([b.is_gap for b in searched_bufs]):
                bufs.append(aligned_buf)
                continue
            # otherwise add the data from the found sub buffers
            for sb in searched_bufs:
                aligned_buf = aligned_buf + sb
            bufs.append(aligned_buf)
        return TSFrame(buffers=bufs)

backend property

The backend of the buffers.

Returns:

Type Description
type[ArrayBackend]

type[ArrayBackend], the backend of the buffers

sample_rate property

The sample rate of the TSFrame.

Returns:

Type Description
int

int, the sample rate

sample_shape property

return the sample shape

samples property

The number of samples in the Frame.

Return

int, the number of samples

shape property

The shape of the TSFrame.

Returns:

Type Description
tuple[int, ...]

tuple[int, ...], the shape of the TSFrame

tarr property

An array of time stamps for each sample of the data in the buffer, in seconds.

Returns:

Type Description
Array

Array, the time array

__next__()

return a new empty frame that is like the current one but advanced to the next offset, e.g.,

frame = TSFrame.from_buffer_kwargs(offset=0, sample_rate=2048, shape=(2048,)) print (frame)

    SeriesBuffer(offset=0, offset_end=16384, shape=(2048,),
                 sample_rate=2048, duration=1000000000, data=None)

print (next(frame))

Source code in sgnts/base/buffer.py
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
def __next__(self):
    """
    return a new empty frame that is like the current one but advanced to
    the next offset, e.g.,

    >>> frame = TSFrame.from_buffer_kwargs(offset=0,
                    sample_rate=2048, shape=(2048,))
    >>> print (frame)

            SeriesBuffer(offset=0, offset_end=16384, shape=(2048,),
                         sample_rate=2048, duration=1000000000, data=None)
    >>> print (next(frame))
    """
    return self.from_buffer_kwargs(
        offset=self.end_offset, sample_rate=self.sample_rate, shape=self.shape
    )

align(tsslices)

Align buffers according to the TSSlices provided

Source code in sgnts/base/buffer.py
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
@ensure_nonempty
def align(self, tsslices) -> "TSFrame":
    "Align buffers according to the TSSlices provided"
    assert (
        self.slice == tsslices.slice
    ), "The boundaries provided are not aligned with the frame boundaries"
    bufs = []
    for aligned_buf in [self[0].new(offslice) for offslice in tsslices]:
        searched_bufs = self.search(aligned_buf)
        # promote any gaps
        if any([b.is_gap for b in searched_bufs]):
            bufs.append(aligned_buf)
            continue
        # otherwise add the data from the found sub buffers
        for sb in searched_bufs:
            aligned_buf = aligned_buf + sb
        bufs.append(aligned_buf)
    return TSFrame(buffers=bufs)

fill()

Create a TSCollectFrame for atomically populating this frame.

Returns a TSCollectFrame that can be used to incrementally add buffers with validation. The buffers are only committed to this frame when close() is called (or automatically via context manager).

Returns:

Name Type Description
TSCollectFrame TSCollectFrame

A collector for building this frame

Usage

frame = TSFrame(offset=0, noffset=1000) with frame.fill() as collector: collector.append(buf1) collector.append(buf2)

frame now has buffers

Manual (explicit control)

frame = TSFrame(offset=0, noffset=1000) collector = frame.fill() collector.append(buf1) collector.close() # commits to frame

Source code in sgnts/base/buffer.py
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
def fill(self) -> TSCollectFrame:
    """Create a TSCollectFrame for atomically populating this frame.

    Returns a TSCollectFrame that can be used to incrementally add buffers
    with validation. The buffers are only committed to this frame when
    close() is called (or automatically via context manager).

    Returns:
        TSCollectFrame: A collector for building this frame

    Usage:
        # Context manager (recommended - automatic close)
        frame = TSFrame(offset=0, noffset=1000)
        with frame.fill() as collector:
            collector.append(buf1)
            collector.append(buf2)
        # frame now has buffers

        # Manual (explicit control)
        frame = TSFrame(offset=0, noffset=1000)
        collector = frame.fill()
        collector.append(buf1)
        collector.close()  # commits to frame
    """
    return TSCollectFrame(parent_frame=self)

filleddata(zeros_func=None)

Combined buffer data for the entire frame with zeros filled in for buffer gaps.

Basically SeriesBuffer.filleddata() for the entire frame.

Parameters:

Name Type Description Default
zeros_func

the function to produce a zeros array

None

Returns:

Type Description
Array

Array, the filled data

Source code in sgnts/base/buffer.py
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
@ensure_nonempty
def filleddata(self, zeros_func=None) -> Array:
    """Combined buffer data for the entire frame with zeros filled
    in for buffer gaps.

    Basically SeriesBuffer.filleddata() for the entire frame.

    Args:
        zeros_func:
            the function to produce a zeros array

    Returns:
        Array, the filled data

    """
    arrays = [buf.filleddata(zeros_func) for buf in self.buffers]
    return self.backend.cat(arrays, axis=-1)

from_buffer_kwargs(**kwargs) classmethod

A short hand for the following:

buf = SeriesBuffer(**kwargs) frame = TSFrame(buffers=[buf])

Source code in sgnts/base/buffer.py
1235
1236
1237
1238
1239
1240
1241
1242
@classmethod
def from_buffer_kwargs(cls, **kwargs):
    """A short hand for the following:

    >>> buf = SeriesBuffer(**kwargs)
    >>> frame = TSFrame(buffers=[buf])
    """
    return cls(buffers=[SeriesBuffer(**kwargs)])

intersect(other)

Intersect self with another frame and return up to three frames, the frame before, the intersecting frame and the frame after. For example, given two frames A and B:

A

SeriesBuffer(offset=0, offset_end=4096, shape=(32,), sample_rate=128, duration=250000000, data=None) SeriesBuffer(offset=4096, offset_end=20480, shape=(128,), sample_rate=128, duration=1000000000, data=None)

B: SeriesBuffer(offset=2048, offset_end=10240, shape=(64,), sample_rate=128, duration=500000000, data=None) SeriesBuffer(offset=10240, offset_end=174080, shape=(1280,), sample_rate=128, duration=10000000000, data=None)

B.intersect(A):

    before Frame:
    SeriesBuffer(offset=0, offset_end=2048, shape=(16,),
                 sample_rate=128, duration=125000000, data=None)

    intersecting Frame:
    SeriesBuffer(offset=2048, offset_end=4096, shape=(16,),
                 sample_rate=128, duration=125000000, data=None)
    SeriesBuffer(offset=4096, offset_end=20480, shape=(128,),
                 sample_rate=128, duration=1000000000, data=None)

    after Frame: None

A.intersect(B):

    before Frame: None

    intersecting Frame:
    SeriesBuffer(offset=2048, offset_end=10240, shape=(64,),
                 sample_rate=128, duration=500000000, data=None)
    SeriesBuffer(offset=10240, offset_end=20480, shape=(80,),
                 sample_rate=128, duration=625000000, data=None)

    after Frame:
    SeriesBuffer(offset=20480, offset_end=174080, shape=(1200,),
                 sample_rate=128, duration=9375000000, data=None)
Source code in sgnts/base/buffer.py
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
@ensure_nonempty
def intersect(self, other):
    """
    Intersect self with another frame and return up to three
    frames, the frame before, the intersecting frame and the frame after.  For
    example, given two frames A and B:

    A:
            SeriesBuffer(offset=0, offset_end=4096, shape=(32,),
                         sample_rate=128, duration=250000000, data=None)
            SeriesBuffer(offset=4096, offset_end=20480, shape=(128,),
                         sample_rate=128, duration=1000000000, data=None)
    B:
            SeriesBuffer(offset=2048, offset_end=10240, shape=(64,),
                         sample_rate=128, duration=500000000, data=None)
            SeriesBuffer(offset=10240, offset_end=174080, shape=(1280,),
                         sample_rate=128, duration=10000000000, data=None)

    B.intersect(A):

            before Frame:
            SeriesBuffer(offset=0, offset_end=2048, shape=(16,),
                         sample_rate=128, duration=125000000, data=None)

            intersecting Frame:
            SeriesBuffer(offset=2048, offset_end=4096, shape=(16,),
                         sample_rate=128, duration=125000000, data=None)
            SeriesBuffer(offset=4096, offset_end=20480, shape=(128,),
                         sample_rate=128, duration=1000000000, data=None)

            after Frame: None

    A.intersect(B):

            before Frame: None

            intersecting Frame:
            SeriesBuffer(offset=2048, offset_end=10240, shape=(64,),
                         sample_rate=128, duration=500000000, data=None)
            SeriesBuffer(offset=10240, offset_end=20480, shape=(80,),
                         sample_rate=128, duration=625000000, data=None)

            after Frame:
            SeriesBuffer(offset=20480, offset_end=174080, shape=(1200,),
                         sample_rate=128, duration=9375000000, data=None)
    """
    bbuf = []
    inbuf = []
    abuf = []
    for buf in other.buffers:
        if buf.end_offset <= self.offset:
            bbuf.append(buf)
        elif buf.offset >= self.end_offset:
            abuf.append(buf)
        elif buf in self:
            inbuf.append(buf)
        else:
            outside_slices = TSSlices(self.slice - buf.slice).search(buf.slice)
            outside_bufs = buf.split(outside_slices)
            for obuf in outside_bufs:
                assert (obuf.end_offset <= self.offset) or (
                    obuf.offset >= self.end_offset
                ), (
                    f"Buffer overlap detected - output buffer "
                    f"[{obuf.offset}, {obuf.end_offset}] must not overlap "
                    f"with frame range [{self.offset}, {self.end_offset}]"
                )
                if obuf.end_offset <= self.offset:
                    bbuf.append(obuf)
                else:
                    abuf.append(obuf)
            inbuf.extend(buf.split(TSSlices([self.slice & buf.slice])))
    return (
        None if not bbuf else TSFrame(buffers=bbuf),
        None if not inbuf else TSFrame(buffers=inbuf),
        None if not abuf else TSFrame(buffers=abuf),
    )

set_buffers(bufs)

Set the buffers attribute to the bufs provided.

Parameters:

Name Type Description Default
bufs list[SeriesBuffer]

list[SeriesBuffers], the list of buffers to set to

required
Source code in sgnts/base/buffer.py
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
def set_buffers(self, bufs: list[SeriesBuffer]) -> None:
    """Set the buffers attribute to the bufs provided.

    Args:
        bufs:
            list[SeriesBuffers], the list of buffers to set to
    """
    self.buffers = bufs
    self.validate_buffers()
    self.update_buffer_attrs()

update_buffer_attrs()

Helper method for updating buffer dependent attributes.

This is useful since buffers are mutable, and there are cases where we modify the buffer contents after the TSFrame has been created, e.g., when preparing a return frame in a "new" method.

Source code in sgnts/base/buffer.py
1179
1180
1181
1182
1183
1184
1185
1186
def update_buffer_attrs(self):
    """Helper method for updating buffer dependent attributes.

    This is useful since buffers are mutable, and there are cases where we modify
    the buffer contents after the TSFrame has been created, e.g., when preparing a
    return frame in a "new" method.
    """
    self.is_gap = all([b.is_gap for b in self.buffers])

validate_buffers()

Sanity check that the buffers don't overlap nor have discontinuities.

Parameters:

Name Type Description Default
bufs

list[SeriesBuffer], the buffers to perform the sanity check on

required
Source code in sgnts/base/buffer.py
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
def validate_buffers(self) -> None:
    """Sanity check that the buffers don't overlap nor have discontinuities.

    Args:
        bufs:
            list[SeriesBuffer], the buffers to perform the sanity check on
    """
    # FIXME: is there a smart way using TSSlics?

    if len(self.buffers) > 1:
        slices = [buf.slice for buf in self.buffers]
        off0 = slices[0].stop
        for sl in slices[1:]:
            assert off0 == sl.start, (
                f"Buffer offset {off0} must match slice start {sl.start} "
                f"for contiguous buffers"
            )
            off0 = sl.stop

    # Check all backends are the same
    backends = {buf.backend for buf in self.buffers}
    assert (
        len(backends) == 1
    ), f"All buffers must have the same backend, got {backends}"

    # check that data specifications are all the same
    data_specs = {buf.spec for buf in self.buffers}
    assert (
        len(data_specs) == 1
    ), f"All buffers must have the same data specifications, got {data_specs}"

validate_span()

Validate that buffers fully span the offset/noffset range.

Checks that: - First buffer starts at frame offset - Last buffer ends at frame offset+noffset (the frame's end_offset) - All buffers are contiguous

Source code in sgnts/base/buffer.py
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
def validate_span(self) -> None:
    """Validate that buffers fully span the offset/noffset range.

    Checks that:
    - First buffer starts at frame offset
    - Last buffer ends at frame offset+noffset (the frame's end_offset)
    - All buffers are contiguous
    """
    if self.buffers:
        frame_end_offset = self.offset + self.noffset

        assert self.buffers[0].offset == self.offset, (
            f"First buffer offset {self.buffers[0].offset} != "
            f"frame offset {self.offset}"
        )
        assert self.buffers[-1].end_offset == frame_end_offset, (
            f"Last buffer end_offset {self.buffers[-1].end_offset} != "
            f"frame end_offset {frame_end_offset}"
        )
        # validate_buffers checks contiguity
        self.validate_buffers()

TimeLike

Bases: Protocol


              flowchart TD
              sgnts.base.buffer.TimeLike[TimeLike]

              

              click sgnts.base.buffer.TimeLike href "" "sgnts.base.buffer.TimeLike"
            
Source code in sgnts/base/buffer.py
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
@runtime_checkable
class TimeLike(Protocol):
    offset: int

    @property
    def time(self) -> int:
        """The reference time, in integer nanoseconds.

        Returns:
            int, buffer time
        """
        return Offset.offset_ref_t0 + Offset.tons(self.offset)

    @property
    def t0(self) -> int:
        """The start (reference) time, in integer nanoseconds.

        Returns:
            int, buffer start time
        """
        return self.time

    @property
    def start(self) -> int:
        """The start (reference) time, in integer nanoseconds.

        Returns:
            int, buffer start time
        """
        return self.time

start property

The start (reference) time, in integer nanoseconds.

Returns:

Type Description
int

int, buffer start time

t0 property

The start (reference) time, in integer nanoseconds.

Returns:

Type Description
int

int, buffer start time

time property

The reference time, in integer nanoseconds.

Returns:

Type Description
int

int, buffer time

TimeSpanFrame

Bases: Frame, TimeSpanLike


              flowchart TD
              sgnts.base.buffer.TimeSpanFrame[TimeSpanFrame]
              sgnts.base.buffer.TimeSpanLike[TimeSpanLike]
              sgnts.base.buffer.TimeLike[TimeLike]

                              sgnts.base.buffer.TimeSpanLike --> sgnts.base.buffer.TimeSpanFrame
                                sgnts.base.buffer.TimeLike --> sgnts.base.buffer.TimeSpanLike
                



              click sgnts.base.buffer.TimeSpanFrame href "" "sgnts.base.buffer.TimeSpanFrame"
              click sgnts.base.buffer.TimeSpanLike href "" "sgnts.base.buffer.TimeSpanLike"
              click sgnts.base.buffer.TimeLike href "" "sgnts.base.buffer.TimeLike"
            

Base class for frames with time span semantics.

TimeSpanFrame combines Frame's data-carrying capabilities with TimeSpanLike's temporal semantics (start/end offsets).

All TimeSpanFrame subclasses must be iterable.

Source code in sgnts/base/buffer.py
203
204
205
206
207
208
209
210
211
212
213
214
215
class TimeSpanFrame(Frame, TimeSpanLike):
    """Base class for frames with time span semantics.

    TimeSpanFrame combines Frame's data-carrying capabilities with
    TimeSpanLike's temporal semantics (start/end offsets).

    All TimeSpanFrame subclasses must be iterable.
    """

    @abstractmethod
    def __iter__(self):
        """Iterate over the frame's data elements."""
        ...

__iter__() abstractmethod

Iterate over the frame's data elements.

Source code in sgnts/base/buffer.py
212
213
214
215
@abstractmethod
def __iter__(self):
    """Iterate over the frame's data elements."""
    ...

TimeSpanLike

Bases: TimeLike, Protocol


              flowchart TD
              sgnts.base.buffer.TimeSpanLike[TimeSpanLike]
              sgnts.base.buffer.TimeLike[TimeLike]

                              sgnts.base.buffer.TimeLike --> sgnts.base.buffer.TimeSpanLike
                


              click sgnts.base.buffer.TimeSpanLike href "" "sgnts.base.buffer.TimeSpanLike"
              click sgnts.base.buffer.TimeLike href "" "sgnts.base.buffer.TimeLike"
            
Source code in sgnts/base/buffer.py
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
@total_ordering
@runtime_checkable
class TimeSpanLike(TimeLike, Protocol):
    noffset: int

    def __eq__(self, other: object) -> bool:
        if not isinstance(other, TimeSpanLike):
            return NotImplemented
        return self.end_offset == other.end_offset

    def __lt__(self, other: TimeSpanLike) -> bool:
        return self.end_offset < other.end_offset

    @property
    def end_offset(self) -> int:
        """The end offset.

        Returns:
            int, end offset
        """
        return self.offset + self.noffset

    @property
    def slice(self) -> TSSlice:
        """The offset slice that the item spans.

        Returns:
            TSSlices, the offset slice
        """
        return TSSlice(self.offset, self.end_offset)

    @property
    def duration(self) -> int:
        """The duration of the buffer, in integer nanoseconds.

        Returns:
            int, the buffer duration
        """
        return Offset.tons(self.noffset)

    @property
    def end(self) -> int:
        """The end time of the buffer, in integer nanoseconds.

        Returns:
            int, buffer end time
        """
        return self.t0 + self.duration

duration property

The duration of the buffer, in integer nanoseconds.

Returns:

Type Description
int

int, the buffer duration

end property

The end time of the buffer, in integer nanoseconds.

Returns:

Type Description
int

int, buffer end time

end_offset property

The end offset.

Returns:

Type Description
int

int, end offset

slice property

The offset slice that the item spans.

Returns:

Type Description
TSSlice

TSSlices, the offset slice

ensure_nonempty(func)

Decorator to ensure TSFrame has buffers before accessing properties/methods.

Raises ValueError with a helpful message if the frame is empty.

Source code in sgnts/base/buffer.py
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
def ensure_nonempty(func):
    """Decorator to ensure TSFrame has buffers before accessing properties/methods.

    Raises ValueError with a helpful message if the frame is empty.
    """

    def wrapper(self, *args, **kwargs):
        if len(self.buffers) == 0:
            raise ValueError(
                f"TSFrame.{func.__name__} cannot be used when there are no buffers "
                f"in the frame. Use TSFrame.fill() to populate the frame."
            )
        return func(self, *args, **kwargs)

    return wrapper