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
|
// **********************************************************************
//
// Copyright (c) 2003-2004 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#ifndef ICE_PATCH2_UTIL_H
#define ICE_PATCH2_UTIL_H
#include <Ice/Ice.h>
#include <IcePatch2/FileInfo.h>
namespace IcePatch2
{
ICE_PATCH2_API std::string lastError();
ICE_PATCH2_API std::string bytesToString(const Ice::ByteSeq&);
ICE_PATCH2_API Ice::ByteSeq stringToBytes(const std::string&);
ICE_PATCH2_API std::string normalize(const std::string&);
ICE_PATCH2_API std::string getSuffix(const std::string&);
ICE_PATCH2_API std::string getWithoutSuffix(const std::string&);
ICE_PATCH2_API bool ignoreSuffix(const std::string&);
ICE_PATCH2_API std::string getBasename(const std::string&);
ICE_PATCH2_API std::string getDirname(const std::string&);
ICE_PATCH2_API void remove(const std::string&);
ICE_PATCH2_API void removeRecursive(const std::string&);
ICE_PATCH2_API Ice::StringSeq readDirectory(const std::string&);
ICE_PATCH2_API void createDirectoryRecursive(const std::string&);
ICE_PATCH2_API void compressBytesToFile(const std::string&, const Ice::ByteSeq&, Ice::Int);
ICE_PATCH2_API void decompressFile(const std::string&);
struct FileInfoEqual: public std::binary_function<const FileInfo&, const FileInfo&, bool>
{
bool
operator()(const FileInfo& lhs, const FileInfo& rhs)
{
return lhs.path == rhs.path && lhs.checksum < rhs.checksum;
//
// We don't take the size int account, as it might not be set
// if no compressed file is available.
//
}
};
struct FileInfoLess: public std::binary_function<const FileInfo&, const FileInfo&, bool>
{
bool
operator()(const FileInfo& lhs, const FileInfo& rhs)
{
if(lhs.path < rhs.path)
{
return true;
}
else if(rhs.path < lhs.path)
{
return false;
}
return lhs.checksum < rhs.checksum;
//
// We don't take the size int account, as it might not be set
// if no compressed file is available.
//
}
};
ICE_PATCH2_API void getFileInfoSeq(const std::string&, FileInfoSeq&, bool, bool, bool);
ICE_PATCH2_API void saveFileInfoSeq(const std::string&, const FileInfoSeq&);
ICE_PATCH2_API void loadFileInfoSeq(const std::string&, FileInfoSeq&);
ICE_PATCH2_API std::ostream& operator<<(std::ostream&, const FileInfo&);
ICE_PATCH2_API std::istream& operator>>(std::istream&, FileInfo&);
struct FileTree1
{
FileInfoSeq files;
Ice::ByteSeq checksum;
};
typedef std::vector<FileTree1> FileTree1Seq;
struct FileTree0
{
FileTree1Seq nodes;
Ice::ByteSeq checksum;
};
ICE_PATCH2_API void getFileTree1(const FileInfoSeq&, FileTree1&);
ICE_PATCH2_API void getFileTree0(const FileInfoSeq&, FileTree0&);
}
#endif
|