Skip to content

praeclarum/StopCrashing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

StopCrashing.fsx

Why run this script? Please read my blog post.

This script looks for possible ways the OS can call into your code. These entrypoints are the potential origins for crashes because there is no useful exception handler on the stack at that time.

What are these calls? Well, there are a lot of them:

  1. Any time you override members of UI objects
  2. Any time you export functions to the OS (as in, the responder chain)
  3. Any callbacks you register with the OS
  4. I'm sure there are more...

This script uses Mono.Cecil to scan all the byte code of your application to find these entrypoints.

It is able to detect #1, #2, and #3 above with the exception of methods that take don't take their callback as the last argument. Also it cannot properly track async methods yet.

It then detects whether you have any exception handling in that code. If you do not, it yells at you.

The idea is that we don't want to bloat our software with exception handlers everywhere. This certainly makes coding more tedious but also introduces a lot of ambiguity. Instead, we still want to fail fast by leaving the majority of our code free of handlers. We will only catch exceptions where we must do so to prevent crashes.

Running

Just pass it the path of your solution and it will go find the latest binaries automatically.

It also returns an exit code so that it can be easily integrated into your CI server. (It is currently configured only to detect iOS and OS X calls. Android and Win RT support can be added if anyone is interested.)

For example:

fsharpi --exec StopCrashing.fsx Path/To/MySolution.sln

This will find a binary for every project in MySolution.sln and report its bad methods.

About

Script to detect possible sources of crashes in Xamarin apps

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages