-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStat.cc
143 lines (118 loc) · 1.75 KB
/
Stat.cc
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
/** Rohit Sindhu [sindh010]
* Aravind Alagiri Ramkumar [alagi005]
* Aparna Mahadevan [mahad028]
*/
#include "Stat.h"
Stat::Stat()
{
st_dev = 0 ;
st_ino = 0 ;
st_mode = 0 ;
st_nlink = 0 ;
st_uid = 0 ;
st_gid = 0 ;
st_rdev = 0 ;
st_size = 0 ;
st_atime = 0 ;
st_mtime = 0 ;
st_ctime = 0 ;
}
void Stat::setDev( short newDev )
{
st_dev = newDev ;
}
short Stat::getDev()
{
return st_dev ;
}
void Stat::setIno( short newIno )
{
st_ino = newIno ;
}
short Stat::getIno()
{
return st_ino ;
}
void Stat::setMode( short newMode )
{
st_mode = newMode ;
}
short Stat::getMode()
{
return st_mode ;
}
void Stat::setNlink( short newNlink )
{
st_nlink = newNlink ;
}
short Stat::getNlink()
{
return st_nlink ;
}
void Stat::setUid( short newUid )
{
st_uid = newUid ;
}
short Stat::getUid()
{
return st_uid ;
}
void Stat::setGid( short newGid )
{
st_gid = newGid ;
}
short Stat::getGid()
{
return st_gid ;
}
void Stat::setRdev( short newRdev )
{
st_rdev = newRdev ;
}
short Stat::getRdev()
{
return st_rdev ;
}
void Stat::setSize( int newSize )
{
st_size = newSize ;
}
int Stat::getSize()
{
return st_size ;
}
void Stat::setAtime( int newAtime )
{
st_atime = newAtime ;
}
int Stat::getAtime()
{
return st_atime ;
}
void Stat::setMtime( int newMtime )
{
st_mtime = newMtime ;
}
int Stat::getMtime()
{
return st_mtime ;
}
void Stat::setCtime( int newCtime )
{
st_ctime = newCtime ;
}
int Stat::getCtime()
{
return st_ctime ;
}
void Stat::copyIndexNode(IndexNode& indexNode )
{
st_mode = indexNode.getMode() ;
st_nlink = indexNode.getNlink() ;
st_uid = indexNode.getUid() ;
st_uid = indexNode.getGid() ;
st_size = indexNode.getSize() ;
st_atime = indexNode.getAtime() ;
st_mtime = indexNode.getMtime() ;
st_ctime = indexNode.getCtime() ;
}