Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7519999
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T01:59:34+00:00 2026-05-30T01:59:34+00:00

There’s a bug in the Guice grapher utility that causes most or all graphs

  • 0

There’s a bug in the Guice grapher utility that causes most or all graphs to render corrupted. Is there a workaround or fix for this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T01:59:34+00:00Added an answer on May 30, 2026 at 1:59 am

    I modified @wuppi’s answer slightly to also hide class paths and long random name annotations to make the graph much more compact and readable. His answer with edited code follows:

    I find this utility method pretty useful and it never pritned incorrect graphs for me.

    Regarding the style=invis bug: The Guice grapher plugin generates a dot file, which styles some of the clases as invisible. The replaceAll() in the below posted method works around that. The rest of the code is nearly the same from the Guice example.

    I’ve incorporated Scot’s fix for Guice 4.x, which included Tim’s answer as well:

    public class Grapher {
        public static void main(String[] args) throws Exception {
            Grapher.graph4("filename.dot", Guice.createInjector(new MyModule()));
        }
        public static void graph4(String filename, Injector inj) throws Exception {
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
            PrintWriter out = new PrintWriter(baos);
    
            Injector injector = Guice.createInjector(new GraphvizModule());
            GraphvizGrapher renderer = injector.getInstance(GraphvizGrapher.class);
            renderer.setOut(out);
            renderer.setRankdir("TB");
            renderer.graph(inj);    
    
            out = new PrintWriter(new File(filename), "UTF-8");
            String s = baos.toString("UTF-8");
            s = fixGrapherBug(s);
            s = hideClassPaths(s);
            out.write(s);
            out.close();
        }
    
        public static String hideClassPaths(String s) {
            s = s.replaceAll("\\w[a-z\\d_\\.]+\\.([A-Z][A-Za-z\\d_\\$]*)", "$1");
            s = s.replaceAll("value=[\\w-]+", "random");
            return s;
        }
    
        public static String fixGrapherBug(String s) {
            s = s.replaceAll("style=invis", "style=solid");
            s = s.replaceAll("margin=(\\S+), ", " margin=\"$1\", ");
            return s;
        }
    }
    

    Of course you are free to generate any other Filename 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There is a conversion process that is needed when migrating Visual Studio 2005 web
There are a few ways to get class-like behavior in javascript, the most common
There is a field in my company's Contacts table. In that table, there is
There will be 500+ threads concurrently uploading an unique object to a bucket all
There's a bug in FireBug: I accidentally clicked where the line numbers are, which
There is a website called Gild.com that has different coding puzzles/challenges for users to
There is no doubt that MonoTouch is one of the great cross-compiler(s). Similarly, SenchaTouch
There are two major fix engines: opensource QuickFix http://www.quickfixengine.org/ commercial Fix Antenna http://www.b2bits.com/trading_solutions/fix_engines/fix_engine_cpp.html What
There is a class that's a fully fledged UIViewController and when that page loads
There is a security concept regarding the calls to the WCF service that I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.