author | naoto |
Tue, 09 Jul 2019 08:05:38 -0700 | |
changeset 55627 | 9c1885fb2a42 |
parent 49186 | b8bfadfacded |
permissions | -rw-r--r-- |
33097 | 1 |
/* |
49016
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. |
33097 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
49016
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
24 |
|
33097 | 25 |
#include "precompiled.hpp" |
49016
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
26 |
#include "logging/logSelectionList.hpp" |
33097 | 27 |
#include "logging/logTagSet.hpp" |
28 |
#include "runtime/arguments.hpp" |
|
29 |
#include "runtime/os.inline.hpp" |
|
30 |
||
49016
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
31 |
static const char* DefaultExpressionString = "all"; |
33097 | 32 |
|
49016
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
33 |
bool LogSelectionList::verify_selections(outputStream* out) const { |
40884
0e28c526f5d3
8150894: Unused -Xlog tag sequences are silently ignored.
mlarsson
parents:
35852
diff
changeset
|
34 |
bool valid = true; |
0e28c526f5d3
8150894: Unused -Xlog tag sequences are silently ignored.
mlarsson
parents:
35852
diff
changeset
|
35 |
|
49016
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
36 |
for (size_t i = 0; i < _nselections; i++) { |
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
37 |
if (_selections[i].tag_sets_selected() == 0) { |
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
38 |
// Return immediately unless all invalid selections should be listed |
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
39 |
if (out == NULL) { |
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
40 |
return false; |
40884
0e28c526f5d3
8150894: Unused -Xlog tag sequences are silently ignored.
mlarsson
parents:
35852
diff
changeset
|
41 |
} |
0e28c526f5d3
8150894: Unused -Xlog tag sequences are silently ignored.
mlarsson
parents:
35852
diff
changeset
|
42 |
|
49180
9637557def32
8190346: improve unified JVM logging help message and warnings
mlarsson
parents:
49016
diff
changeset
|
43 |
out->print("No tag set matches selection:"); |
40884
0e28c526f5d3
8150894: Unused -Xlog tag sequences are silently ignored.
mlarsson
parents:
35852
diff
changeset
|
44 |
valid = false; |
0e28c526f5d3
8150894: Unused -Xlog tag sequences are silently ignored.
mlarsson
parents:
35852
diff
changeset
|
45 |
|
49016
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
46 |
char buf[256]; |
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
47 |
_selections[i].describe_tags(buf, sizeof(buf)); |
49180
9637557def32
8190346: improve unified JVM logging help message and warnings
mlarsson
parents:
49016
diff
changeset
|
48 |
out->print(" %s. ", buf); |
9637557def32
8190346: improve unified JVM logging help message and warnings
mlarsson
parents:
49016
diff
changeset
|
49 |
|
9637557def32
8190346: improve unified JVM logging help message and warnings
mlarsson
parents:
49016
diff
changeset
|
50 |
_selections[i].suggest_similar_matching(out); |
9637557def32
8190346: improve unified JVM logging help message and warnings
mlarsson
parents:
49016
diff
changeset
|
51 |
out->cr(); |
40884
0e28c526f5d3
8150894: Unused -Xlog tag sequences are silently ignored.
mlarsson
parents:
35852
diff
changeset
|
52 |
} |
0e28c526f5d3
8150894: Unused -Xlog tag sequences are silently ignored.
mlarsson
parents:
35852
diff
changeset
|
53 |
} |
0e28c526f5d3
8150894: Unused -Xlog tag sequences are silently ignored.
mlarsson
parents:
35852
diff
changeset
|
54 |
return valid; |
0e28c526f5d3
8150894: Unused -Xlog tag sequences are silently ignored.
mlarsson
parents:
35852
diff
changeset
|
55 |
} |
0e28c526f5d3
8150894: Unused -Xlog tag sequences are silently ignored.
mlarsson
parents:
35852
diff
changeset
|
56 |
|
49016
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
57 |
|
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
58 |
bool LogSelectionList::parse(const char* str, outputStream* errstream) { |
33097 | 59 |
bool success = true; |
60 |
if (str == NULL || strcmp(str, "") == 0) { |
|
61 |
str = DefaultExpressionString; |
|
62 |
} |
|
63 |
char* copy = os::strdup_check_oom(str, mtLogging); |
|
64 |
// Split string on commas |
|
65 |
for (char *comma_pos = copy, *cur = copy; success && comma_pos != NULL; cur = comma_pos + 1) { |
|
49016
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
66 |
if (_nselections == MaxSelections) { |
33097 | 67 |
if (errstream != NULL) { |
49016
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
68 |
errstream->print_cr("Can not have more than " SIZE_FORMAT " log selections in a single configuration.", |
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
69 |
MaxSelections); |
33097 | 70 |
} |
71 |
success = false; |
|
72 |
break; |
|
73 |
} |
|
74 |
||
75 |
comma_pos = strchr(cur, ','); |
|
76 |
if (comma_pos != NULL) { |
|
77 |
*comma_pos = '\0'; |
|
78 |
} |
|
79 |
||
49016
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
80 |
LogSelection selection = LogSelection::parse(cur, errstream); |
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
81 |
if (selection == LogSelection::Invalid) { |
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
82 |
success = false; |
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
83 |
break; |
33097 | 84 |
} |
49016
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
85 |
_selections[_nselections++] = selection; |
33097 | 86 |
} |
87 |
||
34316
4d876653d940
8142952: Unified Logging framework does not allow multiple -Xlog: arguments.
mlarsson
parents:
33097
diff
changeset
|
88 |
os::free(copy); |
33097 | 89 |
return success; |
90 |
} |
|
91 |
||
49016
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
92 |
LogLevelType LogSelectionList::level_for(const LogTagSet& ts) const { |
34316
4d876653d940
8142952: Unified Logging framework does not allow multiple -Xlog: arguments.
mlarsson
parents:
33097
diff
changeset
|
93 |
// Return NotMentioned if the given tagset isn't covered by this expression. |
4d876653d940
8142952: Unified Logging framework does not allow multiple -Xlog: arguments.
mlarsson
parents:
33097
diff
changeset
|
94 |
LogLevelType level = LogLevel::NotMentioned; |
49016
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
95 |
for (size_t i= 0; i < _nselections; i++) { |
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
96 |
if (_selections[i].selects(ts)) { |
ea85eed8b012
8196783: Refactor LogTagLevelExpression into separate classes
mlarsson
parents:
47216
diff
changeset
|
97 |
level = _selections[i].level(); |
33097 | 98 |
} |
99 |
} |
|
100 |
return level; |
|
101 |
} |