hudson.Util.replaceMacro()方法的使用及代码示例

x33g5p2x  于2022-01-31 转载在 其他  
字(8.8k)|赞(0)|评价(0)|浏览(416)

本文整理了Java中hudson.Util.replaceMacro()方法的一些代码示例,展示了Util.replaceMacro()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.replaceMacro()方法的具体详情如下:
包路径:hudson.Util
类名称:Util
方法名:replaceMacro

Util.replaceMacro介绍

[英]Replaces the occurrence of '$key' by resolver.get('key').

Unlike shell, undefined variables are left as-is (this behavior is the same as Ant.)
[中]替换冲突解决程序出现的“$key”。获取('key')。
与shell不同,未定义的变量保持原样(这种行为与Ant相同)

代码示例

代码示例来源:origin: jenkinsci/jenkins

  1. /**
  2. * Expands the variables in the given string by using environment variables represented in 'this'.
  3. */
  4. public String expand(String s) {
  5. return Util.replaceMacro(s, this);
  6. }

代码示例来源:origin: jenkinsci/jenkins

  1. /**
  2. * Resolves environment variables against each other.
  3. */
  4. public static void resolve(Map<String, String> env) {
  5. for (Map.Entry<String,String> entry: env.entrySet()) {
  6. entry.setValue(Util.replaceMacro(entry.getValue(), env));
  7. }
  8. }

代码示例来源:origin: jenkinsci/jenkins

  1. /**
  2. * Replaces the occurrence of '$key' by {@code properties.get('key')}.
  3. *
  4. * <p>
  5. * Unlike shell, undefined variables are left as-is (this behavior is the same as Ant.)
  6. *
  7. */
  8. @Nullable
  9. public static String replaceMacro( @CheckForNull String s, @Nonnull Map<String,String> properties) {
  10. return replaceMacro(s,new VariableResolver.ByMap<String>(properties));
  11. }

代码示例来源:origin: jenkinsci/jenkins

  1. /**
  2. * Performs a variable substitution to the given text and return it.
  3. */
  4. public String substitute(AbstractBuild<?,?> build, String text) {
  5. return Util.replaceMacro(text,createVariableResolver(build));
  6. }

代码示例来源:origin: jenkinsci/jenkins

  1. private File getExeFile(String execName) {
  2. String m2Home = Util.replaceMacro(getHome(),EnvVars.masterEnvVars);
  3. if(Functions.isWindows()) {
  4. File exeFile = new File(m2Home, "bin/" + execName + ".bat");
  5. // since Maven 3.3 .bat files are replaced with .cmd
  6. if (!exeFile.exists()) {
  7. return new File(m2Home, "bin/" + execName + ".cmd");
  8. }
  9. return exeFile;
  10. } else {
  11. return new File(m2Home, "bin/" + execName);
  12. }
  13. }

代码示例来源:origin: jenkinsci/jenkins

  1. /**
  2. * Recursively expands the variables in text and attribute values and return the new DOM.
  3. *
  4. * The expansion uses {@link Util#replaceMacro(String, VariableResolver)}, so any unresolved
  5. * references will be left as-is.
  6. */
  7. public XStreamDOM expandMacro(VariableResolver<String> vars) {
  8. String[] newAttributes = new String[attributes.length];
  9. for (int i=0; i<attributes.length; i+=2) {
  10. newAttributes[i+0] = attributes[i]; // name
  11. newAttributes[i+1] = Util.replaceMacro(attributes[i+1],vars);
  12. }
  13. List<XStreamDOM> newChildren = null;
  14. if (children!=null) {
  15. newChildren = new ArrayList<XStreamDOM>(children.size());
  16. for (XStreamDOM d : children)
  17. newChildren.add(d.expandMacro(vars));
  18. }
  19. return new XStreamDOM(tagName,newAttributes,newChildren,Util.replaceMacro(value,vars));
  20. }

代码示例来源:origin: jenkinsci/jenkins

  1. @Restricted(NoExternalUse.class)
  2. public static String expandVariablesForDirectory(String base, String itemFullName, String itemRootDir) {
  3. return Util.replaceMacro(base, ImmutableMap.of(
  4. "JENKINS_HOME", Jenkins.getInstance().getRootDir().getPath(),
  5. "ITEM_ROOTDIR", itemRootDir,
  6. "ITEM_FULLNAME", itemFullName, // legacy, deprecated
  7. "ITEM_FULL_NAME", itemFullName.replace(':','$'))); // safe, see JENKINS-12251
  8. }

代码示例来源:origin: jenkinsci/gitlab-plugin

  1. private static String replaceMacros(Run<?, ?> build, TaskListener listener, String inputString) {
  2. String returnString = inputString;
  3. if (build != null && inputString != null) {
  4. try {
  5. Map<String, String> messageEnvVars = getEnvVars(build, listener);
  6. returnString = Util.replaceMacro(inputString, messageEnvVars);
  7. } catch (Exception e) {
  8. listener.getLogger().printf("Couldn't replace macros in message: %s%n", e.getMessage());
  9. LOGGER.log(Level.WARNING, "Couldn't replace macros in message", e);
  10. }
  11. }
  12. return returnString;
  13. }

代码示例来源:origin: jenkinsci/jenkins

  1. /**
  2. * Adds key value pairs as "-Dkey=value -Dkey=value ..." by parsing a given string using {@link Properties} with masking.
  3. *
  4. * @param prefix
  5. * The '-D' portion of the example. Defaults to -D if null.
  6. * @param properties
  7. * The persisted form of {@link Properties}. For example, "abc=def\nghi=jkl". Can be null, in which
  8. * case this method becomes no-op.
  9. * @param vr
  10. * {@link VariableResolver} to resolve variables in properties string.
  11. * @param propsToMask
  12. * Set containing key names to mark as masked in the argument list. Key
  13. * names that do not exist in the set will be added unmasked.
  14. * @since 1.378
  15. */
  16. public ArgumentListBuilder addKeyValuePairsFromPropertyString(String prefix, String properties, VariableResolver<String> vr, Set<String> propsToMask) throws IOException {
  17. if(properties==null) return this;
  18. properties = Util.replaceMacro(properties, propertiesGeneratingResolver(vr));
  19. for (Entry<Object,Object> entry : Util.loadProperties(properties).entrySet()) {
  20. addKeyValuePair(prefix, (String)entry.getKey(), entry.getValue().toString(), (propsToMask == null) ? false : propsToMask.contains(entry.getKey()));
  21. }
  22. return this;
  23. }

代码示例来源:origin: jenkinsci/jenkins

  1. Util.replaceMacro(entry.getValue(), resolver);

代码示例来源:origin: jenkinsci/jenkins

  1. @Override
  2. public FilePath supplySettings(AbstractBuild<?, ?> build, TaskListener listener) {
  3. if (StringUtils.isEmpty(path)) {
  4. return null;
  5. }
  6. try {
  7. EnvVars env = build.getEnvironment(listener);
  8. String targetPath = Util.replaceMacro(this.path, build.getBuildVariableResolver());
  9. targetPath = env.expand(targetPath);
  10. if (IOUtils.isAbsolute(targetPath)) {
  11. return new FilePath(new File(targetPath));
  12. } else {
  13. FilePath mrSettings = build.getModuleRoot().child(targetPath);
  14. FilePath wsSettings = build.getWorkspace().child(targetPath);
  15. try {
  16. if (!wsSettings.exists() && mrSettings.exists()) {
  17. wsSettings = mrSettings;
  18. }
  19. } catch (Exception e) {
  20. throw new IllegalStateException("failed to find settings.xml at: " + wsSettings.getRemote());
  21. }
  22. return wsSettings;
  23. }
  24. } catch (Exception e) {
  25. throw new IllegalStateException("failed to prepare settings.xml");
  26. }
  27. }

代码示例来源:origin: jenkinsci/jenkins

  1. @Override
  2. public FilePath supplySettings(AbstractBuild<?, ?> build, TaskListener listener) {
  3. if (StringUtils.isEmpty(path)) {
  4. return null;
  5. }
  6. try {
  7. EnvVars env = build.getEnvironment(listener);
  8. String targetPath = Util.replaceMacro(this.path, build.getBuildVariableResolver());
  9. targetPath = env.expand(targetPath);
  10. if (IOUtils.isAbsolute(targetPath)) {
  11. return new FilePath(new File(targetPath));
  12. } else {
  13. FilePath mrSettings = build.getModuleRoot().child(targetPath);
  14. FilePath wsSettings = build.getWorkspace().child(targetPath);
  15. try {
  16. if (!wsSettings.exists() && mrSettings.exists()) {
  17. wsSettings = mrSettings;
  18. }
  19. } catch (Exception e) {
  20. throw new IllegalStateException("failed to find settings.xml at: " + wsSettings.getRemote());
  21. }
  22. return wsSettings;
  23. }
  24. } catch (Exception e) {
  25. throw new IllegalStateException("failed to prepare global settings.xml");
  26. }
  27. }

代码示例来源:origin: jenkinsci/jenkins

  1. try (InputStream in = url.openStream()) {
  2. String literal = IOUtils.toString(in,"UTF-8");
  3. rsp.getWriter().println(Util.replaceMacro(literal, Collections.singletonMap("rootURL",req.getContextPath())));

代码示例来源:origin: jenkinsci/jenkins

  1. String targets = Util.replaceMacro(this.targets,vr);
  2. targets = env.expand(targets);
  3. String pom = env.expand(this.pom);

代码示例来源:origin: org.jenkins-ci.main/jenkins-core

  1. /**
  2. * Expands the variables in the given string by using environment variables represented in 'this'.
  3. */
  4. public String expand(String s) {
  5. return Util.replaceMacro(s, this);
  6. }

代码示例来源:origin: org.jenkins-ci.main/jenkins-core

  1. /**
  2. * Resolves environment variables against each other.
  3. */
  4. public static void resolve(Map<String, String> env) {
  5. for (Map.Entry<String,String> entry: env.entrySet()) {
  6. entry.setValue(Util.replaceMacro(entry.getValue(), env));
  7. }
  8. }

代码示例来源:origin: jenkinsci/ghprb-plugin

  1. public static String replaceMacros(Run<?, ?> build, TaskListener listener, String inputString) {
  2. String returnString = inputString;
  3. if (build != null && inputString != null) {
  4. try {
  5. Map<String, String> messageEnvVars = getEnvVars(build, listener);
  6. returnString = Util.replaceMacro(inputString, messageEnvVars);
  7. } catch (Exception e) {
  8. LOGGER.log(Level.SEVERE, "Couldn't replace macros in message: ", e);
  9. }
  10. }
  11. return returnString;
  12. }

代码示例来源:origin: org.jenkins-ci.main/jenkins-core

  1. /**
  2. * Replaces the occurrence of '$key' by <tt>properties.get('key')</tt>.
  3. *
  4. * <p>
  5. * Unlike shell, undefined variables are left as-is (this behavior is the same as Ant.)
  6. *
  7. */
  8. @Nullable
  9. public static String replaceMacro( @CheckForNull String s, @Nonnull Map<String,String> properties) {
  10. return replaceMacro(s,new VariableResolver.ByMap<String>(properties));
  11. }

代码示例来源:origin: org.jvnet.hudson.main/hudson-core

  1. /**
  2. * Performs a variable subsitution to the given text and return it.
  3. */
  4. public String substitute(AbstractBuild<?,?> build, String text) {
  5. return Util.replaceMacro(text,createVariableResolver(build));
  6. }

代码示例来源:origin: org.jenkins-ci.main/jenkins-core

  1. @Restricted(NoExternalUse.class)
  2. public static String expandVariablesForDirectory(String base, String itemFullName, String itemRootDir) {
  3. return Util.replaceMacro(base, ImmutableMap.of(
  4. "JENKINS_HOME", Jenkins.getInstance().getRootDir().getPath(),
  5. "ITEM_ROOTDIR", itemRootDir,
  6. "ITEM_FULLNAME", itemFullName, // legacy, deprecated
  7. "ITEM_FULL_NAME", itemFullName.replace(':','$'))); // safe, see JENKINS-12251
  8. }

相关文章