ucx1-sys 0.1.0

Rust FFI bindings to UCX.
Documentation
/**
 * Copyright (C) Mellanox Technologies Ltd. 2020.  ALL RIGHTS RESERVED.
 *
 * See file LICENSE for terms.
 */

#ifndef UCS_VFS_H_
#define UCS_VFS_H_

#include <ucs/datastruct/string_buffer.h>
#include <ucs/sys/compiler_def.h>
#include <stdint.h>

BEGIN_C_DECLS

/* This header file defines API for manipulating VFS object tree structure */


/**
 * Structure to describe the vfs node.
 */
typedef struct {
    /**
     * Size of the content in case of read-only file, and number of child
     * directories if node is directory.
     */
    size_t size;
    /**
     * File mode can be either regular file (S_IFREG) or directory (S_IFDIR)
     * depending of the type of the vfs node.
     */
    int    mode;
} ucs_vfs_path_info_t;


/**
 * Function type to fill information about an object to the string buffer.
 *
 * @param [in]    obj      Pointer to the object.
 * @param [inout] strb     String buffer filled with the object's information.
 * @param [in]    arg_ptr  Optional pointer argument passed to the function.
 * @param [in]    arg_u64  Optional numeric argument passed to the function.
 */
typedef void (*ucs_vfs_file_read_cb_t)(void *obj, ucs_string_buffer_t *strb,
                                       void *arg_ptr, uint64_t arg_u64);


/**
 * Function type to update object property with data from the buffer.
 *
 * @param [in] obj     Pointer to the object.
 * @param [in] buffer  String buffer filled with the object's information.
 * @param [in] size    The size of buffer.
 * @param [in] arg_ptr Optional pointer argument passed to the function.
 * @param [in] arg_u64 Optional numeric argument passed to the function.
 *
 * @return UCS_OK or an error if cannot update the object property.
 */
typedef ucs_status_t (*ucs_vfs_file_write_cb_t)(void *obj, const char *buffer,
                                                size_t size, void *arg_ptr,
                                                uint64_t arg_u64);


/**
 * Function to update representation of object in VFS.
 *
 * @param [in] obj Pointer to the object to be updated.
 */
typedef void (*ucs_vfs_refresh_cb_t)(void *obj);


/**
 * Function to process VFS nodes during reading of the parent directory.
 *
 * @param [in] name Path to directory.
 * @param [in] arg  Pointer to the arguments.
 */
typedef void (*ucs_vfs_list_dir_cb_t)(const char *name, void *arg);


/**
 * Add directory representing object in VFS. If @a parent_obj is NULL, the mount
 * directory will be used as the base for @a rel_path. If directory with
 * specified name already exists, the pointer value will be added to directory
 * name.
 *
 * @param [in] parent_obj Pointer to the parent object. @a rel_path is relative
 *                        to @a parent_obj directory.
 * @param [in] obj        Pointer to the object to be represented in VFS.
 * @param [in] rel_path   Format string which specifies relative path
 *                        @a obj directory.
 *
 * @return UCS_ERR_ALREADY_EXISTS if directory with specified name already
 *                                exists for given @a obj.
 *         UCS_ERR_INVALID_PARAM  if node for @a parent_obj does not exist.
 *         UCS_ERR_NO_MEMORY      if cannot create a new node for directory.
 *         UCS_OK                 otherwise.
 */
ucs_status_t ucs_vfs_obj_add_dir(void *parent_obj, void *obj,
                                 const char *rel_path, ...) UCS_F_PRINTF(3, 4);


/**
 * Add read-only file describing object features in VFS. If @a obj is NULL, the
 * mount directory will be used as the base for @a rel_path.
 *
 * @param [in] obj      Pointer to the object. @a rel_path is relative to @a obj
 *                      directory.
 * @param [in] read_cb  Callback method that reads the content of the file.
 * @param [in] arg_ptr  Optional pointer argument that is passed to the callback
 *                      method.
 * @param [in] arg_u64  Optional numeric argument that is passed to the callback
 *                      method.
 * @param [in] rel_path Format string which specifies relative path to the file.
 *
 * @return UCS_ERR_ALREADY_EXISTS if file with specified name already exists.
 *         UCS_ERR_INVALID_PARAM  if node for @a obj does not exist.
 *         UCS_ERR_NO_MEMORY      if cannot create a new node for read-only
 *                                file.
 *         UCS_OK                 otherwise.
 */
ucs_status_t ucs_vfs_obj_add_ro_file(void *obj, ucs_vfs_file_read_cb_t read_cb,
                                     void *arg_ptr, uint64_t arg_u64,
                                     const char *rel_path, ...)
        UCS_F_PRINTF(5, 6);


/**
 * Add read-write file describing an object feature in VFS. If @a obj is NULL,
 * the mount directory will be used as the base for @a rel_path.
 *
 * @param [in] obj      Pointer to the object. @a rel_path is relative to @a obj
 *                      directory.
 * @param [in] read_cb  Callback method that reads the content of the file.
 * @param [in] write_cb Callback method that writes the content to the file.
 * @param [in] arg_ptr  Optional pointer argument that is passed to the callback
 *                      methods.
 * @param [in] arg_u64  Optional numeric argument that is passed to the callback
 *                      methods.
 * @param [in] rel_path Format string which specifies relative path to the file.
 *
 * @return UCS_ERR_ALREADY_EXISTS if file with specified name already exists.
 *         UCS_ERR_INVALID_PARAM  if node for @a obj does not exist.
 *         UCS_ERR_NO_MEMORY      if cannot create a new node for read-only
 *                                file.
 *         UCS_OK                 otherwise.
 */
ucs_status_t
ucs_vfs_obj_add_rw_file(void *obj, ucs_vfs_file_read_cb_t read_cb,
                        ucs_vfs_file_write_cb_t write_cb, void *arg_ptr,
                        uint64_t arg_u64, const char *rel_path, ...)
        UCS_F_PRINTF(6, 7);


/**
 * Add symbolic link to directory representing @a target_obj. If @a obj is NULL,
 * the mount directory will be used as the base for @a rel_path.
 *
 * @param [in] obj        Pointer to the object. @a rel_path is relative to
 *                        @a obj directory.
 * @param [in] target_obj Pointer to object to be linked.
 * @param [in] rel_path   Format string which specifies relative path to the
 *                        symbolic link.
 *
 * @return UCS_ERR_ALREADY_EXISTS if file with specified name already exists.
 *         UCS_ERR_INVALID_PARAM  if node for @a obj or for @a target_obj does
 *                                not exist.
 *         UCS_ERR_NO_MEMORY      if cannot create a new node for symbolic link.
 *         UCS_OK                 otherwise.
 */
ucs_status_t
ucs_vfs_obj_add_sym_link(void *obj, void *target_obj, const char *rel_path, ...)
        UCS_F_PRINTF(3, 4);


/**
 * Recursively remove directories and files associated with the object and its
 * children from VFS. The method removes all empty parent sub-directories.
 *
 * @param [in] obj Pointer to the object to be deleted with its children from
 *                 VFS.
 */
void ucs_vfs_obj_remove(void *obj);


/**
 * Invalidate VFS node and set method to update the node.
 *
 * @param [in] obj        Pointer to the object to be invalidate.
 * @param [in] refresh_cb Method to update the node associated with the object.
 */
void ucs_vfs_obj_set_dirty(void *obj, ucs_vfs_refresh_cb_t refresh_cb);


/**
 * Fill information about VFS node corresponding to the specified path.
 *
 * @param [in]  path       String which specifies path to find the node in VFS.
 * @param [out] info       VFS object information.
 *
 * @return UCS_OK          VFS node corresponding to specified path exists.
 *         UCS_ERR_NO_ELEM Otherwise.
 *
 * @note The content of the file defined by ucs_vfs_file_show_cb_t of the node.
 *       The method initiates refresh of the node defined by
 *       ucs_vfs_refresh_cb_t of the node.
 */
ucs_status_t ucs_vfs_path_get_info(const char *path, ucs_vfs_path_info_t *info);


/**
 * Read the content of VFS node corresponding to the specified path. The content
 * of the file defined by ucs_vfs_file_show_cb_t of the node.
 *
 * @param [in]    path     String which specifies path to find the node in VFS.
 * @param [inout] strb     String buffer to be filled by the content of the
 *                         file.
 *
 * @return UCS_OK          VFS node corresponding to specified path exists and
 *                         the node is a file.
 * @return UCS_ERR_NO_ELEM Otherwise.
 */
ucs_status_t
ucs_vfs_path_read_file(const char *path, ucs_string_buffer_t *strb);


/**
 * Write the content to VFS node corresponding to the specified path.
 *
 * @param [in] path String which specifies path to find the node in VFS.
 * @param [in] buf  String buffer filled with the content of the file.
 * @param [in] size The size of the buffer.
 *
 * @return UCS_ERR_NO_ELEM       if node with specified path does not exists or
 *                               the node is not a RW file.
 *         UCS_ERR_INVALID_PARAM if cannot write content of the buffer to the
 *                               file.
 *         UCS_OK                otherwise.
 */
ucs_status_t
ucs_vfs_path_write_file(const char *path, const char *buffer, size_t size);


/**
 * Invoke callback @a dir_cb for children of VFS node corresponding to the
 * specified path.
 *
 * @param [in] path        String which specifies path to find the node in VFS.
 * @param [in] dir_cb      Callback method to be invoked for each child of the
 *                         VFS node.
 * @param [in] arg         Arguments to be passed to the callback method.
 *
 * @return UCS_OK          VFS node corresponding to specified path exists and
 *                         the node is a directory.
 *         UCS_ERR_NO_ELEM Otherwise.
 *
 * @note The method initiates refresh of the node defined by
 *       ucs_vfs_refresh_cb_t of the node.
 */
ucs_status_t ucs_vfs_path_list_dir(const char *path,
                                   ucs_vfs_list_dir_cb_t dir_cb, void *arg);


/**
 * Fill the string buffer @a strb with the target of a symbolic link.
 *
 * @param [in]    path     String which specifies path to the symbolic link node
 *                         in VFS.
 * @param [inout] strb     String buffer to be filled with relative path to the
 *                         target.
 *
 * @return UCS_OK          VFS node corresponding to specified path exists and
 *                         the node is a symbolic link.
 *         UCS_ERR_NO_ELEM Otherwise.
 */
ucs_status_t ucs_vfs_path_get_link(const char *path, ucs_string_buffer_t *strb);

END_C_DECLS

#endif