-
-
Notifications
You must be signed in to change notification settings - Fork 9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[JENKINS-41516] Add script console listener (alternative/extended pro…
…posal) (#7056) * Set location for listener * Add ScriptListener * Remove debugging statements * Add listener for CLI * Add new listener for other sources * Simplify listener * Fix whitespace and comments * Update core/src/main/java/hudson/cli/GroovyCommand.java Co-authored-by: Wadeck Follonier <[email protected]> * Add precise origins; Correctly log CLI input * Add LoggingGroovySh as suggested by @daniel-beck * Add ScriptListener Tests * Add basic default listener that just logs * WIP Script Listener * Cleaner ScriptListener API * Add license * Cleaner Binding stringification * Note TODO * Add Object feature parameters * Thanks Checkstyle * Thanks Spotbugs * Simplify test, make it pass again * Add since TODO * No mocking, use CLICommandInvoker for CLI commands * Minor cleanup * Fix imports * So far, #onScriptDefinition would be unused, so remove it * Checkstyle * Add test for DefaultScriptListener * Nicer message for the (hopefully rare) case of anon script execution * More thoroughly test logging * Remove obsolete TODO --------- Co-authored-by: Meiswinkel, Jan SF/HZA-ZC2S <[email protected]> Co-authored-by: Jan Meiswinkel <[email protected]> Co-authored-by: meiswjn <[email protected]> Co-authored-by: Daniel Beck <[email protected]> Co-authored-by: Wadeck Follonier <[email protected]> Co-authored-by: Basil Crow <[email protected]>
- Loading branch information
1 parent
32834c5
commit 270062a
Showing
7 changed files
with
511 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67 changes: 67 additions & 0 deletions
67
core/src/main/java/jenkins/util/DefaultScriptListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* The MIT License | ||
* | ||
* Copyright (c) 2022 CloudBees, Inc. | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
*/ | ||
|
||
package jenkins.util; | ||
|
||
import edu.umd.cs.findbugs.annotations.NonNull; | ||
import groovy.lang.Binding; | ||
import hudson.Extension; | ||
import hudson.model.User; | ||
import java.util.logging.Level; | ||
import java.util.logging.Logger; | ||
import org.codehaus.groovy.runtime.InvokerHelper; | ||
import org.kohsuke.accmod.Restricted; | ||
import org.kohsuke.accmod.restrictions.NoExternalUse; | ||
|
||
/** | ||
* Basic default implementation of {@link jenkins.util.ScriptListener} that just logs. | ||
* | ||
* @since TODO | ||
*/ | ||
@Extension | ||
@Restricted(NoExternalUse.class) | ||
public class DefaultScriptListener implements ScriptListener { | ||
public static final Logger LOGGER = Logger.getLogger(DefaultScriptListener.class.getName()); | ||
|
||
@Override | ||
public void onScriptExecution(String script, Binding binding, @NonNull Object feature, Object context, @NonNull String correlationId, User user) { | ||
String userFragment = user == null ? " (no user)" : " by user: '" + user + "'"; | ||
LOGGER.log(Level.FINE, LOGGER.isLoggable(Level.FINEST) ? new Exception() : null, | ||
() -> "Execution of script: '" + script + "' with binding: '" + stringifyBinding(binding) + "' in feature: '" + feature + "' and context: '" + context + "' with correlation: '" + correlationId + "'" + userFragment); | ||
} | ||
|
||
@Override | ||
public void onScriptOutput(String output, @NonNull Object feature, Object context, @NonNull String correlationId, User user) { | ||
String userFragment = user == null ? " (no user)" : " for user: '" + user + "'"; | ||
LOGGER.log(Level.FINER, LOGGER.isLoggable(Level.FINEST) ? new Exception() : null, | ||
() -> "Script output: '" + output + "' in feature: '" + feature + "' and context: '" + context + "' with correlation: '" + correlationId + "'" + userFragment); | ||
} | ||
|
||
private static String stringifyBinding(Binding binding) { | ||
if (binding == null) { | ||
return null; | ||
} | ||
return InvokerHelper.toString(binding.getVariables()); | ||
} | ||
} |
Oops, something went wrong.