mirror of
https://github.com/vale981/ray
synced 2025-03-13 14:46:38 -04:00
45 lines
962 B
C
45 lines
962 B
C
// A simple example on how to use the plasma store
|
|
//
|
|
// Can be called in the following way:
|
|
//
|
|
// cd build
|
|
// ./plasma_store -s /tmp/plasma_socket
|
|
// ./example -s /tmp/plasma_socket -g
|
|
// ./example -s /tmp/plasma_socket -c -f
|
|
|
|
#include <stdlib.h>
|
|
#include <getopt.h>
|
|
#include <unistd.h>
|
|
#include <assert.h>
|
|
|
|
#include "plasma.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
int conn = -1;
|
|
int c;
|
|
plasma_id id = {{255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
|
255, 255, 255, 255, 255, 255, 255, 255}};
|
|
while ((c = getopt(argc, argv, "s:cfg")) != -1) {
|
|
switch (c) {
|
|
case 's':
|
|
conn = plasma_store_connect(optarg);
|
|
break;
|
|
case 'c':
|
|
assert(conn != -1);
|
|
plasma_create(conn, id, 100);
|
|
break;
|
|
case 'f':
|
|
assert(conn != -1);
|
|
plasma_seal(conn, id);
|
|
break;
|
|
case 'g':
|
|
plasma_get(conn, id);
|
|
break;
|
|
default:
|
|
abort();
|
|
}
|
|
}
|
|
assert(conn != -1);
|
|
close(conn);
|
|
}
|
|
|