/gerrit-server/src/main/java/com/google/gerrit/server/plugins/ListPlugins.java

https://code.google.com/ · Java · 107 lines · 75 code · 17 blank · 15 comment · 5 complexity · 1cee512448b48f635d18c7cf8005f0f7 MD5 · raw file

  1. // Copyright (C) 2012 The Android Open Source Project
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package com.google.gerrit.server.plugins;
  15. import com.google.common.base.Strings;
  16. import com.google.common.collect.Lists;
  17. import com.google.common.collect.Maps;
  18. import com.google.gerrit.server.OutputFormat;
  19. import com.google.gson.reflect.TypeToken;
  20. import com.google.inject.Inject;
  21. import org.kohsuke.args4j.Option;
  22. import java.io.BufferedWriter;
  23. import java.io.OutputStream;
  24. import java.io.OutputStreamWriter;
  25. import java.io.PrintWriter;
  26. import java.io.UnsupportedEncodingException;
  27. import java.util.Collections;
  28. import java.util.Comparator;
  29. import java.util.List;
  30. import java.util.Map;
  31. /** List projects visible to the calling user. */
  32. public class ListPlugins {
  33. private final PluginLoader pluginLoader;
  34. @Option(name = "--format", metaVar = "FMT", usage = "Output display format")
  35. private OutputFormat format = OutputFormat.TEXT;
  36. @Inject
  37. protected ListPlugins(PluginLoader pluginLoader) {
  38. this.pluginLoader = pluginLoader;
  39. }
  40. public OutputFormat getFormat() {
  41. return format;
  42. }
  43. public ListPlugins setFormat(OutputFormat fmt) {
  44. this.format = fmt;
  45. return this;
  46. }
  47. public void display(OutputStream out) {
  48. final PrintWriter stdout;
  49. try {
  50. stdout =
  51. new PrintWriter(new BufferedWriter(new OutputStreamWriter(out,
  52. "UTF-8")));
  53. } catch (UnsupportedEncodingException e) {
  54. // Our encoding is required by the specifications for the runtime.
  55. throw new RuntimeException("JVM lacks UTF-8 encoding", e);
  56. }
  57. Map<String, PluginInfo> output = Maps.newTreeMap();
  58. List<Plugin> plugins = Lists.newArrayList(pluginLoader.getPlugins());
  59. Collections.sort(plugins, new Comparator<Plugin>() {
  60. @Override
  61. public int compare(Plugin a, Plugin b) {
  62. return a.getName().compareTo(b.getName());
  63. }
  64. });
  65. if (!format.isJson()) {
  66. stdout.format("%-30s %-10s\n", "Name", "Version");
  67. stdout
  68. .print("----------------------------------------------------------------------\n");
  69. }
  70. for (Plugin p : plugins) {
  71. PluginInfo info = new PluginInfo();
  72. info.version = p.getVersion();
  73. if (format.isJson()) {
  74. output.put(p.getName(), info);
  75. } else {
  76. stdout.format("%-30s %-10s\n", p.getName(),
  77. Strings.nullToEmpty(info.version));
  78. }
  79. }
  80. if (format.isJson()) {
  81. format.newGson().toJson(output,
  82. new TypeToken<Map<String, PluginInfo>>() {}.getType(), stdout);
  83. stdout.print('\n');
  84. }
  85. stdout.flush();
  86. }
  87. private static class PluginInfo {
  88. String version;
  89. }
  90. }