binio.h
1 /* Copyright (C) 2012-2020 IBM Corp.
2  * This program is Licensed under the Apache License, Version 2.0
3  * (the "License"); you may not use this file except in compliance
4  * with the License. You may obtain a copy of the License at
5  * http://www.apache.org/licenses/LICENSE-2.0
6  * Unless required by applicable law or agreed to in writing, software
7  * distributed under the License is distributed on an "AS IS" BASIS,
8  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9  * See the License for the specific language governing permissions and
10  * limitations under the License. See accompanying LICENSE file.
11  */
12 #ifndef HELIB_BINIO_H
13 #define HELIB_BINIO_H
14 #include <iostream>
15 #include <vector>
16 #include <type_traits>
17 #include <NTL/xdouble.h>
18 #include <NTL/vec_long.h>
19 
20 #define BINIO_32BIT 4
21 #define BINIO_48BIT 6
22 #define BINIO_64BIT 8
23 
24 #define BINIO_EYE_SIZE 4
25 
26 // clang-format off
27 #define BINIO_EYE_CONTEXTBASE_BEGIN "|BS["
28 #define BINIO_EYE_CONTEXTBASE_END "]BS|"
29 #define BINIO_EYE_CONTEXT_BEGIN "|CN["
30 #define BINIO_EYE_CONTEXT_END "]CN|"
31 #define BINIO_EYE_CTXT_BEGIN "|CX["
32 #define BINIO_EYE_CTXT_END "]CX|"
33 #define BINIO_EYE_PK_BEGIN "|PK["
34 #define BINIO_EYE_PK_END "]PK|"
35 #define BINIO_EYE_SK_BEGIN "|SK["
36 #define BINIO_EYE_SK_END "]SK|"
37 #define BINIO_EYE_SKM_BEGIN "|KM["
38 #define BINIO_EYE_SKM_END "]KM|"
39 // clang-format on
40 
41 namespace helib {
42 
43 /* This struct (or similar) is a nice to have not used at the moment. */
44 // struct BinaryHeader {
45 // uint8_t structId[4];
46 // uint8_t version[4] = {0, 0, 0, 1};
47 // uint64_t id;
48 // uint64_t payloadSize;
49 //};
50 
51 /* Some utility functions for binary IO */
52 
53 int readEyeCatcher(std::istream& str, const char* expect);
54 void writeEyeCatcher(std::ostream& str, const char* eye);
55 
56 void write_ntl_vec_long(std::ostream& str,
57  const NTL::vec_long& vl,
58  long intSize = BINIO_64BIT);
59 void read_ntl_vec_long(std::istream& str, NTL::vec_long& vl);
60 
61 long read_raw_int(std::istream& str);
62 int read_raw_int32(std::istream& str);
63 void write_raw_int(std::ostream& str, long num);
64 void write_raw_int32(std::ostream& str, int num);
65 
66 void write_raw_double(std::ostream& str, const double d);
67 double read_raw_double(std::istream& str);
68 
69 void write_raw_xdouble(std::ostream& str, const NTL::xdouble xd);
70 NTL::xdouble read_raw_xdouble(std::istream& str);
71 
72 void write_raw_ZZ(std::ostream& str, const NTL::ZZ& zz);
73 void read_raw_ZZ(std::istream& str, NTL::ZZ& zz);
74 
75 template <typename T>
76 void write_raw_vector(std::ostream& str, const std::vector<T>& v)
77 {
78  write_raw_int(str, v.size());
79 
80  for (const T& n : v) {
81  n.write(str);
82  }
83 }
84 
85 // vector<long> has a different implementation, since long.write does not work
86 template <>
87 void write_raw_vector<long>(std::ostream& str, const std::vector<long>& v);
88 
89 // vector<double> has a different implementation, since double.write does not
90 // work
91 template <>
92 void write_raw_vector<double>(std::ostream& str, const std::vector<double>& v);
93 
94 template <typename T>
95 void read_raw_vector(std::istream& str, std::vector<T>& v, T& init)
96 {
97  long sz = read_raw_int(str);
98  v.resize(sz, init); // Make space in vector
99 
100  for (auto& n : v) {
101  n.read(str);
102  }
103 }
104 
105 template <typename T>
106 void read_raw_vector(std::istream& str, std::vector<T>& v)
107 {
108  read_raw_vector<T>(str, v, T());
109 }
110 
111 // vector<long> has a different implementation, since long.read does not work
112 template <>
113 void read_raw_vector<long>(std::istream& str, std::vector<long>& v);
114 
115 // vector<double> has a different implementation, since double.read does not
116 // work
117 template <>
118 void read_raw_vector<double>(std::istream& str, std::vector<double>& v);
119 
120 // KeySwitch::read(...) (in keySwitching.cpp) requires the context.
121 class Context;
122 template <typename T>
123 void read_raw_vector(std::istream& str,
124  std::vector<T>& v,
125  const Context& context)
126 {
127  long sz = read_raw_int(str);
128  v.resize(sz); // Make space in vector
129 
130  for (auto& n : v) {
131  n.read(str, context);
132  }
133 }
134 
135 } // namespace helib
136 #endif // ifndef HELIB_BINIO_H
int readEyeCatcher(std::istream &str, const char *expect)
Definition: binio.cpp:21
void writeEyeCatcher(std::ostream &str, const char *eye)
Definition: binio.cpp:28
void write_raw_double(std::ostream &str, const double d)
Definition: binio.cpp:148
void read_raw_vector(std::istream &str, std::vector< T > &v, T &init)
Definition: binio.h:95
void write_raw_ZZ(std::ostream &str, const NTL::ZZ &zz)
Definition: binio.cpp:180
void write_raw_vector(std::ostream &str, const std::vector< T > &v)
Definition: binio.h:76
void write_ntl_vec_long(std::ostream &str, const NTL::vec_long &vl, long intSize=BINIO_64BIT)
Definition: binio.cpp:105
int read_raw_int32(std::istream &str)
Definition: binio.cpp:56
double read_raw_double(std::istream &str)
Definition: binio.cpp:157
void read_raw_vector< double >(std::istream &str, std::vector< double > &v)
Definition: binio.cpp:231
void write_raw_vector< double >(std::ostream &str, const std::vector< double > &v)
Definition: binio.cpp:242
void read_raw_ZZ(std::istream &str, NTL::ZZ &zz)
Definition: binio.cpp:193
void read_ntl_vec_long(std::istream &str, NTL::vec_long &vl)
Definition: binio.cpp:125
NTL::xdouble read_raw_xdouble(std::istream &str)
Definition: binio.cpp:173
Definition: apiAttributes.h:21
long read_raw_int(std::istream &str)
Definition: binio.cpp:36
void read_raw_vector< long >(std::istream &str, std::vector< long > &v)
Definition: binio.cpp:210
void write_raw_int(std::ostream &str, long num)
Definition: binio.cpp:77
Maintaining the parameters.
Definition: Context.h:121
void write_raw_int32(std::ostream &str, int num)
Definition: binio.cpp:91
void write_raw_vector< long >(std::ostream &str, const std::vector< long > &v)
Definition: binio.cpp:221
void write_raw_xdouble(std::ostream &str, const NTL::xdouble xd)
Definition: binio.cpp:165