#ifndef PLASMA_H #define PLASMA_H #include #include #include #include #include #ifdef NDEBUG #define LOG_DEBUG(M, ...) #else #define LOG_DEBUG(M, ...) \ fprintf(stderr, "[DEBUG] (%s:%d) " M "\n", __FILE__, __LINE__, ##__VA_ARGS__) #endif #ifdef PLASMA_LOGGIN_ON #define LOG_INFO(M, ...) \ fprintf(stderr, "[INFO] (%s:%d) " M "\n", __FILE__, __LINE__, ##__VA_ARGS__) #else #define LOG_INFO(M, ...) #endif #define LOG_ERR(M, ...) \ fprintf(stderr, "[ERROR] (%s:%d: errno: %s) " M "\n", __FILE__, __LINE__, \ errno == 0 ? "None" : strerror(errno), ##__VA_ARGS__) #define PLASMA_CHECK(CONDITION, M, ...) \ do { \ if (!(CONDITION)) { \ fprintf(stderr, "[FATAL] (%s:%d " #CONDITION ") \n" M, __FILE__, \ __LINE__); \ exit(-1); \ } \ } while (0) typedef struct { int64_t size; int64_t create_time; int64_t construct_duration; } plasma_object_info; /* Represents an object id hash, can hold a full SHA1 hash */ typedef struct { unsigned char id[20]; } plasma_id; enum plasma_request_type { /* Create a new object. */ PLASMA_CREATE, /* Get an object. */ PLASMA_GET, /* seal an object */ PLASMA_SEAL, /* request transfer to another store */ PLASMA_TRANSFER, /* Header for sending data */ PLASMA_DATA, }; typedef struct { int type; plasma_id object_id; int64_t size; uint8_t addr[4]; int port; } plasma_request; typedef struct { ptrdiff_t offset; int64_t map_size; int64_t object_size; } plasma_reply; typedef struct { plasma_id object_id; void *data; int64_t size; int writable; } plasma_buffer; /* Connect to the local plasma store UNIX domain socket */ int plasma_store_connect(const char *socket_name); /* Connect to a possibly remote plasma manager */ int plasma_manager_connect(const char *addr, int port); void plasma_create(int store, plasma_id object_id, int64_t size, void **data); void plasma_get(int store, plasma_id object_id, int64_t *size, void **data); void plasma_seal(int store, plasma_id object_id); void plasma_send(int conn, plasma_request *req); #endif