PDI 1.0.1

Data exchange made easy

scalar_datatype.h
1 /*******************************************************************************
2  * Copyright (C) 2015-2019 Commissariat a l'energie atomique et aux energies alternatives (CEA)
3  * Copyright (C) 2020 Institute of Bioorganic Chemistry Polish Academy of Science (PSNC)
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are met:
8  * * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * * Neither the name of CEA nor the names of its contributors may be used to
14  * endorse or promote products derived from this software without specific
15  * prior written permission.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23  * THE SOFTWARE.
24  ******************************************************************************/
25 
26 #ifndef PDI_SCALAR_DATATYPE_H_
27 #define PDI_SCALAR_DATATYPE_H_
28 
29 #include <functional>
30 #include <string>
31 
32 #include <pdi/pdi_fwd.h>
33 #include <pdi/datatype.h>
34 
35 
36 namespace PDI {
37 
38 class PDI_EXPORT Scalar_datatype:
39  public Datatype
40 {
42  size_t m_size;
43 
45  size_t m_dense_size;
46 
48  size_t m_align;
49 
51  Scalar_kind m_kind;
52 
54  std::function<void* (void*, const void*)> m_copy;
55 
57  std::function<void(void*)> m_destroy;
58 
59 public:
60  Scalar_datatype(Scalar_kind kind, size_t size);
61 
62  Scalar_datatype(Scalar_kind kind, size_t size, size_t align);
63 
64  Scalar_datatype(Scalar_kind kind, size_t size, size_t align, size_t dense_size, std::function<void* (void*, const void*)> copy, std::function<void(void*)> destroy);
65 
68  Scalar_kind kind() const;
69 
70  Datatype_template_uptr clone() const override;
71 
72  Datatype_uptr clone_type() const override;
73 
74  Datatype_uptr densify() const override;
75 
76  Datatype_uptr evaluate(Context&) const override;
77 
78  bool dense() const override;
79 
80  size_t datasize() const override;
81 
82  size_t buffersize() const override;
83 
84  size_t alignment() const override;
85 
86  bool simple() const override;
87 
88  void* data_to_dense_copy(void* to, const void* from) const override;
89 
90  void* data_from_dense_copy(void* to, const void* from) const override;
91 
92  void destroy_data(void* ptr) const override;
93 
94  std::string debug_string() const override;
95 
96  bool operator== (const Datatype&) const override;
97 
98 };
99 
101 
102 } // namespace PDI
103 
104 #endif // PDI_SCALAR_DATATYPE_H_
Definition: context.h:42
Definition: scalar_datatype.h:38
A Datatype is a Datatype_template that accepts no argument.
Definition: datatype.h:46
std::unique_ptr< Datatype_template > Datatype_template_uptr
Definition: pdi_fwd.h:74
std::unique_ptr< Datatype > Datatype_uptr
Definition: pdi_fwd.h:78
Scalar_kind
Different possible interpretations for a scalar.
Definition: pdi_fwd.h:105
const Scalar_datatype UNDEF_TYPE
Definition: scalar_datatype.h:100
Definition: array_datatype.h:37