1 | /* $Id: scmdiff.h 106061 2024-09-16 14:03:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT Testcase / Tool - Source Code Massager Diff Code.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2010-2024 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | */
|
---|
27 |
|
---|
28 | #ifndef VBOX_INCLUDED_SRC_bldprogs_scmdiff_h
|
---|
29 | #define VBOX_INCLUDED_SRC_bldprogs_scmdiff_h
|
---|
30 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
31 | # pragma once
|
---|
32 | #endif
|
---|
33 |
|
---|
34 | #include <iprt/stream.h>
|
---|
35 | #include "scmstream.h"
|
---|
36 |
|
---|
37 | RT_C_DECLS_BEGIN
|
---|
38 |
|
---|
39 | /**
|
---|
40 | * Diff state.
|
---|
41 | */
|
---|
42 | typedef struct SCMDIFFSTATE
|
---|
43 | {
|
---|
44 | size_t cDiffs;
|
---|
45 | const char *pszFilename;
|
---|
46 |
|
---|
47 | PSCMSTREAM pLeft;
|
---|
48 | PSCMSTREAM pRight;
|
---|
49 |
|
---|
50 | /** Whether to ignore end of line markers when diffing. */
|
---|
51 | bool fIgnoreEol;
|
---|
52 | /** Whether to ignore trailing whitespace. */
|
---|
53 | bool fIgnoreTrailingWhite;
|
---|
54 | /** Whether to ignore leading whitespace. */
|
---|
55 | bool fIgnoreLeadingWhite;
|
---|
56 | /** Whether to print special characters in human readable form or not. */
|
---|
57 | bool fSpecialChars;
|
---|
58 | /** The tab size. */
|
---|
59 | size_t cchTab;
|
---|
60 | /** Where to push the diff. */
|
---|
61 | PRTSTREAM pDiff;
|
---|
62 | } SCMDIFFSTATE;
|
---|
63 | /** Pointer to a diff state. */
|
---|
64 | typedef SCMDIFFSTATE *PSCMDIFFSTATE;
|
---|
65 |
|
---|
66 |
|
---|
67 | size_t ScmDiffStreams(const char *pszFilename, PSCMSTREAM pLeft, PSCMSTREAM pRight, bool fIgnoreEol,
|
---|
68 | bool fIgnoreLeadingWhite, bool fIgnoreTrailingWhite, bool fSpecialChars,
|
---|
69 | size_t cchTab, PRTSTREAM pDiff);
|
---|
70 |
|
---|
71 | RT_C_DECLS_END
|
---|
72 |
|
---|
73 | #endif /* !VBOX_INCLUDED_SRC_bldprogs_scmdiff_h */
|
---|
74 |
|
---|