Blame view

server/kernel/src/File/FileLoaderASCII.h 1.62 KB
346b85c6   Benjamin Renard   First commit with...
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
#ifndef FILELOADERASCII_H
#define FILELOADERASCII_H

#include <iostream> 
#include <fstream> 

#include "FileLoaderAbstract.h"
#include "../Common/TREPSTypes.h"

using namespace TREPS::Common;
using namespace std;

namespace TREPS
{
	namespace File
	{
		class FileLoaderASCIIClass : public FileLoaderAbstractClass
		{
			public :
				FileLoaderASCIIClass(void);

				~FileLoaderASCIIClass(void);

				//open ASCII file
				bool open(const char *file_path);

				//close ASCII file
				bool close(void);

				//test if a ASCII file is opened
				bool isOpened(void);

				//get ASCII data
				bool getData(int start, int limit, DataRecordListClass *data, int &total);

				//get file format
				t_FileFormat getFormat(void);

				//detect frames in ASCII file
				t_StringList getFrames(const t_FieldList *fields);

				//get number of records in ASCII file
				long int getNbRecords(void);

				//detect fields in ASCII file
				t_FieldList getFields(long int nbRecords);

				//add specific ASCII file vectors
				void addSpecificFormatVectors(const t_FieldList *fields, t_VectorList &vectors);

				//get file attributes
				map<string,string> getAttributes(void);
				
			private :
				//stream to file
				ifstream file;

				//pointer to current working line
				string *crtLine;

				//char used to defined a header line
				char headerChar;

				//tags list to define a frame
				t_StringList frameTags;

				//go to next line
				bool getNextDataLine(void);

				//go to first line
				void resetLine(void);

				//detect field type
				void getType(const char *value, t_FieldType &type, t_TimeFormat &timeformat, string &timepattern);
		};
	}
}

#endif