gooLego: Google’s software building blocks
- Image via Wikipedia
Over the past few years, Google has open sourced several projects that provide some commonly used building blocks in any large software project. Some of them I was aware of since when they were launched (like protobufs), while others I discovered only recently. I couldn’t find any location where all the projects were listed together and combing through Google Code looking for them was painful, so I’m putting together a list myself. Hope some of you find it useful.
- protobufs: Platform agnostic messages. Critical for any distributed system. Note that protobufs only provide message serialization/deserialization (for various languages). An important missing piece is an RPC framework built on top of them. There are several projects attempting to build one using protobufs, but none of them are robust or mature enough for production use.
- style guide: The importance of a style guide is probably understated. It is not about what is the “right” style — it is about consistency. While people may have different opinions, if everyone follows the same style, the code becomes much more readable and maintainable. Google maintains style guides for C++ and Python.
- config flags: Another important building block for all command line programs.
- logging: Self-evident. Google’s logging library supports various log levels and other useful macros.
- core dumper: A very nifty library — it allows you to dump core from within a running application. Extremely useful for debugging production systems.
- perftools: An extremely useful library for measuring and monitoring performance of programs. By simply linking against perftools, your application gets a much better malloc, heap checking, visual CPU profile of various routines (via graphviz), visualization of memory usage etc.
- googlemock: A framework to quickly build mock objects — useful for testing.
- googletest: Google’s C++ unit testing framework, built on top of xUnit. Integrates well with googlemock.
Of course, this is not an exhaustive list. There are numerous other open source projects from Google, some of them probably much more bigger and visible than the ones listed above — such as Wave, Go, GWT etc. If there’s a project that is a software building block that I missed out, do chime in the comments below.
If you are using Java, Google Collections is very handy.
@Shashikant: Good to know!
and u can use jquery (ask google)
Thank you very much for the information.