/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of HDF5. The full HDF5 copyright notice, including * * terms governing use, modification, and redistribution, is contained in * * the files COPYING and Copyright.html. COPYING can be found at the root * * of the source code distribution tree; Copyright.html can be found at the * * root level of an installed copy of the electronic HDF5 document set and * * is linked from the top-level documents page. It can also be found at * * http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have * * access to either file, you may request a copy from help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #include "H5VLiod_server.h" #include "H5RCpublic.h" #include "H5TRpublic.h" #ifdef H5_HAVE_EFF /* * Programmer: Mohamad Chaarawi * July, 2013 * * Purpose: The IOD plugin server side transaction and read context routines. */ /*------------------------------------------------------------------------- * Function: H5VL_iod_server_rcxt_acquire_cb * * Purpose: Acquire a read context of a container using a version number. * * Return: Success: SUCCEED * Failure: Negative * * Programmer: Mohamad Chaarawi * September, 2013 * *------------------------------------------------------------------------- */ void H5VL_iod_server_rcxt_acquire_cb(AXE_engine_t UNUSED axe_engine, size_t UNUSED num_n_parents, AXE_task_t UNUSED n_parents[], size_t UNUSED num_s_parents, AXE_task_t UNUSED s_parents[], void *_op_data) { op_data_t *op_data = (op_data_t *)_op_data; rc_acquire_in_t *input = (rc_acquire_in_t *)op_data->input; rc_acquire_out_t output; iod_handle_t coh = input->coh; /* the container handle */ iod_trans_id_t c_version = input->c_version; iod_trans_id_t acquired_version; hid_t rcapl_id; H5RC_request_t acquire_req; herr_t ret_value = SUCCEED; FUNC_ENTER_NOAPI_NOINIT if(H5P_DEFAULT == input->rcapl_id) input->rcapl_id = H5Pcopy(H5P_RC_ACQUIRE_DEFAULT); rcapl_id = input->rcapl_id; if(H5Pget_rcapl_version_request(rcapl_id, &acquire_req) < 0) HGOTO_ERROR(H5E_PLIST, H5E_CANTSET,FAIL, "can't get acquire request property"); switch(acquire_req) { case H5RC_EXACT: #if H5VL_IOD_DEBUG fprintf(stderr, "Exact Acquire Read Context %llu\n", input->c_version); #endif if(iod_trans_start(coh, &c_version, NULL, 0, IOD_TRANS_RD, NULL) < 0) HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "can't acquire read context"); acquired_version = c_version; break; case H5RC_LAST: #if H5VL_IOD_DEBUG fprintf(stderr, "Acquire LAST Read Context\n"); #endif c_version = IOD_TID_UNKNOWN; if(iod_trans_start(coh, &c_version, NULL, 0, IOD_TRANS_RD, NULL) < 0) HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "can't acquire read context"); acquired_version = c_version; break; case H5RC_NEXT: { iod_container_tids_t tids; uint64_t u; #if H5VL_IOD_DEBUG fprintf(stderr, "Next Acquire Read Context %llu\n", input->c_version); #endif if(iod_container_query_tids(coh, &tids, NULL) < 0) HGOTO_ERROR(H5E_SYM, H5E_CANTGET, FAIL, "can't get container tids status"); acquired_version = IOD_TID_UNKNOWN; for(u=c_version; uc_version); #endif if(iod_container_query_tids(coh, &tids, NULL) < 0) HGOTO_ERROR(H5E_SYM, H5E_CANTGET, FAIL, "can't get container tids status"); if(c_version >= tids.latest_rdable) { acquired_version = tids.latest_rdable; if(iod_trans_start(coh, &acquired_version, NULL, 0, IOD_TRANS_RD, NULL) < 0) HGOTO_ERROR(H5E_SYM, H5E_CANTGET, FAIL, "can't acquire read context"); break; } acquired_version = IOD_TID_UNKNOWN; u=c_version; for(u=c_version; u>=0; u--) { if(iod_trans_start(coh, &u, NULL, 0, IOD_TRANS_RD, NULL) < 0) continue; acquired_version = u; break; } if(IOD_TID_UNKNOWN == acquired_version) { HGOTO_ERROR(H5E_SYM, H5E_CANTGET, FAIL, "can't get a read version before %llu\n", c_version); } break; } default: HGOTO_ERROR(H5E_PLIST, H5E_CANTSET, FAIL, "invalid acquire request"); } output.c_version = acquired_version; output.ret = ret_value; #if H5VL_IOD_DEBUG fprintf(stderr, "Done with Acquire Read Context. Acquired %llu\n", output.c_version); #endif HG_Handler_start_output(op_data->hg_handle, &output); done: /* return an UNDEFINED oh to the client if the operation failed */ if(ret_value < 0) { fprintf(stderr, "Failed to Acquire Read context\n"); output.ret = FAIL; HG_Handler_start_output(op_data->hg_handle, &output); } input = (rc_acquire_in_t *)H5MM_xfree(input); op_data = (op_data_t *)H5MM_xfree(op_data); FUNC_LEAVE_NOAPI_VOID } /* end H5VL_iod_server_rcxt_acquire_cb() */ /*------------------------------------------------------------------------- * Function: H5VL_iod_server_rcxt_release_cb * * Purpose: Release a read context of a container using a version number. * * Return: Success: SUCCEED * Failure: Negative * * Programmer: Mohamad Chaarawi * September, 2013 * *------------------------------------------------------------------------- */ void H5VL_iod_server_rcxt_release_cb(AXE_engine_t UNUSED axe_engine, size_t UNUSED num_n_parents, AXE_task_t UNUSED n_parents[], size_t UNUSED num_s_parents, AXE_task_t UNUSED s_parents[], void *_op_data) { op_data_t *op_data = (op_data_t *)_op_data; rc_release_in_t *input = (rc_release_in_t *)op_data->input; iod_handle_t coh = input->coh; /* the container handle */ herr_t ret_value = SUCCEED; FUNC_ENTER_NOAPI_NOINIT #if H5VL_IOD_DEBUG fprintf(stderr, "Release Read Context %llu\n", input->c_version); #endif if(iod_trans_finish(coh, input->c_version, NULL, 0, NULL) < 0) HGOTO_ERROR(H5E_SYM, H5E_CANTSET, FAIL, "can't release Read Context %llu", input->c_version); done: if(HG_SUCCESS != HG_Handler_start_output(op_data->hg_handle, &ret_value)) fprintf(stderr, "Failed to Release Read context\n"); input = (rc_release_in_t *)H5MM_xfree(input); op_data = (op_data_t *)H5MM_xfree(op_data); FUNC_LEAVE_NOAPI_VOID } /* end H5VL_iod_server_rcxt_release_cb() */ /*------------------------------------------------------------------------- * Function: H5VL_iod_server_rcxt_persist_cb * * Purpose: Persist a read context of a container using a version number. * * Return: Success: SUCCEED * Failure: Negative * * Programmer: Mohamad Chaarawi * September, 2013 * *------------------------------------------------------------------------- */ void H5VL_iod_server_rcxt_persist_cb(AXE_engine_t UNUSED axe_engine, size_t UNUSED num_n_parents, AXE_task_t UNUSED n_parents[], size_t UNUSED num_s_parents, AXE_task_t UNUSED s_parents[], void *_op_data) { op_data_t *op_data = (op_data_t *)_op_data; rc_persist_in_t *input = (rc_persist_in_t *)op_data->input; iod_handle_t coh = input->coh; /* the container handle */ herr_t ret_value = SUCCEED; FUNC_ENTER_NOAPI_NOINIT #if H5VL_IOD_DEBUG fprintf(stderr, "Persist Read Context %llu\n", input->c_version); #endif if(iod_trans_persist(coh, input->c_version, NULL, NULL) < 0) HGOTO_ERROR(H5E_SYM, H5E_CANTSET, FAIL, "can't persist Read Context %llu", input->c_version); done: if(HG_SUCCESS != HG_Handler_start_output(op_data->hg_handle, &ret_value)) fprintf(stderr, "Failed to Persist Read context\n"); input = (rc_persist_in_t *)H5MM_xfree(input); op_data = (op_data_t *)H5MM_xfree(op_data); FUNC_LEAVE_NOAPI_VOID } /* end H5VL_iod_server_rcxt_persist_cb() */ /*------------------------------------------------------------------------- * Function: H5VL_iod_server_rcxt_snapshot_cb * * Purpose: Snapshot a read context of a container using a version number. * * Return: Success: SUCCEED * Failure: Negative * * Programmer: Mohamad Chaarawi * September, 2013 * *------------------------------------------------------------------------- */ void H5VL_iod_server_rcxt_snapshot_cb(AXE_engine_t UNUSED axe_engine, size_t UNUSED num_n_parents, AXE_task_t UNUSED n_parents[], size_t UNUSED num_s_parents, AXE_task_t UNUSED s_parents[], void *_op_data) { op_data_t *op_data = (op_data_t *)_op_data; rc_snapshot_in_t *input = (rc_snapshot_in_t *)op_data->input; iod_handle_t coh = input->coh; /* the container handle */ herr_t ret_value = SUCCEED; FUNC_ENTER_NOAPI_NOINIT #if H5VL_IOD_DEBUG fprintf(stderr, "Snapshot %s with Read Context %llu\n", input->snapshot_name, input->c_version); #endif /* MSC - can only snapshot latest version */ if(iod_container_snapshot(coh, input->snapshot_name, NULL, NULL) < 0) HGOTO_ERROR(H5E_SYM, H5E_CANTSET, FAIL, "can't snapshot Read Context %llu", input->c_version); done: if(HG_SUCCESS != HG_Handler_start_output(op_data->hg_handle, &ret_value)) fprintf(stderr, "Failed to Snapshot Read context\n"); input = (rc_snapshot_in_t *)H5MM_xfree(input); op_data = (op_data_t *)H5MM_xfree(op_data); FUNC_LEAVE_NOAPI_VOID } /* end H5VL_iod_server_rcxt_snapshot_cb() */ /*------------------------------------------------------------------------- * Function: H5VL_iod_server_trans_start_cb * * Purpose: Start a transaction on a container. * * Return: Success: SUCCEED * Failure: Negative * * Programmer: Mohamad Chaarawi * September, 2013 * *------------------------------------------------------------------------- */ void H5VL_iod_server_trans_start_cb(AXE_engine_t UNUSED axe_engine, size_t UNUSED num_n_parents, AXE_task_t UNUSED n_parents[], size_t UNUSED num_s_parents, AXE_task_t UNUSED s_parents[], void *_op_data) { op_data_t *op_data = (op_data_t *)_op_data; tr_start_in_t *input = (tr_start_in_t *)op_data->input; iod_handle_t coh = input->coh; /* the container handle */ hid_t trspl_id; iod_trans_id_t trans_num = input->trans_num; unsigned num_peers; /* the number of peers starting this transaction */ herr_t ret_value = SUCCEED; FUNC_ENTER_NOAPI_NOINIT #if H5VL_IOD_DEBUG fprintf(stderr, "Transaction Start %llu\n", input->trans_num); #endif if(H5P_DEFAULT == input->trspl_id) input->trspl_id = H5Pcopy(H5P_TR_START_DEFAULT); trspl_id = input->trspl_id; if(H5Pget_trspl_num_peers(trspl_id, &num_peers) < 0) HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't get acquire request property"); if(iod_trans_start(coh, &trans_num, NULL, num_peers, IOD_TRANS_WR, NULL) < 0) HGOTO_ERROR(H5E_SYM, H5E_CANTSET, FAIL, "can't start transaction"); #if H5VL_IOD_DEBUG fprintf(stderr, "Done with Transaction Start\n"); #endif done: if(HG_SUCCESS != HG_Handler_start_output(op_data->hg_handle, &ret_value)) fprintf(stderr, "Failed to Start Transaction\n"); input = (tr_start_in_t *)H5MM_xfree(input); op_data = (op_data_t *)H5MM_xfree(op_data); FUNC_LEAVE_NOAPI_VOID } /* end H5VL_iod_server_trans_start_cb() */ /*------------------------------------------------------------------------- * Function: H5VL_iod_server_trans_finish_cb * * Purpose: Finish a transaction on a container. * * Return: Success: SUCCEED * Failure: Negative * * Programmer: Mohamad Chaarawi * September, 2013 * *------------------------------------------------------------------------- */ void H5VL_iod_server_trans_finish_cb(AXE_engine_t UNUSED axe_engine, size_t UNUSED num_n_parents, AXE_task_t UNUSED n_parents[], size_t UNUSED num_s_parents, AXE_task_t UNUSED s_parents[], void *_op_data) { op_data_t *op_data = (op_data_t *)_op_data; tr_finish_in_t *input = (tr_finish_in_t *)op_data->input; iod_handle_t coh = input->coh; /* the container handle */ hid_t trfpl_id; iod_trans_id_t trans_num = input->trans_num; hbool_t acquire = input->acquire; herr_t ret_value = SUCCEED; FUNC_ENTER_NOAPI_NOINIT #if H5VL_IOD_DEBUG fprintf(stderr, "Transaction Finish %llu\n", input->trans_num); #endif /* Finish the transaction */ if(iod_trans_finish(coh, trans_num, NULL, 0, NULL) < 0) HGOTO_ERROR(H5E_SYM, H5E_CANTSET, FAIL, "can't finish transaction"); /* if the flag is true, acquire a read context on the finished transaction */ if(TRUE == acquire) { fprintf(stderr, "Transaction Acquire after Finish %llu\n", trans_num); if(iod_trans_start(coh, &trans_num, NULL, 0, IOD_TRANS_RD, NULL) < 0) HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "can't acquire read context"); } #if H5VL_IOD_DEBUG fprintf(stderr, "Done with Transaction Finish\n"); #endif done: if(HG_SUCCESS != HG_Handler_start_output(op_data->hg_handle, &ret_value)) fprintf(stderr, "Failed to Finish Transaction\n"); input = (tr_finish_in_t *)H5MM_xfree(input); op_data = (op_data_t *)H5MM_xfree(op_data); FUNC_LEAVE_NOAPI_VOID } /* end H5VL_iod_server_trans_finish_cb() */ /*------------------------------------------------------------------------- * Function: H5VL_iod_server_trans_set_dependency_cb * * Purpose: Set Dependency between 2 transactions on a container. * * Return: Success: SUCCEED * Failure: Negative * * Programmer: Mohamad Chaarawi * September, 2013 * *------------------------------------------------------------------------- */ void H5VL_iod_server_trans_set_dependency_cb(AXE_engine_t UNUSED axe_engine, size_t UNUSED num_n_parents, AXE_task_t UNUSED n_parents[], size_t UNUSED num_s_parents, AXE_task_t UNUSED s_parents[], void *_op_data) { op_data_t *op_data = (op_data_t *)_op_data; tr_set_depend_in_t *input = (tr_set_depend_in_t *)op_data->input; iod_handle_t coh = input->coh; /* the container handle */ herr_t ret_value = SUCCEED; FUNC_ENTER_NOAPI_NOINIT #if H5VL_IOD_DEBUG fprintf(stderr, "Transaction Set_Dependency %llu on %llu\n", input->child_trans_num, input->parent_trans_num); #endif fprintf(stderr, "Can't do Set_Dependency with Current IOD\n"); #if H5VL_IOD_DEBUG fprintf(stderr, "Done with Transaction Set_Dependency\n"); #endif done: if(HG_SUCCESS != HG_Handler_start_output(op_data->hg_handle, &ret_value)) fprintf(stderr, "Failed to Set_Dependency between Transactions\n"); input = (tr_set_depend_in_t *)H5MM_xfree(input); op_data = (op_data_t *)H5MM_xfree(op_data); FUNC_LEAVE_NOAPI_VOID } /* end H5VL_iod_server_trans_set_dependency_cb() */ /*------------------------------------------------------------------------- * Function: H5VL_iod_server_trans_skip_cb * * Purpose: Skip a number of transactions on a container. * * Return: Success: SUCCEED * Failure: Negative * * Programmer: Mohamad Chaarawi * September, 2013 * *------------------------------------------------------------------------- */ void H5VL_iod_server_trans_skip_cb(AXE_engine_t UNUSED axe_engine, size_t UNUSED num_n_parents, AXE_task_t UNUSED n_parents[], size_t UNUSED num_s_parents, AXE_task_t UNUSED s_parents[], void *_op_data) { op_data_t *op_data = (op_data_t *)_op_data; tr_skip_in_t *input = (tr_skip_in_t *)op_data->input; iod_handle_t coh = input->coh; /* the container handle */ iod_trans_id_t start_trans_num = input->start_trans_num; uint64_t count = input->count; herr_t ret_value = SUCCEED; FUNC_ENTER_NOAPI_NOINIT #if H5VL_IOD_DEBUG fprintf(stderr, "Transaction Skip %llu starting at %llu\n", count, start_trans_num); #endif fprintf(stderr, "NO IOD Transaction Skip at the moment\n"); #if H5VL_IOD_DEBUG fprintf(stderr, "Done with Transaction Skip\n"); #endif done: if(HG_SUCCESS != HG_Handler_start_output(op_data->hg_handle, &ret_value)) fprintf(stderr, "Failed to Skip Transaction\n"); input = (tr_skip_in_t *)H5MM_xfree(input); op_data = (op_data_t *)H5MM_xfree(op_data); FUNC_LEAVE_NOAPI_VOID } /* end H5VL_iod_server_trans_skip_cb() */ /*------------------------------------------------------------------------- * Function: H5VL_iod_server_trans_abort_cb * * Purpose: Abort a transaction on a container. * * Return: Success: SUCCEED * Failure: Negative * * Programmer: Mohamad Chaarawi * September, 2013 * *------------------------------------------------------------------------- */ void H5VL_iod_server_trans_abort_cb(AXE_engine_t UNUSED axe_engine, size_t UNUSED num_n_parents, AXE_task_t UNUSED n_parents[], size_t UNUSED num_s_parents, AXE_task_t UNUSED s_parents[], void *_op_data) { op_data_t *op_data = (op_data_t *)_op_data; tr_abort_in_t *input = (tr_abort_in_t *)op_data->input; iod_handle_t coh = input->coh; /* the container handle */ iod_trans_id_t trans_num = input->trans_num; herr_t ret_value = SUCCEED; FUNC_ENTER_NOAPI_NOINIT #if H5VL_IOD_DEBUG fprintf(stderr, "Transaction Abort %llu\n", input->trans_num); #endif if(iod_trans_finish(coh, trans_num, NULL, IOD_TRANS_ABORT_SINGLE, NULL) < 0) HGOTO_ERROR(H5E_SYM, H5E_CANTSET, FAIL, "can't abort transaction"); #if H5VL_IOD_DEBUG fprintf(stderr, "Done with Transaction Abort\n"); #endif done: if(HG_SUCCESS != HG_Handler_start_output(op_data->hg_handle, &ret_value)) fprintf(stderr, "Failed to Abort Transaction\n"); input = (tr_abort_in_t *)H5MM_xfree(input); op_data = (op_data_t *)H5MM_xfree(op_data); FUNC_LEAVE_NOAPI_VOID } /* end H5VL_iod_server_trans_abort_cb() */ #endif /* H5_HAVE_EFF */