X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fpaths.h;h=e905094d566d9a25b702bef3445c1ab6c64958fa;hp=2f52e8245bea81efa040fefc8bb0803ecf907163;hb=ccacb83a030da564c59c8e0f081fe967fba5a3eb;hpb=b3d241164a7e34eed56159f4e0a8a2821b7ebf4d diff --git a/discover/paths.h b/discover/paths.h index 2f52e82..e905094 100644 --- a/discover/paths.h +++ b/discover/paths.h @@ -16,12 +16,30 @@ char *join_paths(void *alloc_ctx, const char *a, const char *b); */ const char *mount_base(void); -typedef void (*load_url_callback)(void *data, int status); + +struct load_url_result { + enum { + LOAD_OK, /* load complete. other members should only be + accessed if status == LOAD_OK */ + + LOAD_ERROR, /* only signalled to async loaders + * (sync will see a NULL result) */ + + LOAD_ASYNC, /* async load still in progress */ + } status; + const char *local; + bool cleanup_local; +}; + +/* callback type for asynchronous loads. The callback implementation is + * responsible for freeing result. + */ +typedef void (*load_url_complete)(struct load_url_result *result, void *data); /* Load a (potentially remote) file, and return a guaranteed-local name */ -char *load_url_async(void *ctx, struct pb_url *url, unsigned int *tempfile, - load_url_callback url_cb); +struct load_url_result *load_url_async(void *ctx, struct pb_url *url, + load_url_complete complete, void *data); -char *load_url(void *ctx, struct pb_url *url, unsigned int *tempfile); +struct load_url_result *load_url(void *ctx, struct pb_url *url); #endif /* PATHS_H */