summaryrefslogtreecommitdiff
path: root/shared/file_id.h
blob: d00ca20a2b73cfecb56eda90391eb96bb7546895 (plain)
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
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html       *
// * Copyright (C) 2008-2010 ZenJu (zhnmju123 AT gmx.de)                    *
// **************************************************************************
//
#ifndef FILEID_H_INCLUDED
#define FILEID_H_INCLUDED

#include <wx/stream.h>
#include "zstring.h"

#ifdef FFS_WIN
#elif defined FFS_LINUX
#include <sys/stat.h>
#endif


//unique file identifier
namespace util
{
class FileID
{
public:
    //standard copy constructor and assignment operator are okay!

    FileID(wxInputStream& stream);  //read
    void toStream(wxOutputStream& stream) const; //write

    bool isNull() const;
    bool operator==(const FileID& rhs) const;
    bool operator!=(const FileID& rhs) const;
    bool operator<(const FileID& rhs) const;

    FileID();
#ifdef FFS_WIN
    typedef unsigned long DWORD_FFS; //we don't want do include "windows.h" or "<wx/msw/wrapwin.h>" here, do we?

    FileID(DWORD_FFS dwVolumeSN,
           DWORD_FFS fileIndexHi,
           DWORD_FFS fileIndexLo);
#elif defined FFS_LINUX
    FileID(dev_t devId,
           ino_t inId);
#endif
private:
#ifdef FFS_WIN
    DWORD_FFS dwVolumeSerialNumber;
    DWORD_FFS nFileIndexHigh;
    DWORD_FFS nFileIndexLow;
#elif defined FFS_LINUX
    dev_t deviceId;
    ino_t inodeId;
#endif
};

//get unique file id (symbolic link handling: opens the link!!!)
//error condition: returns FileID ()
FileID retrieveFileID(const Zstring& filename);

//test whether two distinct paths point to the same file or directory:
//      true: paths point to same files/dirs
//      false: error occurred OR point to different files/dirs
bool sameFileSpecified(const Zstring& file1, const Zstring& file2);
}



















//---------------Inline Implementation---------------------------------------------------
#ifdef FFS_WIN
inline
util::FileID::FileID() :
    dwVolumeSerialNumber(0),
    nFileIndexHigh(0),
    nFileIndexLow(0) {}

inline
util::FileID::FileID(DWORD_FFS dwVolumeSN,
                        DWORD_FFS fileIndexHi,
                        DWORD_FFS fileIndexLo) :
    dwVolumeSerialNumber(dwVolumeSN),
    nFileIndexHigh(fileIndexHi),
    nFileIndexLow(fileIndexLo) {}

inline
bool util::FileID::isNull() const
{
    return dwVolumeSerialNumber == 0 &&
           nFileIndexHigh       == 0 &&
           nFileIndexLow        == 0;
}

inline
bool util::FileID::operator==(const FileID& rhs) const
{
    return dwVolumeSerialNumber == rhs.dwVolumeSerialNumber &&
           nFileIndexHigh       == rhs.nFileIndexHigh       &&
           nFileIndexLow        == rhs.nFileIndexLow;
}

inline
bool util::FileID::operator<(const FileID& rhs) const
{
    if (dwVolumeSerialNumber != rhs.dwVolumeSerialNumber)
        return dwVolumeSerialNumber < rhs.dwVolumeSerialNumber;

    if (nFileIndexHigh != rhs.nFileIndexHigh)
        return nFileIndexHigh < rhs.nFileIndexHigh;

    return nFileIndexLow < rhs.nFileIndexLow;
}

inline
util::FileID::FileID(wxInputStream& stream)  //read
{
    stream.Read(&dwVolumeSerialNumber, sizeof(dwVolumeSerialNumber));
    stream.Read(&nFileIndexHigh,       sizeof(nFileIndexHigh));
    stream.Read(&nFileIndexLow,        sizeof(nFileIndexLow));
}

inline
void util::FileID::toStream(wxOutputStream& stream) const //write
{
    stream.Write(&dwVolumeSerialNumber, sizeof(dwVolumeSerialNumber));
    stream.Write(&nFileIndexHigh,       sizeof(nFileIndexHigh));
    stream.Write(&nFileIndexLow,        sizeof(nFileIndexLow));
}

#elif defined FFS_LINUX
inline
util::FileID::FileID() :
    deviceId(0),
    inodeId(0) {}

inline
util::FileID::FileID(dev_t devId,
                        ino_t inId) :
    deviceId(devId),
    inodeId(inId) {}

inline
bool util::FileID::isNull() const
{
    return deviceId == 0 &&
           inodeId  == 0;
}

inline
bool util::FileID::operator==(const FileID& rhs) const
{
    return deviceId == rhs.deviceId &&
           inodeId  == rhs.inodeId;
}

inline
bool util::FileID::operator<(const FileID& rhs) const
{
    if (deviceId != rhs.deviceId)
        return deviceId < rhs.deviceId;

    return inodeId < rhs.inodeId;
}

inline
util::FileID::FileID(wxInputStream& stream)  //read
{
    stream.Read(&deviceId, sizeof(deviceId));
    stream.Read(&inodeId,  sizeof(inodeId));
}

inline
void util::FileID::toStream(wxOutputStream& stream) const //write
{
    stream.Write(&deviceId, sizeof(deviceId));
    stream.Write(&inodeId,  sizeof(inodeId));
}
#endif
inline
bool util::FileID::operator!=(const FileID& rhs) const
{
    return !(*this == rhs);
}

#endif // FILEID_H_INCLUDED
bgstack15