vote up 4 vote down star

There are many types of external dependencies. Interfacing with external applications, components or services (e.g. Outlook to send emails, TWAIN or WIA for scanning, ActiveX objects and Web services for various purposes, and so on).

What is your strategy for making sure that your application is robust, and can run even when such external dependencies (for innumerable reasons) are unavailable?

Note: Code from external sources included in your own source code is another type of external dependency, but that is not mainly what I am concerned about here.

flag

3 Answers

vote up 3 vote down check

Our strategy, is that our software may not except in exceptional circumstances. So we program quite defensively:

  • If there is no mail connection, the mail functionality is not available.
  • Graphic output depends on available graphics card.
  • Only the availability of a network enables the distributed functionality.

And there are more.

link|flag
vote up 1 vote down

Also note, that with external interfaces, much as with user input, you should not trust that input. Always validate input, and check for consistency (or existence) when calling.

link|flag
vote up 0 vote down

It's ok to fail (gracefully) if the required resources are unavailable.

If an unavailable dependency could throw something into an inconsistent state, then you shouldn't execute while that resource is unavailable.

For example, if I know that my app is basically worthless if the database connection isn't working, I should just notify the user as such and close. In my case, I've concluded that this is the best way to handle a problem like this because working such a rare condition isn't with the time. In other cases, it might be worth it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.