Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
First works on the datatypes. Still missing a lot.
[simgrid.git] / src / smpi / smpi_datatype.hpp
1 /* Copyright (c) 2009-2010, 2012-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef SMPI_DATATYPE_HPP
8 #define SMPI_DATATYPE_HPP
9
10 #include <xbt/base.h>
11
12 #include "private.h"
13
14 #define DT_FLAG_DESTROYED     0x0001  /**< user destroyed but some other layers still have a reference */
15 #define DT_FLAG_COMMITED      0x0002  /**< ready to be used for a send/recv operation */
16 #define DT_FLAG_CONTIGUOUS    0x0004  /**< contiguous datatype */
17 #define DT_FLAG_OVERLAP       0x0008  /**< datatype is unpropper for a recv operation */
18 #define DT_FLAG_USER_LB       0x0010  /**< has a user defined LB */
19 #define DT_FLAG_USER_UB       0x0020  /**< has a user defined UB */
20 #define DT_FLAG_PREDEFINED    0x0040  /**< cannot be removed: initial and predefined datatypes */
21 #define DT_FLAG_NO_GAPS       0x0080  /**< no gaps around the datatype */
22 #define DT_FLAG_DATA          0x0100  /**< data or control structure */
23 #define DT_FLAG_ONE_SIDED     0x0200  /**< datatype can be used for one sided operations */
24 #define DT_FLAG_UNAVAILABLE   0x0400  /**< datatypes unavailable on the build (OS or compiler dependant) */
25 #define DT_FLAG_VECTOR        0x0800  /**< valid only for loops. The loop contain only one element
26                                        **< without extent. It correspond to the vector type. */
27 /*
28  * We should make the difference here between the predefined contiguous and non contiguous
29  * datatypes. The DT_FLAG_BASIC is held by all predefined contiguous datatypes.
30  */
31 #define DT_FLAG_BASIC      (DT_FLAG_PREDEFINED | DT_FLAG_CONTIGUOUS | DT_FLAG_NO_GAPS | DT_FLAG_DATA | DT_FLAG_COMMITED)
32
33 namespace simgrid{
34 namespace smpi{
35
36 class Datatype{
37 //TODO: remove
38   public:
39     char* name_;
40     size_t size_;
41     MPI_Aint lb_;
42     MPI_Aint ub_;
43     int flags_;
44     xbt_dict_t attributes_;
45     int in_use_;
46
47   public:
48     Datatype(int size,int lb, int ub, int flags);
49     Datatype(char* name, int size,int lb, int ub, int flags);
50     Datatype(Datatype &datatype);
51     ~Datatype();
52     void use();
53     void unuse();
54     void commit();
55     bool is_valid();
56     size_t size();
57     int flags();
58     void addflag(int flag);
59     MPI_Aint lb();
60     MPI_Aint ub();
61     int extent(MPI_Aint * lb, MPI_Aint * extent);
62     MPI_Aint get_extent();
63     char* name();
64     void get_name(char* name, int* length);
65     void set_name(char* name);
66     static int copy(void *sendbuf, int sendcount, MPI_Datatype sendtype,
67                     void *recvbuf, int recvcount, MPI_Datatype recvtype);
68     virtual void serialize( void* noncontiguous_vector, void *contiguous_vector, 
69                             int count, void *type);
70     virtual void unserialize( void* contiguous_vector, void *noncontiguous_vector, 
71                               int count, void *type, MPI_Op op);
72     int attr_delete(int keyval);
73     int attr_get(int keyval, void* attr_value, int* flag);
74     int attr_put(int keyval, void* attr_value);
75     static int keyval_create(MPI_Type_copy_attr_function* copy_fn, MPI_Type_delete_attr_function* delete_fn, int* keyval, void* extra_state);
76     static int keyval_free(int* keyval);
77     int pack(void* inbuf, int incount, void* outbuf, int outcount, int* position, MPI_Comm comm);
78     int unpack(void* inbuf, int insize, int* position, void* outbuf, int outcount, MPI_Comm comm);
79 };
80
81 class Type_Contiguous:Datatype{
82 };
83
84 class Type_Vector:Datatype{
85 };
86
87 class Type_Hvector:Datatype{
88 };
89
90 class Type_Indexed:Datatype{
91 };
92
93 class Type_Hindexed:Datatype{
94 };
95
96 class Type_Struct:Datatype{
97 };
98
99
100 }
101 }
102
103 #endif