/extensions/grapher/test/com/google/inject/grapher/demo/InjectorGrapherDemo.java

https://code.google.com/ · Java · 48 lines · 20 code · 5 blank · 23 comment · 0 complexity · 3675363e33b7adc93fbc115744bb6187 MD5 · raw file

  1. /**
  2. * Copyright (C) 2008 Google Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.google.inject.grapher.demo;
  17. import com.google.inject.Guice;
  18. import com.google.inject.Injector;
  19. import com.google.inject.Stage;
  20. import com.google.inject.grapher.graphviz.GraphvizGrapher;
  21. import com.google.inject.grapher.graphviz.GraphvizModule;
  22. import java.io.File;
  23. import java.io.PrintWriter;
  24. /**
  25. * Application that instantiates {@link BackToTheFutureModule} and graphs it,
  26. * writing the output to a DOT-formatted file (filename specified on the
  27. * command line).
  28. *
  29. * @author phopkins@gmail.com (Pete Hopkins)
  30. */
  31. public class InjectorGrapherDemo {
  32. public static void main(String[] args) throws Exception {
  33. // TODO(phopkins): Switch to Stage.TOOL when issue 297 is fixed.
  34. Injector demoInjector = Guice.createInjector(Stage.DEVELOPMENT,
  35. new BackToTheFutureModule(), new MultibinderModule(), new PrivateTestModule());
  36. PrintWriter out = new PrintWriter(new File(args[0]), "UTF-8");
  37. Injector injector = Guice.createInjector(new GraphvizModule());
  38. GraphvizGrapher grapher = injector.getInstance(GraphvizGrapher.class);
  39. grapher.setOut(out);
  40. grapher.setRankdir("TB");
  41. grapher.graph(demoInjector);
  42. }
  43. }