summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch/Calc.cpp
blob: c6a890367804e730d58467dad11193198bdc97a3 (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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
// **********************************************************************
//
// Copyright (c) 2004
// ZeroC, Inc.
// Billerica, MA, USA
//
// All Rights Reserved.
//
// Ice is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License version 2 as published by
// the Free Software Foundation.
//
// **********************************************************************

#include <Ice/Ice.h>
#include <IcePatch/Util.h>
#include <set>
#ifdef _WIN32
#   include <direct.h>
#endif

using namespace std;
using namespace Ice;
using namespace IcePatch;

class CalcApp : public Application
{
public:

    void usage();
    virtual int run(int, char*[]);

private:

    void update(const string&);
    Long compare(const string&, const string&);

    bool _totals;
};

void
CalcApp::usage()
{
    cerr << "Usage: " << appName() << " [options] DIR [OLD_DIR OLD_DIR ...]\n";
    cerr <<     
        "Options:\n"
        "-h, --help           Show this message.\n"
        "-v, --version        Display the Ice version.\n"
        "-t                   Show totals.\n"
        ;
}

int
CalcApp::run(int argc, char* argv[])
{
    string dataDir;
    vector<string> oldDataDirs;
    _totals = false;

    int i;
    for(i = 1; i < argc; ++i)
    {
        if(strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "--help") == 0)
        {
            usage();
            return EXIT_SUCCESS;
        }
        else if(strcmp(argv[i], "-v") == 0 || strcmp(argv[i], "--version") == 0)
        {
            cout << ICE_STRING_VERSION << endl;
            return EXIT_SUCCESS;
        }
        else if(strcmp(argv[i], "-t") == 0)
        {
            _totals = true;
        }
        else if(argv[i][0] == '-')
        {
            cerr << argv[0] << ": unknown option `" << argv[i] << "'" << endl;
            usage();
            return EXIT_FAILURE;
        }
        else
        {
            if(dataDir.empty())
            {
                dataDir = argv[i];
            }
            else
            {
                oldDataDirs.push_back(argv[i]);
            }
        }
    }

    if(dataDir.empty())
    {
        cerr << argv[0] << ": no data directory specified" << endl;
        usage();
        return EXIT_FAILURE;
    }

    if(dataDir == ".")
    {
#ifdef _WIN32
        char cwd[_MAX_PATH];
        _getcwd(cwd, _MAX_PATH);
#else
        char cwd[PATH_MAX];
        getcwd(cwd, PATH_MAX);
#endif
        dataDir = cwd;
    }

    //
    // Update the data directory (create .bz2 and .md5 files).
    //
    cout << "Updating data directory...";
    if(_totals)
    {
        cout << endl;
    }
    else
    {
        cout << flush;
    }

    try
    {
        update(dataDir);
    }
    catch(const FileAccessException& ex)
    {
        cerr << endl << "exception during update:\n" << ex << ":\n" << ex.reason << endl;
        return EXIT_FAILURE;
    }
    catch(const Exception& ex)
    {
        cerr << endl << "exception during update:\n" << ex << endl;
        return EXIT_FAILURE;
    }

    if(!_totals)
    {
        cout << " done." << endl;
    }

    if(!oldDataDirs.empty())
    {
        for(vector<string>::iterator p = oldDataDirs.begin(); p != oldDataDirs.end(); ++p)
        {
            cout << "Comparing with " << *p << "...";
            if(_totals)
            {
                cout << endl;
            }
            else
            {
                cout << flush;
            }

            try
            {
                compare(*p, dataDir);
            }
            catch(const FileAccessException& ex)
            {
                cerr << endl << "exception during comparison:\n" << ex << ":\n" << ex.reason << endl;
                return EXIT_FAILURE;
            }
            catch(const Exception& ex)
            {
                cerr << endl << "exception during comparison:\n" << ex << endl;
                return EXIT_FAILURE;
            }

            if(!_totals)
            {
                cout << " done." << endl;
            }
        }
    }

    return EXIT_SUCCESS;
}

void
CalcApp::update(const string& dir)
{
    StringSeq contents = readDirectory(dir);
    StringSeq filteredContents;
    StringSeq::const_iterator p;

    for(p = contents.begin(); p != contents.end(); ++p)
    {
        FileInfo info = getFileInfo(*p, true);
        if(info.type == FileTypeDirectory)
        {
            //
            // Depth-first traversal.
            //
            update(*p);
            filteredContents.push_back(*p);
        }
        else
        {
            if(ignoreSuffix(*p))
            {
                //
                // Check for orphans (i.e., bz2 or md5 files for which the original file no longer exists).
                //
                string orphan = removeSuffix(*p);
                FileInfo infoOrphan = getFileInfo(orphan, false);
                if(infoOrphan.type == FileTypeNotExist)
                {
                    removeRecursive(*p, 0);
                }
            }
            else
            {
                //
                // Create .bz2 file if necessary.
                //
                FileInfo infoBZ2 = getFileInfo(*p + ".bz2", false);
                if(infoBZ2.type != FileTypeRegular || infoBZ2.time <= info.time)
                {
                    createBZ2(*p, 0);
                }

                //
                // Create .md5 file if necessary.
                //
                FileInfo infoMD5 = getFileInfo(*p + ".md5", false);
                if(infoMD5.type != FileTypeRegular || infoMD5.time <= info.time)
                {
                    createMD5(*p, 0);
                }

                filteredContents.push_back(*p);
            }
        }
    }

    //
    // Create .md5 for directory if necessary.
    //
    FileInfo info = getFileInfo(dir, true);
    FileInfo infoMD5 = getFileInfo(dir + ".md5", false);
    if(infoMD5.type != FileTypeRegular || infoMD5.time <= info.time)
    {
        createMD5(dir, 0);
    }

    //
    // Compute totals if necessary.
    //
    FileInfo infoTot = getFileInfo(dir + ".tot", false);
    if(infoTot.type != FileTypeRegular || infoTot.time <= info.time)
    {
        Long total = 0;
        ByteSeq md5; // Empty
        for(p = filteredContents.begin(); p != filteredContents.end(); ++p)
        {
            FileInfo info = getFileInfo(*p, true);
            if(info.type == FileTypeDirectory)
            {
                TotalMap m = getTotalMap(communicator(), *p);
                TotalMap::iterator q = m.find(md5);
                assert(q != m.end());
                total += q->second;
            }
            else
            {
                FileInfo infoBZ2 = getFileInfo(*p + ".bz2", true);
                assert(infoBZ2.type == FileTypeRegular);
                total += infoBZ2.size;
            }
        }

        TotalMap totals = getTotalMap(communicator(), dir);
        TotalMap::iterator q = totals.find(md5);
        if(q != totals.end())
        {
            q->second = total;
        }
        else
        {
            totals.insert(TotalMap::value_type(md5, total));
        }
        if(_totals)
        {
            cout << " " << dir << " (" << total << " bytes)" << endl;
        }
        putTotalMap(communicator(), dir, totals);
    }
    else if(_totals)
    {
        TotalMap totals = getTotalMap(communicator(), dir);
        ByteSeq md5; // Empty
        TotalMap::iterator q = totals.find(md5);
        assert(q != totals.end());
        cout << " " << dir << " (" << q->second << " bytes)" << endl;
    }
}

#ifdef _WIN32

typedef set<string, CICompare> EntrySet;

#else

typedef set<string> EntrySet;

#endif

Long
CalcApp::compare(const string& oldDir, const string& newDir)
{
    Long total = 0;

    ByteSeq oldMD5 = getMD5(oldDir);
    ByteSeq newMD5 = getMD5(newDir);
    if(oldMD5 != newMD5)
    {
        StringSeq oldContents = readDirectory(oldDir, ".");
        StringSeq newContents = readDirectory(newDir, ".");
        StringSeq::const_iterator p;

        EntrySet newEntries;
        copy(newContents.begin(), newContents.end(), inserter(newEntries, newEntries.begin()));

        for(p = oldContents.begin(); p != oldContents.end(); ++p)
        {
            if(ignoreSuffix(*p))
            {
                continue;
            }

            string oldEntry = oldDir + "/" + *p;
            string newEntry = newDir + "/" + *p;
            FileInfo oldInfo = getFileInfo(oldEntry, true);
            FileInfo newInfo = getFileInfo(newEntry, false);

            if(newInfo.type == FileTypeNotExist)
            {
                continue;
            }

            if(oldInfo.type == FileTypeDirectory)
            {
                if(newInfo.type == FileTypeDirectory)
                {
                    total += compare(oldEntry, newEntry);
                }
                else
                {
                    FileInfo infoBZ2 = getFileInfo(newEntry + ".bz2", true);
                    total += infoBZ2.size;
                }
            }
            else
            {
                if(newInfo.type == FileTypeDirectory)
                {
                    TotalMap totals = getTotalMap(communicator(), newEntry);
                    ByteSeq empty;
                    TotalMap::const_iterator q = totals.find(empty);
                    if(q != totals.end())
                    {
                        total += q->second;
                    }
                }
                else
                {
                    ByteSeq oldEntryMD5 = getMD5(oldEntry);
                    ByteSeq newEntryMD5 = getMD5(newEntry);
                    if(oldEntryMD5 != newEntryMD5)
                    {
                        FileInfo newEntryBZ2 = getFileInfo(newEntry + ".bz2", true);
                        total += newEntryBZ2.size;
                    }
                }
            }

            newEntries.erase(*p);
        }

        for(EntrySet::iterator q = newEntries.begin(); q != newEntries.end(); ++q)
        {
            if(ignoreSuffix(*q))
            {
                continue;
            }

            string entry = newDir + "/" + *q;
            FileInfo info = getFileInfo(entry, true);
            if(info.type == FileTypeDirectory)
            {
                TotalMap totals = getTotalMap(communicator(), entry);
                ByteSeq empty;
                TotalMap::const_iterator r = totals.find(empty);
                if(r != totals.end())
                {
                    total += r->second;
                }
            }
            else
            {
                assert(info.type == FileTypeRegular);
                FileInfo infoBZ2 = getFileInfo(entry + ".bz2", true);
                total += infoBZ2.size;
            }
        }
    }

    //
    // An MD5 full of zeros indicates an old directory that is empty.
    // We ignore this case because the difference is simply the size of
    // the current directory (i.e., an empty MD5).
    //
    ByteSeq zeroMD5(16, 0);
    if(oldMD5 != zeroMD5)
    {
        TotalMap totals = getTotalMap(communicator(), newDir);
        TotalMap::iterator q = totals.find(oldMD5);
        if(q != totals.end())
        {
            q->second = total;
        }
        else
        {
            totals.insert(TotalMap::value_type(oldMD5, total));
        }
        putTotalMap(communicator(), newDir, totals);
    }

    if(_totals)
    {
        cout << " " << newDir << " (" << total << " bytes)" << endl;
    }

    return total;
}

int
main(int argc, char* argv[])
{
    CalcApp app;
    return app.main(argc, argv);
}