There’re two high-level pieces to this: figuring out which code goes in which package, and tweaking your APIs to reduce the need for packages to take on as many dependencies.
On designing APIs that avoid the need for some imports:
-
Write config functions for hooking packages up to each other at run time rather than compile time. Instead of
routesimporting all the packages that define routes, it can exportroutes.Register, whichmain(or code in each app) can call. In general, configuration info probably flows throughmainor a dedicated package; scattering it around too much can make it hard to manage. -
Pass around basic types and
interfacevalues. If you’re depending on a package for just a type name, maybe you can avoid that. Maybe some code handling a[]Pagecan get instead use a[]stringof filenames or a[]intof IDs or some more general interface (sql.Rows) instead. -
Consider having ‘schema’ packages with just pure data types and interfaces, so
Useris separate from code that might load users from the database. It doesn’t have to depend on much (maybe on anything), so you can include it from anywhere. Ben Johnson gave a lightning talk at GopherCon 2016 suggesting that and organizing packages by dependencies.
On organizing code into packages:
-
As a rule, split a package up when each piece could be useful on its own. If two pieces of functionality are really intimately related, you don’t have to split them into packages at all; you can organize with multiple files or types instead. Big packages can be OK; Go’s
net/httpis one, for instance. -
Break up grab-bag packages (
utils,tools) by topic or dependency. Otherwise you can end up importing a hugeutilspackage (and taking on all its dependencies) for one or two pieces of functionality (that wouldn’t have so many dependencies if separated out). -
Consider pushing reusable code ‘down’ into lower-level packages untangled from your particular use case. If you have a
package pagecontaining both logic for your content management system and all-purpose HTML-manipulation code, consider moving the HTML stuff “down” to apackage htmlso you can use it without importing unrelated content management stuff.
Here, I’d rearrange things so the router doesn’t need to include the routes: instead, each app package calls a router.Register() method. This is what the Gorilla web toolkit’s mux package does. Your routes, database, and constants packages sound like low-level pieces that should be imported by your app code and not import it.
Generally, try to build your app in layers. Your higher-layer, use-case-specific app code should import lower-layer, more fundamental tools, and never the other way around. Here are some more thoughts:
-
Packages are good for separating independently usable bits of functionality from the caller’s perspective. For your internal code organization, you can easily shuffle code between source files in the package. The initial namespace for symbols you define in
x/foo.goorx/bar.gois just packagex, and it’s not that hard to split/join files as needed, especially with the help of a utility likegoimports.The standard library’s
net/httpis about 7k lines (counting comments/blanks but not tests). Internally, it’s split into many smaller files and types. But it’s one package, I think ’cause there was no reason users would want, say, just cookie handling on its own. On the other hand,netandnet/urlare separate because they have uses outside HTTP.It’s great if you can push “down” utilities into libraries that are independent and feel like their own polished products, or cleanly layer your application itself (e.g., UI sits atop an API sits atop some core libraries and data models). Likewise “horizontal” separation may help you hold the app in your head (e.g., the UI layer breaks up into user account management, the application core, and administrative tools, or something finer-grained than that). But, the core point is, you’re free to split or not as works for you.
-
Set up APIs to configure behavior at run-time so you don’t have to import it at compile time. So, for example, your URL router can expose a
Registermethod instead of importingappA,appB, etc. and reading avar Routesfrom each. You could make amyapp/routespackage that importsrouterand all your views and callsrouter.Register. The fundamental idea is that the router is all-purpose code that needn’t import your application’s views.Some ways to put together config APIs:
-
Pass app behavior via
interfaces orfuncs:httpcan be passed custom implementations ofHandler(of course) but alsoCookieJarorFile.text/templateandhtml/templatecan accept functions to be accessible from templates (in aFuncMap). -
Export shortcut functions from your package if appropriate: In
http, callers can either make and separately configure somehttp.Serverobjects, or callhttp.ListenAndServe(...)that uses a globalServer. That gives you a nice design–everything’s in an object and callers can create multipleServers in a process and such–but it also offers a lazy way to configure in the simple single-server case. -
If you have to, just duct-tape it: You don’t have to limit yourself to super-elegant config systems if you can’t fit one to your app: maybe for some stuff a
package "myapp/conf"with a globalvar Conf map[string]interface{}is useful.
But be aware of downsides to global conf. If you want to write reusable libraries, they can’t importmyapp/conf; they need to accept all the info they need in constructors, etc. Globals also risk hard-wiring in an assumption something will always have a single value app-wide when it eventually won’t; maybe today you have a single database config or HTTP server config or such, but someday you don’t.
-
Some more specific ways to move code or change definitions to reduce dependency issues:
-
Separate fundamental tasks from app-dependent ones. One app I work on in another language has a “utils” module mixing general tasks (e.g., formatting datetimes or working with HTML) with app-specific stuff (that depends on the user schema, etc.). But the users package imports the utils, creating a cycle. If I were porting to Go, I’d move the user-dependent utils “up” out of the utils module, maybe to live with the user code or even above it.
-
Consider breaking up grab-bag packages. Slightly enlarging on the last point: if two pieces of functionality are independent (that is, things still work if you move some code to another package) and unrelated from the user’s perspective, they’re candidates to be separated into two packages. Sometimes the bundling is harmless, but other times it leads to extra dependencies, or a less generic package name would just make clearer code. So my
utilsabove might be broken up by topic or dependency (e.g.,strutil,dbutil, etc.). If you wind up with lots of packages this way, we’ve gotgoimportsto help manage them. -
Replace import-requiring object types in APIs with basic types and
interfaces. Say two entities in your app have a many-to-many relationship likeUsers andGroups. If they live in different packages (a big ‘if’), you can’t have bothu.Groups()returning a[]group.Groupandg.Users()returning[]user.Userbecause that requires the packages to import each other.However, you could change one or both of those return, say, a
[]uintof IDs or asql.Rowsor some otherinterfaceyou can get to withoutimporting a specific object type. Depending on your use case, types likeUserandGroupmight be so intimately related that it’s better just to put them in one package, but if you decide they should be distinct, this is a way.
Thanks for the detailed question and followup.