You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.8 KiB
47 lines
1.8 KiB
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "debuglog.h"
|
|
#include "deque.h"
|
|
#include "module.h"
|
|
#include "runtime.h"
|
|
|
|
struct sandbox_request {
|
|
struct module * module;
|
|
char * arguments;
|
|
int socket_descriptor;
|
|
struct sockaddr *socket_address;
|
|
uint64_t request_arrival_timestamp; /* cycles */
|
|
uint64_t absolute_deadline; /* cycles */
|
|
};
|
|
|
|
DEQUE_PROTOTYPE(sandbox, struct sandbox_request *);
|
|
|
|
/**
|
|
* Allocates a new Sandbox Request and places it on the Global Deque
|
|
* @param module the module we want to request
|
|
* @param arguments the arguments that we'll pass to the serverless function
|
|
* @param socket_descriptor
|
|
* @param socket_address
|
|
* @param request_arrival_timestamp the timestamp of when we receives the request from the network (in cycles)
|
|
* @return the new sandbox request
|
|
*/
|
|
static inline struct sandbox_request *
|
|
sandbox_request_allocate(struct module *module, char *arguments, int socket_descriptor,
|
|
const struct sockaddr *socket_address, uint64_t request_arrival_timestamp)
|
|
{
|
|
struct sandbox_request *sandbox_request = (struct sandbox_request *)malloc(sizeof(struct sandbox_request));
|
|
assert(sandbox_request);
|
|
sandbox_request->module = module;
|
|
sandbox_request->arguments = arguments;
|
|
sandbox_request->socket_descriptor = socket_descriptor;
|
|
sandbox_request->socket_address = (struct sockaddr *)socket_address;
|
|
sandbox_request->request_arrival_timestamp = request_arrival_timestamp;
|
|
sandbox_request->absolute_deadline = request_arrival_timestamp + module->relative_deadline;
|
|
|
|
debuglog("Allocating %lu of %s:%d\n", sandbox_request->request_arrival_timestamp, sandbox_request->module->name,
|
|
sandbox_request->module->port);
|
|
return sandbox_request;
|
|
}
|