This file is indexed.

/usr/include/ASL/writers/aslABDFormat.h is in libasl-dev 0.1.7-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
/*
 * Advanced Simulation Library <http://asl.org.il>
 * 
 * Copyright 2015 Avtech Scientific <http://avtechscientific.com>
 *
 *
 * This file is part of Advanced Simulation Library (ASL).
 *
 * ASL is free software: you can redistribute it and/or modify it
 * under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, version 3 of the License.
 *
 * ASL is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with ASL. If not, see <http://www.gnu.org/licenses/>.
 *
 */


#ifndef ASLABDFORMAT_H
#define ASLABDFORMAT_H

#include <stdlib.h>

#include <iostream>
#include <fstream>
#include <string>
#include <memory>

#include <data/aslDataWrapper.h>

using  namespace std;

namespace asl {

	/**
		\defgroup ABDFormat ASL Binary Dump (ABD) format
		\ingroup IO
	 */
	
	/// ABD (ASL Binary Dump) file, input
	/**
		 \ingroup ABDFormat
	*/
	class ABDFileIn: public std::ifstream{
		public:
			inline ABDFileIn();
			inline ABDFileIn(string name);
	};

	/// ABD (ASL Binary Dump) file, output
	/**
		 \ingroup ABDFormat
	*/
	class ABDFileOut: public std::ofstream{
		public:
			inline ABDFileOut();
			inline ABDFileOut(string name);
	};
	
/*	/// \relates ABDFileOut
	template <typename T> inline ABDFileOut & operator <<(ABDFileOut & f, const T & a);
	/// \relates ABDFileIn
	template <typename T> inline ABDFileIn & operator >>(ABDFileIn & f,T & a);
*/
	
	/// \relates ABDFileOut
	inline ABDFileOut & operator <<(ABDFileOut & f, const int a);
	/// \relates ABDFileIn
	inline ABDFileIn & operator >>(ABDFileIn & f,int & a);
	/// \relates ABDFileOut
	inline ABDFileOut & operator <<(ABDFileOut & f, const unsigned int a);
	/// \relates ABDFileIn
	inline ABDFileIn & operator >>(ABDFileIn & f, unsigned int & a);
	/// \relates ABDFileOut
	inline ABDFileOut & operator <<(ABDFileOut & f, const float a);
	/// \relates ABDFileIn
	inline ABDFileIn & operator >>(ABDFileIn & f,float & a);
	/// \relates ABDFileOut
	inline ABDFileOut & operator <<(ABDFileOut & f, const double a);
	/// \relates ABDFileIn
	inline ABDFileIn & operator >>(ABDFileIn & f,double & a);
	
	
	/// \relates ABDFileOut
	template <typename T> inline ABDFileOut & operator <<(ABDFileOut & f,pair<T*, unsigned int> a);
	/// \relates ABDFileIn
	template <typename T> inline ABDFileIn & operator >>(ABDFileIn & f,pair<T*, unsigned int> a);

	/// \relates ABDFileOut	
	inline ABDFileOut & operator <<(ABDFileOut & f, const string &a);
	/// \relates ABDFileIn	
	inline ABDFileIn & operator >>(ABDFileIn & f,string &a);

	/// \relates ABDFileOut
	template <typename T> inline ABDFileOut & operator <<(ABDFileOut & f, const AVec<T> & a);
	/// \relates ABDFileIn
	template <typename T> inline ABDFileIn & operator >>(ABDFileIn & f,AVec<T> & a);

	class Block;
	
	/// \relates ABDFileOut	
	ABDFileOut & operator <<(ABDFileOut & f, const Block &a);
	/// \relates ABDFileIn	
	ABDFileIn & operator >>(ABDFileIn & f, Block &a);

	class AbstractData;
	
	/// writes data. It is assumed that the Block is written separately \relates ABDFileOut	
	/**
		 The function writes only the first element
	*/
	ABDFileOut & operator <<(ABDFileOut & f, const AbstractData &a);

	/// reads data. It is assumed that the class has the propper size \relates ABDFileIn	
	/**
		 The function writes only the first element
	*/
	ABDFileIn & operator >>(ABDFileIn & f, AbstractData &a);

	/// reads data. It is assumed that the class has the propper size \relates ABDFileIn	
	/**
		 The function reads only the first element. Additionaly it creates and 
		 stores data in the memory \p d; in case of d.get()==0 defineds whether 
		 the new d should be allocated
	*/
	ABDFileIn & get(ABDFileIn & f, AbstractData &a, std::shared_ptr<double> d);
		 		
	/// writes \p data in a file with ABD (ASL Binary Dump) format
	/**
		 \ingroup ABDFormat
	*/
	void writeABD(const string &fileName, const AbstractData & data, const string & name);


//------------------------IMPLEMENTATION------------------------------

	ABDFileIn::ABDFileIn():ifstream()
	{};
	ABDFileIn::ABDFileIn(string name):
		ifstream(name,ios::in | ios::binary)
	{}	

	ABDFileOut::ABDFileOut():ofstream()
	{}
	ABDFileOut::ABDFileOut(string name):
		ofstream(name,ios::out | ios::binary)
	{}

	inline ABDFileOut & operator <<(ABDFileOut & f, const int a)
	{
		f.write((char*)&a,sizeof(int)); 
		return f;
	}

	inline ABDFileIn & operator >>(ABDFileIn & f,int & a)
	{
		f.read((char*)&a,sizeof(int)); 
		return f;
	}

	inline ABDFileOut & operator <<(ABDFileOut & f, const unsigned int a)
	{
		f.write((char*)&a,sizeof(unsigned int)); 
		return f;
	}

	inline ABDFileIn & operator >>(ABDFileIn & f, unsigned int & a)
	{
		f.read((char*)&a,sizeof(unsigned int)); 
		return f;
	}

	inline ABDFileOut & operator <<(ABDFileOut & f, const float a)
	{
		f.write((char*)&a,sizeof(float)); 
		return f;
	}

	inline ABDFileIn & operator >>(ABDFileIn & f,float & a)
	{
		f.read((char*)&a,sizeof(float)); 
		return f;
	}

	inline ABDFileOut & operator <<(ABDFileOut & f, const double a)
	{
		f.write((char*)&a,sizeof(double)); 
		return f;
	}

	inline ABDFileIn & operator >>(ABDFileIn & f,double & a)
	{
		f.read((char*)&a,sizeof(double)); 
		return f;
	}
		

	template <typename T> inline ABDFileOut & operator <<(ABDFileOut & f,pair<T*, unsigned int> a)
	{
		f.write((char*)a.first,sizeof(T)*a.second); 
		return f;
	}
	template <typename T> inline ABDFileIn & operator >>(ABDFileIn & f,pair<T*, unsigned int> a)
	{
		f.read((char*)a.first,sizeof(T)*a.second); 
		return f;
	}
	
	inline ABDFileOut & operator <<(ABDFileOut & f, const string &a){
		unsigned int n=a.size();
		f<<n<<make_pair(&a[0],n);
		return f;
	}

	inline ABDFileIn & operator >>(ABDFileIn & f,string &a){
		unsigned int n;
		f>>n; a.resize(n);
		f>>make_pair(a.data(),n);
		return f;
	}

	template <typename T> inline ABDFileOut & operator <<(ABDFileOut & f, const AVec<T> & a)
	{
		unsigned int n(a.getSize());
		f<<n<<make_pair(&(a[0]),n);
		return f;
	}

	template <typename T> inline ABDFileIn & operator >>(ABDFileIn & f,AVec<T> & a)
	{
		unsigned int n(0);
		f>>n; 
		a.resize(n);
		f>>make_pair(&(a[0]),n);
		return f;
	}

		
}// asl

#endif //ASLVTKFORMAT_H