1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046
|
/*
* Copyright (C) by Argonne National Laboratory
* See COPYRIGHT in top-level directory
*/
/* contains general definitions, declarations, and macros internal to
the ADIO implementation, though independent of the underlying file
system. This file is included in adio.h */
/* Functions and datataypes that are "internal" to the ADIO implementation
prefixed ADIOI_. Functions and datatypes that are part of the
"externally visible" (documented) ADIO interface are prefixed ADIO_.
An implementation of MPI-IO, or any other high-level interface, should
not need to use any of the ADIOI_ functions/datatypes.
Only someone implementing ADIO on a new file system, or modifying
an existing ADIO implementation, would need to use the ADIOI_
functions/datatypes. */
#ifndef ADIOI_H_INCLUDED
#define ADIOI_H_INCLUDED
/* used to keep track of hint/info values.
* Note that there are a lot of int-sized values in here...they are
* used as int-sized entities other places as well. This would be a
* problem on 32-bit systems using > 2GB files in some cases...
*/
struct ADIOI_Hints_struct {
int initialized;
int striping_factor;
int striping_unit;
int cb_read;
int cb_write;
int cb_nodes;
int cb_buffer_size;
int cb_pfr;
int cb_fr_type;
int cb_fr_alignment;
int cb_ds_threshold;
int cb_alltoall;
int ds_read;
int ds_write;
int no_indep_rw;
int ind_rd_buffer_size;
int ind_wr_buffer_size;
int deferred_open;
int start_iodevice;
int min_fdomain_size;
char *cb_config_list;
int *ranklist;
union {
struct {
int chunk_size;
int obj_class;
} daos;
struct {
int listio_read;
int listio_write;
} pvfs;
struct {
int debugmask;
int posix_read;
int posix_write;
int listio_read;
int listio_write;
int dtype_read;
int dtype_write;
} pvfs2;
struct {
int co_ratio;
int coll_threshold;
int ds_in_coll;
int lock_ahead_read;
int lock_ahead_write;
int lock_ahead_num_extents;
int lock_ahead_flags;
ADIO_Offset lock_ahead_start_extent;
ADIO_Offset lock_ahead_end_extent;
} lustre;
struct {
unsigned read_chunk_sz; /* chunk size for direct reads */
unsigned write_chunk_sz; /* chunk size for direct writes */
} xfs;
struct {
int *bridgelist; /* list of all bride ranks */
int *bridgelistnum; /* each entry here is the number of aggregators
* associated with the bridge rank of the same
* index in bridgelist */
int numbridges; /* total number of bridges */
} bg;
} fs_hints;
};
typedef struct ADIOI_Datarep {
char *name;
void *state;
MPI_Datarep_extent_function *extent_fn;
MPI_Datarep_conversion_function *read_conv_fn;
MPI_Datarep_conversion_function *write_conv_fn;
struct ADIOI_Datarep *next; /* pointer to next datarep */
} ADIOI_Datarep;
/* Values for use with cb_read, cb_write, ds_read, and ds_write
* and some fs-specific hints
(IBM xlc, Compaq Tru64 compilers object to a comma after the last item)
(that's just wrong)
*/
enum {
ADIOI_HINT_AUTO = 0,
ADIOI_HINT_ENABLE = 1,
ADIOI_HINT_DISABLE = 2
};
/* flattened datatypes. Each datatype is stored as a node of a
globally accessible linked list. Once attribute caching on a
datatype is available (in MPI-2), that should be used instead. */
#define ADIOI_TYPE_DECREASE 0x00000001 /* if not monotonic nondecreasing */
#define ADIOI_TYPE_OVERLAP 0x00000002 /* if contains overlapping regions */
#define ADIOI_TYPE_NEGATIVE 0x00000004 /* if one of displacements is negative */
typedef struct ADIOI_Fl_node {
MPI_Datatype type;
MPI_Count count; /* no. of contiguous blocks */
ADIO_Offset *blocklens; /* array of contiguous block lengths (bytes) */
ADIO_Offset *indices; /* array of byte offsets of each block */
/* the type processing code in ROMIO loops through the flattened
* representation to tile file views. so, we cannot simply indicate a
* lower bound and upper bound with entries here -- those are instead
* indicated by offset-length pairs with zero length. In order to deal
* with repeatedly resetting the LB and UB though (as in resized of
* resized, or struct of resized, perhaps?), indicate where in the
* tuple-stream the lb and ub parts are kept
* (-1 indicates "not explicitly set") */
ADIO_Offset lb_idx;
ADIO_Offset ub_idx;
int refct; /* when storing flattened representation on a
* type, attribute copy and delete routines
* will manage refct */
int flag; /* ADIOI_TYPE_XXX */
} ADIOI_Flatlist_node;
#ifdef ROMIO_PVFS2
#include <pvfs2.h>
#endif
#ifdef ROMIO_QUOBYTEFS
#include "quobyte.h"
#endif
#ifdef ROMIO_DAOS
#include <daos_types.h>
#endif
typedef struct ADIOI_AIO_req_str {
/* very weird: if this MPI_Request is a pointer, some C++ compilers
* will clobber it when the MPICH C++ bindings are used */
MPI_Request req;
MPI_Offset nbytes;
/* should probably make this a union */
#ifdef ROMIO_HAVE_WORKING_AIO
struct aiocb *aiocbp;
#endif
#ifdef ROMIO_QUOBYTEFS
struct quobyte_io_event *qaiocbp;
#endif
#ifdef ROMIO_PVFS2
PVFS_sys_op_id op_id;
PVFS_sysresp_io resp_io;
PVFS_Request file_req;
PVFS_Request mem_req;
#endif
#ifdef ROMIO_DAOS
daos_event_t daos_event;
#endif
} ADIOI_AIO_Request;
struct ADIOI_Fns_struct {
void (*ADIOI_xxx_Open) (ADIO_File fd, int *error_code);
void (*ADIOI_xxx_OpenColl) (ADIO_File fd, int rank, int access_mode, int *error_code);
void (*ADIOI_xxx_ReadContig) (ADIO_File fd, void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Status * status, int *error_code);
void (*ADIOI_xxx_WriteContig) (ADIO_File fd, const void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Status * status, int *error_code);
void (*ADIOI_xxx_ReadStridedColl) (ADIO_File fd, void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Status * status, int *error_code);
void (*ADIOI_xxx_WriteStridedColl) (ADIO_File fd, const void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Status * status, int *error_code);
ADIO_Offset(*ADIOI_xxx_SeekIndividual) (ADIO_File fd, ADIO_Offset offset,
int whence, int *error_code);
void (*ADIOI_xxx_Fcntl) (ADIO_File fd, int flag, ADIO_Fcntl_t * fcntl_struct, int *error_code);
void (*ADIOI_xxx_SetInfo) (ADIO_File fd, MPI_Info users_info, int *error_code);
void (*ADIOI_xxx_ReadStrided) (ADIO_File fd, void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Status * status, int *error_code);
void (*ADIOI_xxx_WriteStrided) (ADIO_File fd, const void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Status * status, int *error_code);
void (*ADIOI_xxx_Close) (ADIO_File fd, int *error_code);
void (*ADIOI_xxx_IreadContig) (ADIO_File fd, void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Request * request, int *error_code);
void (*ADIOI_xxx_IwriteContig) (ADIO_File fd, const void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Request * request, int *error_code);
int (*ADIOI_xxx_ReadDone) (ADIO_Request * request, ADIO_Status * status, int *error_code);
int (*ADIOI_xxx_WriteDone) (ADIO_Request * request, ADIO_Status * status, int *error_code);
void (*ADIOI_xxx_ReadComplete) (ADIO_Request * request, ADIO_Status * status, int *error_code);
void (*ADIOI_xxx_WriteComplete) (ADIO_Request * request, ADIO_Status * status, int *error_code);
void (*ADIOI_xxx_IreadStrided) (ADIO_File fd, void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Request * request, int *error_code);
void (*ADIOI_xxx_IwriteStrided) (ADIO_File fd, const void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Request * request, int *error_code);
void (*ADIOI_xxx_Flush) (ADIO_File fd, int *error_code);
void (*ADIOI_xxx_Resize) (ADIO_File fd, ADIO_Offset size, int *error_code);
void (*ADIOI_xxx_Delete) (const char *filename, int *error_code);
int (*ADIOI_xxx_Feature) (ADIO_File fd, int flag);
const char *fsname;
void (*ADIOI_xxx_IreadStridedColl) (ADIO_File fd, void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Request * request,
int *error_code);
void (*ADIOI_xxx_IwriteStridedColl) (ADIO_File fd, const void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Request * request,
int *error_code);
int (*ADIOI_xxx_SetLock) (ADIO_File fd, int cmd, int type, ADIO_Offset offset, int whence,
ADIO_Offset len);
};
/* optypes for ADIO_RequestD */
#define ADIOI_READ 26
#define ADIOI_WRITE 27
#define ADIOI_PREALLOC_BUFSZ 16777216 /* buffer size used to
* preallocate disk space */
/* default values for some hints */
/* buffer size for collective I/O = 16 MB */
#define ADIOI_CB_BUFFER_SIZE_DFLT "16777216"
/* buffer size for data sieving in independent reads = 4MB */
#define ADIOI_IND_RD_BUFFER_SIZE_DFLT "4194304"
/* buffer size for data sieving in independent writes = 512KB. default is
* smaller than for reads, because write requires read-modify-write
* with file locking. If buffer size is large there is more contention
* for locks. */
#define ADIOI_IND_WR_BUFFER_SIZE_DFLT "524288"
/* use one process per processor name by default */
#define ADIOI_CB_CONFIG_LIST_DFLT "*:1"
/* some of the ADIO functions are macro-replaced */
#define ADIOI_OpenColl(fd, rank, access_mode, error_code) \
(*(fd->fns->ADIOI_xxx_OpenColl))(fd, rank, access_mode, error_code)
#define ADIO_ReadContig(fd,buf,count,datatype,file_ptr_type,offset,status,error_code) \
(*(fd->fns->ADIOI_xxx_ReadContig))(fd,buf,count,datatype,file_ptr_type,offset,status,error_code)
#define ADIO_WriteContig(fd,buf,count,datatype,file_ptr_type,offset,status,error_code) \
(*(fd->fns->ADIOI_xxx_WriteContig))(fd,buf,count,datatype,file_ptr_type,offset,status,error_code)
#define ADIO_SeekIndividual(fd,offset,whence,error_code) \
(*(fd->fns->ADIOI_xxx_SeekIndividual))(fd,offset,whence,error_code)
#define ADIO_Fcntl(fd,flag,fcntl_struct,error_code) \
(*(fd->fns->ADIOI_xxx_Fcntl))(fd,flag,fcntl_struct,error_code)
#define ADIO_IreadContig(fd,buf,count,datatype,file_ptr_type,offset,request,error_code) \
(*(fd->fns->ADIOI_xxx_IreadContig))(fd,buf,count,datatype,file_ptr_type,offset,request,error_code)
#define ADIO_IwriteContig(fd,buf,count,datatype,file_ptr_type,offset,request,error_code) \
(*(fd->fns->ADIOI_xxx_IwriteContig))(fd,buf,count,datatype,file_ptr_type,offset,request,error_code)
/* in these routines a pointer to request is passed */
#define ADIO_ReadDone(request,status,error_code) \
(*((*(request))->fd->fns->ADIOI_xxx_ReadDone))(request,status,error_code)
#define ADIO_WriteDone(request,status,error_code) \
(*((*(request))->fd->fns->ADIOI_xxx_WriteDone))(request,status,error_code)
#define ADIO_ReadIcomplete(request,status,error_code) \
(*((*(request))->fd->fns->ADIOI_xxx_ReadIcomplete))(request,status,error_code)
#define ADIO_WriteIcomplete(request,status,error_code) \
(*((*(request))->fd->fns->ADIOI_xxx_WriteIcomplete))(request,status,error_code)
#define ADIO_ReadComplete(request,status,error_code) \
(*((*(request))->fd->fns->ADIOI_xxx_ReadComplete))(request,status,error_code)
#define ADIO_WriteComplete(request,status,error_code) \
(*((*(request))->fd->fns->ADIOI_xxx_WriteComplete))(request,status,error_code)
#define ADIO_ReadStrided(fd,buf,count,datatype,file_ptr_type,offset,status,error_code) \
(*(fd->fns->ADIOI_xxx_ReadStrided))(fd,buf,count,datatype,file_ptr_type,offset,status,error_code)
#define ADIO_WriteStrided(fd,buf,count,datatype,file_ptr_type,offset,status,error_code) \
(*(fd->fns->ADIOI_xxx_WriteStrided))(fd,buf,count,datatype,file_ptr_type,offset,status,error_code)
#define ADIO_ReadStridedColl(fd,buf,count,datatype,file_ptr_type,offset,status,error_code) \
(*(fd->fns->ADIOI_xxx_ReadStridedColl))(fd,buf,count,datatype,file_ptr_type,offset,status,error_code)
#define ADIO_WriteStridedColl(fd,buf,count,datatype,file_ptr_type,offset,status,error_code) \
(*(fd->fns->ADIOI_xxx_WriteStridedColl))(fd,buf,count,datatype,file_ptr_type,offset,status,error_code)
#define ADIO_IreadStrided(fd,buf,count,datatype,file_ptr_type,offset,request,error_code) \
(*(fd->fns->ADIOI_xxx_IreadStrided))(fd,buf,count,datatype,file_ptr_type,offset,request,error_code)
#define ADIO_IwriteStrided(fd,buf,count,datatype,file_ptr_type,offset,request,error_code) \
(*(fd->fns->ADIOI_xxx_IwriteStrided))(fd,buf,count,datatype,file_ptr_type,offset,request,error_code)
#define ADIO_IreadStridedColl(fd,buf,count,datatype,file_ptr_type,offset,request,error_code) \
(*(fd->fns->ADIOI_xxx_IreadStridedColl))(fd,buf,count,datatype,file_ptr_type,offset,request,error_code)
#define ADIO_IwriteStridedColl(fd,buf,count,datatype,file_ptr_type,offset,request,error_code) \
(*(fd->fns->ADIOI_xxx_IwriteStridedColl))(fd,buf,count,datatype,file_ptr_type,offset,request,error_code)
#define ADIO_Flush(fd,error_code) (*(fd->fns->ADIOI_xxx_Flush))(fd,error_code)
#define ADIO_Resize(fd,size,error_code) \
(*(fd->fns->ADIOI_xxx_Resize))(fd,size,error_code)
#define ADIO_Delete(filename,error_code) \
(*(fd->fns->ADIOI_xxx_Delete))(filename,error_code)
#define ADIO_SetInfo(fd, users_info, error_code) \
(*(fd->fns->ADIOI_xxx_SetInfo))(fd, users_info, error_code)
#define ADIO_Feature(fd, flag) \
(*(fd->fns->ADIOI_xxx_Feature))(fd, flag)
/* structure for storing access info of this process's request
from the file domain of other processes, and vice-versa. used
as array of structures indexed by process number. */
typedef struct {
ADIO_Offset *offsets; /* array of offsets */
ADIO_Offset *lens; /* array of lengths */
MPI_Aint *mem_ptrs; /* array of pointers. used in the read/write
* phase to indicate where the data
* is stored in memory */
int count; /* size of above arrays */
} ADIOI_Access;
/* structure for storing generic offset/length pairs. used to describe
file realms among other things */
typedef struct {
ADIO_Offset *offsets; /* array of offsets */
ADIO_Offset *lens; /* array of lengths */
int count; /* size of above arrays */
} ADIOI_Offlen;
/* prototypes for ADIO internal functions */
void ADIOI_SetFunctions(ADIO_File fd);
ADIOI_Flatlist_node *ADIOI_Flatten_datatype(MPI_Datatype type);
void ADIOI_Flatten(MPI_Datatype type, ADIOI_Flatlist_node * flat,
ADIO_Offset st_offset, MPI_Count * curr_index);
/* callbakcs for attribute-style flattened tracking */
int ADIOI_Flattened_type_copy(MPI_Datatype oldtype,
int type_keyval, void *extra_state, void *attribute_val_in,
void *attribute_val_out, int *flag);
int ADIOI_Flattened_type_delete(MPI_Datatype datatype,
int type_keyval, void *attribute_val, void *extra_state);
ADIOI_Flatlist_node *ADIOI_Flatten_and_find(MPI_Datatype);
MPI_Count ADIOI_Count_contiguous_blocks(MPI_Datatype type, MPI_Count * curr_index);
void ADIOI_Complete_async(int *error_code);
void *ADIOI_Malloc_fn(size_t size, int lineno, const char *fname);
void *ADIOI_Calloc_fn(size_t nelem, size_t elsize, int lineno, const char *fname);
void *ADIOI_Realloc_fn(void *ptr, size_t size, int lineno, const char *fname);
void ADIOI_Free_fn(void *ptr, int lineno, const char *fname);
void ADIOI_Datatype_iscontig(MPI_Datatype datatype, int *flag);
void ADIOI_Get_position(ADIO_File fd, ADIO_Offset * offset);
void ADIOI_Get_eof_offset(ADIO_File fd, ADIO_Offset * eof_offset);
void ADIOI_Get_byte_offset(ADIO_File fd, ADIO_Offset offset, ADIO_Offset * disp);
void ADIOI_process_system_hints(ADIO_File fd, MPI_Info info);
void ADIOI_incorporate_system_hints(MPI_Info info, MPI_Info sysinfo, MPI_Info * new_info);
void ADIOI_Info_print_keyvals(MPI_Info info);
void ADIOI_GEN_Fcntl(ADIO_File fd, int flag, ADIO_Fcntl_t * fcntl_struct, int *error_code);
void ADIOI_GEN_Flush(ADIO_File fd, int *error_code);
void ADIOI_GEN_OpenColl(ADIO_File fd, int rank, int access_mode, int *error_code);
void ADIOI_SCALEABLE_OpenColl(ADIO_File fd, int rank, int access_mode, int *error_code);
void ADIOI_FAILSAFE_OpenColl(ADIO_File fd, int rank, int access_mode, int *error_code);
void ADIOI_GEN_Delete(const char *filename, int *error_code);
void ADIOI_GEN_ReadContig(ADIO_File fd, void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Status * status, int *error_code);
int ADIOI_GEN_aio(ADIO_File fd, void *buf, int count, MPI_Datatype type,
ADIO_Offset offset, int wr, MPI_Request * request);
void ADIOI_GEN_IreadContig(ADIO_File fd, void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Request * request, int *error_code);
void ADIOI_GEN_WriteContig(ADIO_File fd, const void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Status * status, int *error_code);
void ADIOI_GEN_IwriteContig(ADIO_File fd, const void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Request * request, int *error_code);
void ADIOI_GEN_ReadStrided(ADIO_File fd, void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Status * status, int
*error_code);
void ADIOI_GEN_IreadStrided(ADIO_File fd, void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Request * request, int
*error_code);
void ADIOI_GEN_IwriteStrided(ADIO_File fd, const void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Request * request, int
*error_code);
int ADIOI_GEN_IODone(ADIO_Request * request, ADIO_Status * status, int *error_code);
void ADIOI_GEN_IOComplete(ADIO_Request * request, ADIO_Status * status, int *error_code);
int ADIOI_GEN_aio_poll_fn(void *extra_state, ADIO_Status * status);
int ADIOI_GEN_aio_wait_fn(int count, void **array_of_states, double timeout, ADIO_Status * status);
int ADIOI_GEN_aio_query_fn(void *extra_state, ADIO_Status * status);
int ADIOI_GEN_aio_free_fn(void *extra_state);
int ADIOI_GEN_Feature(ADIO_File fd, int feature);
void ADIOI_GEN_ReadStrided_naive(ADIO_File fd, void *buf, int count,
MPI_Datatype buftype, int file_ptr_type,
ADIO_Offset offset, ADIO_Status * status, int
*error_code);
void ADIOI_GEN_WriteStrided(ADIO_File fd, const void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Status * status, int
*error_code);
void ADIOI_GEN_WriteStrided_naive(ADIO_File fd, const void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Status * status, int
*error_code);
void ADIOI_NOLOCK_WriteStrided(ADIO_File fd, const void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Status * status, int
*error_code);
void ADIOI_GEN_ReadStridedColl(ADIO_File fd, void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Status * status, int
*error_code);
#ifdef HAVE_MPI_GREQUEST_EXTENSIONS
void ADIOI_GEN_IreadStridedColl(ADIO_File fd, void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, MPI_Request * request, int *error_code);
#else
#define ADIOI_GEN_IreadStridedColl NULL
#endif
void ADIOI_GEN_WriteStridedColl(ADIO_File fd, const void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Status * status, int
*error_code);
#ifdef HAVE_MPI_GREQUEST_EXTENSIONS
void ADIOI_GEN_IwriteStridedColl(ADIO_File fd, const void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, MPI_Request * request, int *error_code);
#else
#define ADIOI_GEN_IwriteStridedColl NULL
#endif
void ADIOI_Calc_my_off_len(ADIO_File fd, int bufcount, MPI_Datatype
datatype, int file_ptr_type, ADIO_Offset
offset, ADIO_Offset ** offset_list_ptr, ADIO_Offset
** len_list_ptr, ADIO_Offset * start_offset_ptr,
ADIO_Offset * end_offset_ptr, int
*contig_access_count_ptr);
void ADIOI_Calc_file_domains(ADIO_Offset * st_offsets, ADIO_Offset
* end_offsets, int nprocs, int nprocs_for_coll,
ADIO_Offset * min_st_offset_ptr,
ADIO_Offset ** fd_start_ptr, ADIO_Offset
** fd_end_ptr, int min_fd_size,
ADIO_Offset * fd_size_ptr, int striping_unit);
int ADIOI_Calc_aggregator(ADIO_File fd,
ADIO_Offset off,
ADIO_Offset min_off,
ADIO_Offset * len,
ADIO_Offset fd_size, ADIO_Offset * fd_start, ADIO_Offset * fd_end);
void ADIOI_Calc_my_req(ADIO_File fd, ADIO_Offset * offset_list,
ADIO_Offset * len_list, int
contig_access_count, ADIO_Offset
min_st_offset, ADIO_Offset * fd_start,
ADIO_Offset * fd_end, ADIO_Offset fd_size,
int nprocs,
int *count_my_req_procs_ptr,
int **count_my_req_per_proc_ptr,
ADIOI_Access ** my_req_ptr, MPI_Aint ** buf_idx_ptr);
void ADIOI_Calc_others_req(ADIO_File fd, int count_my_req_procs,
int *count_my_req_per_proc,
ADIOI_Access * my_req,
int nprocs, int myrank,
int *count_others_req_procs_ptr, ADIOI_Access ** others_req_ptr);
/* Nonblocking Collective I/O internals */
typedef enum {
ADIOI_IRC_STATE_GEN_IREADSTRIDEDCOLL,
ADIOI_IRC_STATE_GEN_IREADSTRIDEDCOLL_INDIO,
ADIOI_IRC_STATE_ICALC_OTHERS_REQ,
ADIOI_IRC_STATE_ICALC_OTHERS_REQ_MAIN,
ADIOI_IRC_STATE_IREAD_AND_EXCH,
ADIOI_IRC_STATE_IREAD_AND_EXCH_L1_BEGIN,
ADIOI_IRC_STATE_R_IEXCHANGE_DATA,
ADIOI_IRC_STATE_R_IEXCHANGE_DATA_RECV,
ADIOI_IRC_STATE_R_IEXCHANGE_DATA_FILL,
ADIOI_IRC_STATE_COMPLETE
} ADIOI_IRC_State;
typedef enum {
ADIOI_IWC_STATE_GEN_IWRITESTRIDEDCOLL,
ADIOI_IWC_STATE_GEN_IWRITESTRIDEDCOLL_INDIO,
ADIOI_IWC_STATE_GEN_IWRITESTRIDEDCOLL_BCAST,
ADIOI_IWC_STATE_ICALC_OTHERS_REQ,
ADIOI_IWC_STATE_ICALC_OTHERS_REQ_MAIN,
ADIOI_IWC_STATE_IEXCH_AND_WRITE,
ADIOI_IWC_STATE_IEXCH_AND_WRITE_L1_BODY,
ADIOI_IWC_STATE_W_IEXCHANGE_DATA,
ADIOI_IWC_STATE_W_IEXCHANGE_DATA_HOLE,
ADIOI_IWC_STATE_W_IEXCHANGE_DATA_SEND,
ADIOI_IWC_STATE_W_IEXCHANGE_DATA_WAIT,
ADIOI_IWC_STATE_COMPLETE
} ADIOI_IWC_State;
typedef struct ADIOI_NBC_Request ADIOI_NBC_Request;
typedef struct ADIOI_GEN_IreadStridedColl_vars ADIOI_GEN_IreadStridedColl_vars;
typedef struct ADIOI_Iread_and_exch_vars ADIOI_Iread_and_exch_vars;
typedef struct ADIOI_R_Iexchange_data_vars ADIOI_R_Iexchange_data_vars;
typedef struct ADIOI_GEN_IwriteStridedColl_vars ADIOI_GEN_IwriteStridedColl_vars;
typedef struct ADIOI_Iexch_and_write_vars ADIOI_Iexch_and_write_vars;
typedef struct ADIOI_W_Iexchange_data_vars ADIOI_W_Iexchange_data_vars;
typedef struct ADIOI_Icalc_others_req_vars {
/* requests */
MPI_Request req1;
MPI_Request *req2;
int num_req2;
/* parameters */
ADIO_File fd;
int count_my_req_procs;
int *count_my_req_per_proc;
ADIOI_Access *my_req;
int nprocs;
int myrank;
int *count_others_req_procs_ptr;
ADIOI_Access **others_req_ptr;
/* stack variables */
int *count_others_req_per_proc;
int count_others_req_procs;
ADIOI_Access *others_req;
/* next function to be called */
void (*next_fn) (ADIOI_NBC_Request *, int *);
} ADIOI_Icalc_others_req_vars;
struct ADIOI_NBC_Request {
int rdwr; /* ADIOI_READ or ADIOI_WRITE */
MPI_Request req; /* MPIX_Grequest */
MPI_Count nbytes; /* data read or written */
union {
struct {
ADIOI_IRC_State state; /* progress state */
ADIOI_GEN_IreadStridedColl_vars *rsc_vars;
ADIOI_Iread_and_exch_vars *rae_vars;
ADIOI_R_Iexchange_data_vars *red_vars;
} rd;
struct {
ADIOI_IWC_State state; /* progress state */
ADIOI_GEN_IwriteStridedColl_vars *wsc_vars;
ADIOI_Iexch_and_write_vars *eaw_vars;
ADIOI_W_Iexchange_data_vars *wed_vars;
} wr;
} data;
ADIOI_Icalc_others_req_vars *cor_vars;
};
void ADIOI_Icalc_others_req(ADIOI_NBC_Request * nbc_req, int *error_code);
void ADIOI_Icalc_others_req_main(ADIOI_NBC_Request * nbc_req, int *error_code);
void ADIOI_Icalc_others_req_fini(ADIOI_NBC_Request * nbc_req, int *error_code);
/* KC && AC - New Collective I/O internals*/
#define TEMP_OFF 0
#define REAL_OFF 1
#define MAX_OFF_TYPE 2
/* Communication Tags */
#define DATA_TAG 30
#define AMT_TAG 31
/* cb_fr_type user size is non-zero */
#define ADIOI_FR_AAR 0
#define ADIOI_FR_FSZ -1
#define ADIOI_FR_USR_REALMS -2
typedef struct flatten_state {
ADIO_Offset abs_off;
ADIO_Offset cur_sz;
ADIO_Offset idx;
ADIO_Offset cur_reg_off;
} flatten_state;
typedef struct view_state {
ADIO_Offset fp_ind; /* file view params */
ADIO_Offset disp; /* file view params */
ADIO_Offset byte_off;
ADIO_Offset sz;
ADIO_Offset ext; /* preserved extent from MPI_Type_get_extent */
ADIO_Offset type_sz;
/* Current state */
flatten_state cur_state;
/* Scratch state for counting up ol pairs */
flatten_state tmp_state;
/* Preprocessed data amount and ol pairs */
ADIO_Offset pre_sz;
int pre_ol_ct;
MPI_Aint *pre_disp_arr;
int *pre_blk_arr;
ADIOI_Flatlist_node *flat_type_p;
} view_state;
void ADIOI_Calc_bounds(ADIO_File fd, int count, MPI_Datatype buftype,
int file_ptr_type, ADIO_Offset offset,
ADIO_Offset * st_offset, ADIO_Offset * end_offset);
int ADIOI_Agg_idx(int rank, ADIO_File fd);
void ADIOI_Calc_file_realms(ADIO_File fd, ADIO_Offset min_st_offset, ADIO_Offset max_end_offset);
void ADIOI_IOFiletype(ADIO_File fd, void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, MPI_Datatype custom_ftype,
int rdwr, ADIO_Status * status, int
*error_code);
void ADIOI_IOStridedColl(ADIO_File fd, void *buf, int count, int rdwr,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Status * status, int
*error_code);
void ADIOI_Print_flatlist_node(ADIOI_Flatlist_node * flatlist_node_p);
ADIOI_Flatlist_node *ADIOI_Add_contig_flattened(MPI_Datatype contig_type);
void ADIOI_Exch_file_views(int myrank, int nprocs, int file_ptr_type,
ADIO_File fd, int count,
MPI_Datatype datatype, ADIO_Offset off,
view_state * my_mem_view_state_arr,
view_state * agg_file_view_state_arr,
view_state * client_file_view_state_arr);
int ADIOI_init_view_state(int file_ptr_type, int nprocs, view_state * view_state_arr, int op_type);
int ADIOI_Build_agg_reqs(ADIO_File fd, int rw_type, int nprocs,
view_state * client_file_view_state_arr,
MPI_Datatype * client_comm_dtype_arr,
ADIO_Offset * client_comm_sz_arr,
ADIO_Offset * agg_dtype_offset_p, MPI_Datatype * agg_dtype_p);
int ADIOI_Build_client_reqs(ADIO_File fd,
int nprocs,
view_state * my_mem_view_state_arr,
view_state * agg_file_view_state_arr,
ADIO_Offset * agg_comm_sz_arr, MPI_Datatype * agg_comm_dtype_arr);
int ADIOI_Build_client_pre_req(ADIO_File fd,
int agg_rank,
int agg_idx,
view_state * my_mem_view_state_p,
view_state * agg_file_view_state_p,
ADIO_Offset max_pre_req_sz, int max_ol_ct);
int ADIOI_Build_client_req(ADIO_File fd,
int agg_rank,
int agg_idx,
view_state * my_mem_view_state_p,
view_state * agg_file_view_state_p,
ADIO_Offset agg_comm_sz, MPI_Datatype * agg_comm_dtype_p);
void ADIOI_P2PContigWriteAggregation(ADIO_File fd,
const void *buf,
int *error_code,
ADIO_Offset * st_offsets,
ADIO_Offset * end_offset,
ADIO_Offset * fd_start, ADIO_Offset * fd_end);
void ADIOI_P2PContigReadAggregation(ADIO_File fd,
const void *buf,
int *error_code,
ADIO_Offset * st_offsets,
ADIO_Offset * end_offset,
ADIO_Offset * fd_start, ADIO_Offset * fd_end);
/* This data structure holds parameters related to regulating */
/* the one-sided aggregation algorithm. */
typedef struct ADIOI_OneSidedStripeParms {
int stripeSize; /* size in bytes of the striping unit - a size of 0 indicates to the */
/* onesided algorithm that we are a non-striping file system */
ADIO_Offset segmentLen; /* size in bytes of the segment (stripeSize*number of aggs) */
/* up to the size of the file) */
int stripesPerAgg; /* the number of stripes to be packed into an agg cb for this segment */
int segmentIter; /* segment number for the group of stripes currently being packed into */
/* the agg cb - resets to 0 for each cb flush to the file system */
int flushCB; /* once we have fully packed the cb on an agg this flags */
/* tells us to now write to the file */
ADIO_Offset stripedLastFileOffset; /* since we are now just calling the onesided algorithm */
/* with the offset range of segment, we still need to */
/* know the actual last offset of the file. */
int firstStripedWriteCall; /* whether this is the first call in the first segment of the */
/* onesided algorithm. */
int lastStripedWriteCall; /* whether this is the last call in the last segment of the */
/* onesided algorithm. */
int iWasUsedStripingAgg; /* whether this rank was ever a used agg for this striping segement */
int numStripesUsed; /* the number of stripes packed into an aggregator */
/* These 2 elements are the offset and lengths in the file corresponding to the actual stripes */
ADIO_Offset *stripeWriteOffsets;
ADIO_Offset *stripeWriteLens;
int amountOfStripedDataExpected; /* used to determine holes in this segment thereby requiring a rmw */
/* These 2 elements enable ADIOI_OneSidedWriteAggregation to be called multiple times but only */
/* perform the potientially computationally costly flattening of the source buffer just once */
MPI_Aint bufTypeExtent;
ADIOI_Flatlist_node *flatBuf;
/* These three elements track the state of the source buffer advancement through multiple calls */
/* to ADIOI_OneSidedWriteAggregation */
ADIO_Offset lastDataTypeExtent;
int lastFlatBufIndice;
ADIO_Offset lastIndiceOffset;
} ADIOI_OneSidedStripeParms;
int ADIOI_OneSidedCleanup(ADIO_File fd);
void ADIOI_OneSidedWriteAggregation(ADIO_File fd,
ADIO_Offset * offset_list,
ADIO_Offset * len_list,
int contig_access_count,
const void *buf,
MPI_Datatype datatype,
int *error_code,
ADIO_Offset firstFileOffset,
ADIO_Offset lastFileOffset,
int numNonZeroDataOffsets,
ADIO_Offset * fd_start,
ADIO_Offset * fd_end,
int *hole_found, ADIOI_OneSidedStripeParms * stripe_parms);
void ADIOI_OneSidedReadAggregation(ADIO_File fd,
ADIO_Offset * offset_list,
ADIO_Offset * len_list,
int contig_access_count,
const void *buf,
MPI_Datatype datatype,
int *error_code,
ADIO_Offset * st_offsets,
ADIO_Offset * end_offsets,
int numNonZeroDataOffsets,
ADIO_Offset * fd_start, ADIO_Offset * fd_end);
ADIO_Offset ADIOI_GEN_SeekIndividual(ADIO_File fd, ADIO_Offset offset, int whence, int *error_code);
void ADIOI_GEN_Resize(ADIO_File fd, ADIO_Offset size, int *error_code);
void ADIOI_GEN_SetInfo(ADIO_File fd, MPI_Info users_info, int *error_code);
void ADIOI_GEN_Close(ADIO_File fd, int *error_code);
void ADIOI_Shfp_fname(ADIO_File fd, int rank, int *error_code);
void ADIOI_GEN_Prealloc(ADIO_File fd, ADIO_Offset size, int *error_code);
int MPIR_Err_setmsg(int, int, const char *, const char *, const char *, ...);
int ADIOI_End_call(MPI_Comm comm, int keyval, void *attribute_val, void *extra_state);
int MPIR_Status_set_bytes(MPI_Status * status, MPI_Datatype datatype, MPI_Count nbytes);
int ADIOI_Uses_generic_read(ADIO_File fd);
int ADIOI_Uses_generic_write(ADIO_File fd);
int ADIOI_Err_create_code(const char *myname, const char *filename, int my_errno);
int ADIOI_Type_create_hindexed_x(int count,
const MPI_Count array_of_blocklengths[],
const MPI_Aint array_of_displacements[],
MPI_Datatype oldtype, MPI_Datatype * newtype);
int ADIOI_FAKE_IODone(ADIO_Request * request, ADIO_Status * status, int *error_code);
void ADIOI_FAKE_IreadContig(ADIO_File fd, void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Request * request, int *error_code);
void ADIOI_FAKE_IreadStrided(ADIO_File fd, void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Request * request, int *error_code);
void ADIOI_FAKE_IwriteContig(ADIO_File fd, const void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Request * request, int *error_code);
void ADIOI_FAKE_IwriteStrided(ADIO_File fd, const void *buf, int count,
MPI_Datatype datatype, int file_ptr_type,
ADIO_Offset offset, ADIO_Request * request, int *error_code);
void ADIOI_FAKE_IOComplete(ADIO_Request * request, ADIO_Status * status, int *error_code);
/* File I/O common functionality */
int MPIOI_File_read(MPI_File fh,
MPI_Offset offset,
int file_ptr_type,
void *buf, int count, MPI_Datatype datatype, char *myname, MPI_Status * status);
int MPIOI_File_write(MPI_File fh,
MPI_Offset offset,
int file_ptr_type,
const void *buf,
int count, MPI_Datatype datatype, char *myname, MPI_Status * status);
int MPIOI_File_read_all(MPI_File fh,
MPI_Offset offset,
int file_ptr_type,
void *buf,
int count, MPI_Datatype datatype, char *myname, MPI_Status * status);
int MPIOI_File_write_all(MPI_File fh,
MPI_Offset offset,
int file_ptr_type,
const void *buf,
int count, MPI_Datatype datatype, char *myname, MPI_Status * status);
int MPIOI_File_read_all_begin(MPI_File fh,
MPI_Offset offset,
int file_ptr_type,
void *buf, int count, MPI_Datatype datatype, char *myname);
int MPIOI_File_write_all_begin(MPI_File fh,
MPI_Offset offset,
int file_ptr_type,
const void *buf, int count, MPI_Datatype datatype, char *myname);
int MPIOI_File_read_all_end(MPI_File fh, void *buf, char *myname, MPI_Status * status);
int MPIOI_File_write_all_end(MPI_File fh, const void *buf, char *myname, MPI_Status * status);
int MPIOI_File_iwrite(MPI_File fh,
MPI_Offset offset,
int file_ptr_type,
const void *buf,
int count, MPI_Datatype datatype, char *myname, MPI_Request * request);
int MPIOI_File_iread(MPI_File fh,
MPI_Offset offset,
int file_ptr_type,
void *buf,
int count, MPI_Datatype datatype, char *myname, MPI_Request * request);
int MPIOI_File_iwrite_all(MPI_File fh,
MPI_Offset offset,
int file_ptr_type,
const void *buf,
int count, MPI_Datatype datatype, char *myname, MPI_Request * request);
int MPIOI_File_iread_all(MPI_File fh,
MPI_Offset offset,
int file_ptr_type,
void *buf,
int count, MPI_Datatype datatype, char *myname, MPI_Request * request);
/* Unix-style file locking */
#if defined(F_SETLKW64)
#define ADIOI_WRITE_LOCK_FUNC(fd, offset, whence, len) \
(*(fd->fns->ADIOI_xxx_SetLock))(fd, F_SETLKW64, F_WRLCK, offset, whence, len)
#define ADIOI_READ_LOCK_FUNC(fd, offset, whence, len) \
(*(fd->fns->ADIOI_xxx_SetLock))(fd, F_SETLKW64, F_RDLCK, offset, whence, len)
#define ADIOI_UNLOCK_FUNC(fd, offset, whence, len) \
(*(fd->fns->ADIOI_xxx_SetLock))(fd, F_SETLK64, F_UNLCK, offset, whence, len)
#else
#define ADIOI_WRITE_LOCK_FUNC(fd, offset, whence, len) \
(*(fd->fns->ADIOI_xxx_SetLock))(fd, F_SETLKW, F_WRLCK, offset, whence, len)
#define ADIOI_READ_LOCK_FUNC(fd, offset, whence, len) \
(*(fd->fns->ADIOI_xxx_SetLock))(fd, F_SETLKW, F_RDLCK, offset, whence, len)
#define ADIOI_UNLOCK_FUNC(fd, offset, whence, len) \
(*(fd->fns->ADIOI_xxx_SetLock))(fd, F_SETLK, F_UNLCK, offset, whence, len)
#endif
#ifdef ADIOI_MPE_LOGGING
#define ADIOI_WRITE_LOCK(fd, offset, whence, len) do { \
MPE_Log_event(ADIOI_MPE_writelock_a, 0, NULL); \
ADIOI_WRITE_LOCK_FUNC(fd, offset, whence, len); \
MPE_Log_event(ADIOI_MPE_writelock_b, 0, NULL); } while (0)
#define ADIOI_READ_LOCK(fd, offset, whence, len) \
MPE_Log_event(ADIOI_MPE_readlock_a, 0, NULL); do { \
ADIOI_READ_LOCK_FUNC(fd, offset, whence, len); \
MPE_Log_event(ADIOI_MPE_readlock_b, 0, NULL); } while (0)
#define ADIOI_UNLOCK(fd, offset, whence, len) do { \
MPE_Log_event(ADIOI_MPE_unlock_a, 0, NULL); \
ADIOI_UNLOCK_FUNC(fd, offset, whence, len); \
MPE_Log_event(ADIOI_MPE_unlock_b, 0, NULL); } while (0)
#else
#define ADIOI_WRITE_LOCK(fd, offset, whence, len) \
ADIOI_WRITE_LOCK_FUNC(fd, offset, whence, len)
#define ADIOI_READ_LOCK(fd, offset, whence, len) \
ADIOI_READ_LOCK_FUNC(fd, offset, whence, len)
#define ADIOI_UNLOCK(fd, offset, whence, len) \
ADIOI_UNLOCK_FUNC(fd, offset, whence, len)
#endif
int ADIOI_GEN_SetLock(ADIO_File fd, int cmd, int type, ADIO_Offset offset, int whence,
ADIO_Offset len);
int ADIOI_GEN_SetLock64(ADIO_File fd, int cmd, int type, ADIO_Offset offset, int whence,
ADIO_Offset len);
#define ADIOI_Malloc(a) ADIOI_Malloc_fn(a,__LINE__,__FILE__)
#define ADIOI_Calloc(a,b) ADIOI_Calloc_fn(a,b,__LINE__,__FILE__)
#define ADIOI_Realloc(a,b) ADIOI_Realloc_fn(a,b,__LINE__,__FILE__)
#define ADIOI_Free(a) ADIOI_Free_fn(a,__LINE__,__FILE__)
int ADIOI_Strncpy(char *outstr, const char *instr, size_t maxlen);
char *ADIOI_Strdup(const char *);
/* the current MPI standard is not const-correct, and modern compilers warn
* about the following sort of code:
*
* MPI_Info_set(info, "key", "val");
*
* reminding us that "key" and "val" are const. We use the following macros to
* cast away the const and suppress the warning. */
#define ADIOI_Info_set(info_,key_str_,val_) \
MPI_Info_set((info_),((char*)key_str_),(char*)(val_))
#define ADIOI_Info_get(info_,key_str_,val_len_,val_,flag_) \
MPI_Info_get((info_),((char*)key_str_),(val_len_),(val_),(flag_))
#define ADIOI_Info_get_valuelen(info_,key_str_,val_len_,flag_) \
MPI_Info_get_valuelen((info_),((char*)key_str_),(val_len_),(flag_))
#define ADIOI_Info_delete(info_,key_str_) \
MPI_Info_delete((info_),((char*)key_str_))
#ifdef ROMIO_INSIDE_MPICH
/* the I/O related support for MPI_Comm_split_type */
int MPIR_Comm_split_filesystem(MPI_Comm comm, int key, const char *dirname, MPI_Comm * newcomm);
#endif
/* Define attribute as empty if it has no definition */
#ifndef ATTRIBUTE
#ifdef HAVE_GCC_ATTRIBUTE
#define ATTRIBUTE(a) __attribute__(a)
#else
#define ATTRIBUTE(a)
#endif
#endif
#define FPRINTF fprintf
#ifndef HAVE_STRERROR
#ifdef HAVE_SYSERRLIST
extern char *sys_errlist[];
#define strerror(n) sys_errlist[n]
#else
#define PRINT_ERR_MSG
#endif
#endif
#include "adioi_error.h"
/* MPE logging variables */
#ifdef ADIOI_MPE_LOGGING
#include "mpe.h"
int ADIOI_MPE_open_a;
int ADIOI_MPE_open_b;
int ADIOI_MPE_read_a;
int ADIOI_MPE_read_b;
int ADIOI_MPE_write_a;
int ADIOI_MPE_write_b;
int ADIOI_MPE_lseek_a;
int ADIOI_MPE_lseek_b;
int ADIOI_MPE_close_a;
int ADIOI_MPE_close_b;
int ADIOI_MPE_writelock_a;
int ADIOI_MPE_writelock_b;
int ADIOI_MPE_readlock_a;
int ADIOI_MPE_readlock_b;
int ADIOI_MPE_unlock_a;
int ADIOI_MPE_unlock_b;
int ADIOI_MPE_postwrite_a;
int ADIOI_MPE_postwrite_b;
int ADIOI_MPE_openinternal_a;
int ADIOI_MPE_openinternal_b;
int ADIOI_MPE_stat_a;
int ADIOI_MPE_stat_b;
int ADIOI_MPE_iread_a;
int ADIOI_MPE_iread_b;
int ADIOI_MPE_iwrite_a;
int ADIOI_MPE_iwrite_b;
#endif
#ifdef ROMIO_INSIDE_MPICH
/* Assert that this MPI_Aint value can be cast to a ptr value without problem.*/
/* Basic idea is the value should be unchanged after casting
(no loss of (meaningful) high order bytes in 8 byte MPI_Aint
to (possible) 4 byte ptr cast) */
/* Should work even on 64bit or old 32bit configs */
#include "mpir_ext.h"
#define ADIOI_AINT_CAST_TO_VOID_PTR (void*)(intptr_t)
/* The next two casts are only used when you don't want sign extension
* when casting a (possible 4 byte) aint to a (8 byte) long long or offset */
#define ADIOI_AINT_CAST_TO_LONG_LONG (long long)
#define ADIOI_AINT_CAST_TO_OFFSET ADIOI_AINT_CAST_TO_LONG_LONG
#define ADIOI_Assert MPIR_Ext_assert
#else
#include <assert.h>
#define ADIOI_AINT_CAST_TO_VOID_PTR (void*)
#define ADIOI_AINT_CAST_TO_LONG_LONG (long long)
#define ADIOI_AINT_CAST_TO_OFFSET ADIOI_AINT_CAST_TO_LONG_LONG
#define ADIOI_Assert assert
#endif
#ifdef MPL_USE_DBG_LOGGING /*todo fix dependency on mpich? */
/* DBGT_FPRINTF terse level printing */
#define DBGT_FPRINTF if (MPIR_Ext_dbg_romio_verbose_enabled) fprintf(stderr,"%s:%d:",__FILE__,__LINE__); \
if (MPIR_Ext_dbg_romio_terse_enabled) fprintf
/* DBG_FPRINTF default (typical level) printing */
#define DBG_FPRINTF if (MPIR_Ext_dbg_romio_verbose_enabled) fprintf(stderr,"%s:%d:",__FILE__,__LINE__); \
if (MPIR_Ext_dbg_romio_typical_enabled) fprintf
/* DBGV_FPRINTF verbose level printing */
#define DBGV_FPRINTF if (MPIR_Ext_dbg_romio_verbose_enabled) fprintf(stderr,"%s:%d:",__FILE__,__LINE__); \
if (MPIR_Ext_dbg_romio_verbose_enabled) fprintf
#else /* compile it out */
#define DBGT_FPRINTF if (0) fprintf
#define DBG_FPRINTF if (0) fprintf
#define DBGV_FPRINTF if (0) fprintf
#endif
/* declarations for threaded I/O */
/* i/o thread data structure (bgmpio_pthreadwc) */
typedef struct wcThreadFuncData {
ADIO_File fd;
int io_kind;
char *buf;
int size;
ADIO_Offset offset;
ADIO_Status *status;
int error_code;
} ADIOI_IO_ThreadFuncData;
void *ADIOI_IO_Thread_Func(void *vptr_args);
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif
#ifndef PATH_MAX
#define PATH_MAX 65535
#endif
#if (HAVE_DECL_PWRITE == 0)
#include <sys/types.h>
#include <unistd.h>
ssize_t pread(int fd, void *buf, size_t count, off_t offset);
ssize_t pwrite(int fd, const void *buf, size_t count, off_t offset);
#endif
#include "mpl.h"
#endif /* ADIOI_H_INCLUDED */
|