Matter SDK Coverage Report
Current view: top level - app - EventReporter.h (source / functions) Coverage Total Hit
Test: SHA:eef3dff3495fc72e1a63ed53e147d1a295978be2 Lines: 100.0 % 1 1
Test Date: 2025-08-14 07:13:02 Functions: 50.0 % 2 1

            Line data    Source code
       1              : /*
       2              :  *
       3              :  *    Copyright (c) 2024 Project CHIP Authors
       4              :  *    All rights reserved.
       5              :  *
       6              :  *    Licensed under the Apache License, Version 2.0 (the "License");
       7              :  *    you may not use this file except in compliance with the License.
       8              :  *    You may obtain a copy of the License at
       9              :  *
      10              :  *        http://www.apache.org/licenses/LICENSE-2.0
      11              :  *
      12              :  *    Unless required by applicable law or agreed to in writing, software
      13              :  *    distributed under the License is distributed on an "AS IS" BASIS,
      14              :  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      15              :  *    See the License for the specific language governing permissions and
      16              :  *    limitations under the License.
      17              :  */
      18              : 
      19              : #pragma once
      20              : 
      21              : #include <app/ConcreteEventPath.h>
      22              : #include <lib/core/CHIPError.h>
      23              : #include <lib/core/Optional.h>
      24              : 
      25              : namespace chip {
      26              : namespace app {
      27              : 
      28              : /**
      29              :  *   Interface that EventManagement can use to notify when events are generated and may need reporting.
      30              :  *
      31              :  */
      32              : class EventReporter
      33              : {
      34              : public:
      35           81 :     virtual ~EventReporter() = default;
      36              : 
      37              :     /**
      38              :      *  Notify that an event was generated.
      39              :      *
      40              :      * @param[in] aPath           The path that identifies the kind of event that was generated.
      41              :      * @param[in] aBytesConsumed  The number of bytes needed to store the event in EventManagement.
      42              :      */
      43              :     virtual CHIP_ERROR NewEventGenerated(ConcreteEventPath & aPath, uint32_t aBytesConsumed) = 0;
      44              : 
      45              :     /**
      46              :      * Schedule event delivery to happen immediately and run reporting to get
      47              :      * those reports into messages and on the wire.  This can be done either for
      48              :      * a specific fabric, identified by the provided FabricIndex, or across all
      49              :      * fabrics if no FabricIndex is provided.
      50              :      */
      51              :     virtual void ScheduleUrgentEventDeliverySync(Optional<FabricIndex> fabricIndex = NullOptional) = 0;
      52              : };
      53              : 
      54              : } // namespace app
      55              : } // namespace chip
        

Generated by: LCOV version 2.0-1