// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MEDIA_CAST_LOGGING_LOGGING_RAW_H_
#define MEDIA_CAST_LOGGING_LOGGING_RAW_H_
#include <vector>
#include "base/basictypes.h"
#include "base/memory/linked_ptr.h"
#include "base/threading/non_thread_safe.h"
#include "base/time/tick_clock.h"
#include "media/cast/logging/logging_defines.h"
#include "media/cast/logging/raw_event_subscriber.h"
namespace media {
namespace cast {
// This class is not thread safe, and should only be called from the main
// thread.
class LoggingRaw : public base::NonThreadSafe {
public:
LoggingRaw();
~LoggingRaw();
// Inform of new event: three types of events: frame, packets and generic.
// Frame events can be inserted with different parameters.
void InsertFrameEvent(const base::TimeTicks& time_of_event,
CastLoggingEvent event, uint32 rtp_timestamp,
uint32 frame_id);
// Size - Inserting the size implies that this is an encoded frame.
// This function is only applicable for the following frame events:
// kAudioFrameEncoded, kVideoFrameEncoded
void InsertFrameEventWithSize(const base::TimeTicks& time_of_event,
CastLoggingEvent event, uint32 rtp_timestamp,
uint32 frame_id, int size);
// Render/playout delay
// This function is only applicable for the following frame events:
// kAudioPlayoutDelay, kVideoRenderDelay
void InsertFrameEventWithDelay(const base::TimeTicks& time_of_event,
CastLoggingEvent event, uint32 rtp_timestamp,
uint32 frame_id, base::TimeDelta delay);
// Insert a packet event.
void InsertPacketEvent(const base::TimeTicks& time_of_event,
CastLoggingEvent event, uint32 rtp_timestamp,
uint32 frame_id, uint16 packet_id,
uint16 max_packet_id, size_t size);
// Insert a generic event. The interpretation of |value| depends on
// type of |event|.
void InsertGenericEvent(const base::TimeTicks& time_of_event,
CastLoggingEvent event, int value);
// Adds |subscriber| so that it will start receiving events on main thread.
// Note that this class does not own |subscriber|.
// It is a no-op to add a subscriber that already exists.
void AddSubscriber(RawEventSubscriber* subscriber);
// Removes |subscriber| so that it will stop receiving events.
// Note that this class does NOT own the subscribers. This function MUST be
// called before |subscriber| is destroyed if it was previously added.
// It is a no-op to remove a subscriber that doesn't exist.
void RemoveSubscriber(RawEventSubscriber* subscriber);
private:
void InsertBaseFrameEvent(const base::TimeTicks& time_of_event,
CastLoggingEvent event, uint32 frame_id,
uint32 rtp_timestamp, base::TimeDelta delay,
int size);
// List of subscriber pointers. This class does not own the subscribers.
std::vector<RawEventSubscriber*> subscribers_;
DISALLOW_COPY_AND_ASSIGN(LoggingRaw);
};
} // namespace cast
} // namespace media
#endif // MEDIA_CAST_LOGGING_LOGGING_RAW_H_