forked from ttsugriy/File-System-Simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStat.java
169 lines (133 loc) · 2.47 KB
/
Stat.java
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
/*
* $Id: Stat.java,v 1.3 2001/10/07 23:48:55 rayo Exp $
*/
/*
* $Log: Stat.java,v $
* Revision 1.3 2001/10/07 23:48:55 rayo
* added author javadoc tag
*
* Revision 1.2 2001/09/27 16:56:12 rayo
* numerous improvements to stat, fstat, etc so that
* ls and mkdir now seem to be working correctly
*
* Revision 1.1 2001/09/27 03:04:22 rayo
* Initial revision
*
*/
/**
* This simulates the unix struct "stat".
* @author Ray Ontko
*/
public class Stat
{
public short st_dev = 0 ;
public short st_ino = 0 ;
public short st_mode = 0 ;
public short st_nlink = 0 ;
public short st_uid = 0 ;
public short st_gid = 0 ;
public short st_rdev = 0 ;
public int st_size = 0 ;
public int st_atime = 0 ;
public int st_mtime = 0 ;
public int st_ctime = 0 ;
public void setDev( short newDev )
{
st_dev = newDev ;
}
public short getDev()
{
return st_dev ;
}
public void setIno( short newIno )
{
st_ino = newIno ;
}
public short getIno()
{
return st_ino ;
}
public void setMode( short newMode )
{
st_mode = newMode ;
}
public short getMode()
{
return st_mode ;
}
public void setNlink( short newNlink )
{
st_nlink = newNlink ;
}
public short getNlink()
{
return st_nlink ;
}
public void setUid( short newUid )
{
st_uid = newUid ;
}
public short getUid()
{
return st_uid ;
}
public void setGid( short newGid )
{
st_gid = newGid ;
}
public short getGid()
{
return st_gid ;
}
public void setRdev( short newRdev )
{
st_rdev = newRdev ;
}
public short getRdev()
{
return st_rdev ;
}
public void setSize( int newSize )
{
st_size = newSize ;
}
public int getSize()
{
return st_size ;
}
public void setAtime( int newAtime )
{
st_atime = newAtime ;
}
public int getAtime()
{
return st_atime ;
}
public void setMtime( int newMtime )
{
st_mtime = newMtime ;
}
public int getMtime()
{
return st_mtime ;
}
public void setCtime( int newCtime )
{
st_ctime = newCtime ;
}
public int getCtime()
{
return st_ctime ;
}
public void 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() ;
}
}