forked from root-project/roottest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.cc
162 lines (130 loc) · 4.02 KB
/
utils.cc
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
// Utilities to be used by some scripts.
// To load them up copy the rootlogon_template.C into the current directory.
#ifdef WIN32
#include <windows.h>
#endif
#include <stdio.h>
#include "snprintf.h"
#include "TError.h"
#include "TSystem.h"
#include "Riostream.h"
// This redirect the root warning to be on stdout instead of stderr.
//______________________________________________________________________________
void StdoutDebugPrint(const char *fmt, ...)
{
// Print debugging message to stderr and, on Windows, to the system debugger.
static Int_t buf_size = 2048;
static char *buf = 0;
va_list arg_ptr;
va_start(arg_ptr, fmt);
again:
if (!buf)
buf = new char[buf_size];
int n = vsnprintf(buf, buf_size, fmt, arg_ptr);
if (n == -1 || n >= buf_size) {
buf_size *= 2;
delete [] buf;
buf = 0;
goto again;
}
va_end(arg_ptr);
fprintf(stdout, "%s", buf);
#ifdef WIN32
::OutputDebugString(buf);
#endif
}
//______________________________________________________________________________
void StdoutErrorHandler(int level, Bool_t abort, const char *location, const char *msg)
{
// The default error handler function. It prints the message on stderr and
// if abort is set it aborts the application.
if (level < gErrorIgnoreLevel)
return;
const char *type = 0;
if (level >= kInfo)
type = "Info";
if (level >= kWarning)
type = "Warning";
if (level >= kError)
type = "Error";
if (level >= kBreak)
type = "\n *** Break ***";
if (level >= kSysError)
type = "SysError";
if (level >= kFatal)
type = "Fatal";
if (level >= kBreak && level < kSysError)
StdoutDebugPrint("%s %s\n", type, msg);
else if (!location || strlen(location) == 0)
StdoutDebugPrint("%s: %s\n", type, msg);
else
StdoutDebugPrint("%s in <%s>: %s\n", type, location, msg);
fflush(stdout);
if (abort) {
StdoutDebugPrint("aborting\n");
fflush(stdout);
if (gSystem) {
gSystem->StackTrace();
gSystem->Abort();
} else
::abort();
}
}
void SetROOTMessageToStdout() {
SetErrorHandler(StdoutErrorHandler);
}
Bool_t CompareLines(const char*left,const char*right,UInt_t maxlen)
{
// Compare two string, ignore the difference between MSDOS and linux style
// of line ending
UInt_t i = 0;
Bool_t result = true;
while (i<maxlen && left[i] && right[i]) {
if (left[i]!=right[i]) {
if (left[i]==0x0a && left[i+1]==0) {
if ((right[i]==0x0d && right[i+1]==0x0a && right[i+2] == 0) ||
(right[i]==0x0a && right[i+1]==0) || right[i]==0) {
return kTRUE;
}
}
if (right[i]==0x0a && right[i+1]==0) {
if ((left[i]==0x0d && left[i+1]==0x0a && left[i+2] == 0) ||
(left[i]==0x0a && left[i+1]==0) || left[i]==0) {
return kTRUE;
}
}
return kFALSE;
}
++i;
}
return result;
}
Bool_t ComparePostscript(const char *from, const char *to)
{
FILE *left = fopen(from,"r");
FILE *right = fopen(to,"r");
if (left==0) std::cout << "Could not open " << from << std::endl;
if (right==0) std::cout << "Could not open " << to << std::endl;
if (left==0 || right==0) return false;
char leftbuffer[256];
char rightbuffer[256];
char *lvalue,*rvalue;
Bool_t areEqual = kTRUE;
do {
lvalue = fgets(leftbuffer, sizeof(leftbuffer), left);
rvalue = fgets(rightbuffer, sizeof(rightbuffer), right);
if (lvalue&&rvalue) {
if (strstr(lvalue,"%%CreationDate")
|| strstr(lvalue,"%%Creator")) {
// skip the comment line with the time and date
} else {
areEqual = areEqual && (CompareLines(lvalue,rvalue,sizeof(leftbuffer)));
}
}
if (lvalue&&!rvalue) areEqual = kFALSE;
if (rvalue&&!lvalue) areEqual = kFALSE;
} while(areEqual && lvalue && rvalue);
fclose(left);
fclose(right);
return areEqual;
}