mirror of
https://github.com/vale981/ray
synced 2025-03-12 22:26:39 -04:00

* Rename object_id -> ObjectID. * Rename ray_logger -> RayLogger. * rename task_id -> TaskID, actor_id -> ActorID, function_id -> FunctionID * Rename plasma_store_info -> PlasmaStoreInfo. * Rename plasma_store_state -> PlasmaStoreState. * Rename plasma_object -> PlasmaObject. * Rename object_request -> ObjectRequests. * Rename eviction_state -> EvictionState. * Bug fix. * rename db_handle -> DBHandle * Rename local_scheduler_state -> LocalSchedulerState. * rename db_client_id -> DBClientID * rename task -> Task * make redis.c C++ compatible * Rename scheduling_algorithm_state -> SchedulingAlgorithmState. * Rename plasma_connection -> PlasmaConnection. * Rename client_connection -> ClientConnection. * Fixes from rebase. * Rename local_scheduler_client -> LocalSchedulerClient. * Rename object_buffer -> ObjectBuffer. * Rename client -> Client. * Rename notification_queue -> NotificationQueue. * Rename object_get_requests -> ObjectGetRequests. * Rename get_request -> GetRequest. * Rename object_info -> ObjectInfo. * Rename scheduler_object_info -> SchedulerObjectInfo. * Rename local_scheduler -> LocalScheduler and some fixes. * Rename local_scheduler_info -> LocalSchedulerInfo. * Rename global_scheduler_state -> GlobalSchedulerState. * Rename global_scheduler_policy_state -> GlobalSchedulerPolicyState. * Rename object_size_entry -> ObjectSizeEntry. * Rename aux_address_entry -> AuxAddressEntry. * Rename various ID helper methods. * Rename Task helper methods. * Rename db_client_cache_entry -> DBClientCacheEntry. * Rename local_actor_info -> LocalActorInfo. * Rename actor_info -> ActorInfo. * Rename retry_info -> RetryInfo. * Rename actor_notification_table_subscribe_data -> ActorNotificationTableSubscribeData. * Rename local_scheduler_table_send_info_data -> LocalSchedulerTableSendInfoData. * Rename table_callback_data -> TableCallbackData. * Rename object_info_subscribe_data -> ObjectInfoSubscribeData. * Rename local_scheduler_table_subscribe_data -> LocalSchedulerTableSubscribeData. * Rename more redis call data structures. * Rename photon_conn PhotonConnection. * Rename photon_mock -> PhotonMock. * Fix formatting errors.
57 lines
1.8 KiB
C
57 lines
1.8 KiB
C
#ifndef LOGGING_H
|
|
#define LOGGING_H
|
|
|
|
#define RAY_VERBOSE -1
|
|
#define RAY_DEBUG 0
|
|
#define RAY_INFO 1
|
|
#define RAY_WARNING 2
|
|
#define RAY_ERROR 3
|
|
#define RAY_FATAL 4
|
|
|
|
/* Entity types. */
|
|
#define RAY_FUNCTION "FUNCTION"
|
|
#define RAY_OBJECT "OBJECT"
|
|
#define RAY_TASK "TASK"
|
|
|
|
#include "state/db.h"
|
|
|
|
typedef struct RayLoggerImpl RayLogger;
|
|
|
|
/* Initialize a Ray logger for the given client type and logging level. If the
|
|
* is_direct flag is set, the logger will treat the given connection as a
|
|
* direct connection to the log. Otherwise, it will treat it as a socket to
|
|
* another process with a connection to the log.
|
|
* NOTE: User is responsible for freeing the returned logger. */
|
|
RayLogger *RayLogger_init(const char *client_type,
|
|
int log_level,
|
|
int is_direct,
|
|
void *conn);
|
|
|
|
/* Free the logger. This does not free the connection to the log. */
|
|
void RayLogger_free(RayLogger *logger);
|
|
|
|
/* Log an event at the given log level with the given event_type.
|
|
* NOTE: message cannot contain spaces! JSON format is recommended.
|
|
* TODO: Support spaces in messages. */
|
|
void RayLogger_log(RayLogger *logger,
|
|
int log_level,
|
|
const char *event_type,
|
|
const char *message);
|
|
|
|
/**
|
|
* Log an event to the event log.
|
|
*
|
|
* @param db The database handle.
|
|
* @param key The key in Redis to store the event in.
|
|
* @param key_length The length of the key.
|
|
* @param value The value to log.
|
|
* @param value_length The length of the value.
|
|
* @return Void.
|
|
*/
|
|
void RayLogger_log_event(DBHandle *db,
|
|
uint8_t *key,
|
|
int64_t key_length,
|
|
uint8_t *value,
|
|
int64_t value_length);
|
|
|
|
#endif /* LOGGING_H */
|