-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwayfile.hpp
122 lines (106 loc) · 2.85 KB
/
wayfile.hpp
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
//class WayNodeFile
class WayNodeFileEntry
{
public:
// long int way;
// long int node;
int iway;
long int inode;
public:
WayNodeFileEntry(//const long int & way,
const int & iway,
//const long int & node,
const long int & inode):
// way(way),
// node(node),
iway(iway),
inode(inode)
{
}
void write (ostream & os) {
// os << way << "[" << iway << "]\t"
// << node << "[" << inode << "]\t" << endl;
os << iway <<"\t"
<< inode << endl;
}
};
class WayNodeFile {
public:
vector< WayNodeFileEntry > way_nodes;
ofstream txtfile;
ofstream txtfile2; // debug of the bin file
ofstream file;
string filename;
long int total_count;
long int write_count;
int total_way_count;
const char * dirname;
long blockcount;
WayNodeFile(const char * dirname,long blockcount,const char * filename)
: total_way_count(0),
total_count(0),
write_count(0),
filename(filename),
dirname(dirname),
blockcount(blockcount)
{
string outputbase(string (dirname) + string(filename));
txtfile.open(string(outputbase + ".txt").c_str());
txtfile2.open(string(outputbase + "2.txt").c_str());
file.open(string(outputbase + ".bin").c_str());
}
~WayNodeFile()
{
int count =way_nodes.size();
write(count);
way_nodes.clear();
txtfile.close();
txtfile2.close();
cout << "Closing file " << dirname<< filename << ", wrote " << total_count << endl;
}
void flush()
{
write(way_nodes.size());
}
long long count()
{
return total_count;
}
void write(int count)
{
vector< WayNodeFileEntry >::iterator i;
int index=0;
int way=-1;
for(i=way_nodes.begin();i!=way_nodes.end();i++)
{
if (way != i->iway)
{
long int zero=-1;
file.write((const char*)&zero, 1 * sizeof(int)); // zero before each list
txtfile2 << "Z" << zero << endl;
// new way
file.write((const char*)&i->iway, 1 * sizeof(long int)); // skip the binary file now
way = i->iway; // we look for changes
txtfile2 << "W:"<< way<< endl; // way
total_way_count++;
}
// write the null int node to end
file.write((const char*)&(i->inode), 1 * sizeof(int));
txtfile2 << "ND:"<< i->inode; // way
i->write (txtfile);
write_count++;
index ++;
}
cout << "wrote " << total_count << endl;
way_nodes.clear(); // erase the way_nodes
}
void push_back (int & iway,long int & inode ){
total_count++;
WayNodeFileEntry v (iway,inode);
way_nodes.push_back(v);
int count =way_nodes.size();
if (count > blocksize) {
write(count);
}
}
};