using Observatory.Framework.Files;
namespace Observatory.Framework;
///
/// Interface passed by Observatory Core to plugins. Primarily used for sending notifications and UI updates back to Core.
///
public interface IObservatoryCore
{
///
/// Send a notification out to all native notifiers and any plugins implementing IObservatoryNotifier.
///
/// Title text for notification.
/// Detail/body text for notificaiton.
/// Guid associated with the notification during its lifetime. Used as an argument with CancelNotification and UpdateNotification.
public Guid SendNotification(string title, string detail);
///
/// Send a notification with arguments out to all native notifiers and any plugins implementing IObservatoryNotifier.
///
/// NotificationArgs object specifying notification content and behaviour.
/// Guid associated with the notification during its lifetime. Used as an argument with CancelNotification and UpdateNotification.
public Guid SendNotification(NotificationArgs notificationEventArgs);
///
/// Cancel or close an active notification.
///
/// Guid of notification to be cancelled.
public void CancelNotification(Guid notificationId);
///
/// Update an active notification with a new set of NotificationsArgs. Timeout values are reset and begin counting again from zero if specified.
///
/// Guid of notification to be updated.
/// NotificationArgs object specifying updated notification content and behaviour.
public void UpdateNotification(Guid notificationId, NotificationArgs notificationEventArgs);
///
/// Requests current Elite Dangerous status.json content.
///
/// Status object reflecting current Elite Dangerous player status.
public Status GetStatus();
///
/// Version string of Observatory Core.
///
public string Version { get; }
///
/// Returns a delegate for logging an error for the calling plugin. A plugin can wrap this method
/// or pass it along to its collaborators.
///
/// The calling plugin
public Action GetPluginErrorLogger(IObservatoryPlugin plugin);
///
/// Shared application HttpClient object. Provided so that plugins can adhere to .NET recommended behaviour of a single HttpClient object per application.
///
public HttpClient HttpClient { get; }
///
/// Returns the current LogMonitor state.
///
public LogMonitorState CurrentLogMonitorState { get; }
///
/// Returns true if the current LogMonitor state represents a batch-read mode.
///
public bool IsLogMonitorBatchReading { get; }
///
/// Retrieves and ensures creation of a location which can be used by the plugin to store persistent data.
///
public string PluginStorageFolder { get; }
///
/// Sends arbitrary data to all other plugins. The full name and version of the sending plugin will be used to identify the sender to any recipients.
///
/// Utf8 data to be sent. Must be serializable to JSON.
public void SendPluginMessage(IObservatoryPlugin plugin, ReadOnlySpan message);
}