Exercises in Programming Style–Cookbook

Yan Cui

I help clients go faster for less using serverless technologies.

NOTE : read the rest of the series, or check out the source code.

If you enjoy read­ing these exer­cises then please buy Crista’s book to sup­port her work.

exercises-prog-styles-cover

Fol­low­ing on from the last post, we will look at the Cookbook style today.

 

Style 4 – Cookbook

Although Crista has called this the Cookbook style, you’d probably know it as Procedural Programming.

Constraints

  • No long jumps
  • Complexity of control flow tamed by dividing the large problem into smaller units using procedural abstraction
  • Procedures may share state in the form of global variables
  • The large problem is solved by applying the procedures, one after the other, that change, or add to, the shared state

 

As stated in the constraints, we need to solve the term frequencies problem by building up a sequence of steps (i.e . procedures) that modifies some shared states along the way.

So first, we’ll define the shared states we’ll use to:

  • hold the raw data that are read from the input file
  • hold the words that will be considered for term frequencies
  • the associated frequency for each word

image

 

Procedures

I followed the basic structure that Crista laid out in her solution:

  1. read_file : reads entire content of the file into the global variable data;
  2. filter_chars_and_normalize : replaces all non-alphanumeric characters in data with white space’’;
  3. scan : scans the data for words, and adds them to the global variable words;
  4. remove_stop_words : load the list of stop words; appends the list with single-letter words; removes all stop words from the global variable words;
  5. frequencies : creates a list of pairs associating words with frequencies;
  6. sort : sorts the contents of the global variable wordFreqs by decreasing order of frequency

 

image

As you can see, readFile is really straight forward. I chosen to store the content of the file as a char[] rather than a string because it simplifies filterCharsAndNormalize:

  • it allows me to use Char.IsLetterOrDigit
  • it gives me mutability (I can replace the individual characters in place)

image

The downside of storing data as a char[] is that I will then need to construct a string from it when it comes to splitting it up by white space.

image

To remove the stop words, I loaded the stop words into a Set because it provides a more efficient lookup.

image

For the frequencies procedure,  I would have liked to simply return the term frequencies as output, but as the constraint says that

The large problem is solved by applying the procedures, one after the other, that change, or add to, the shared state

so unfortunately we’ll have to update the wordFreqs global variable instead…

image

And finally, sort is straight forward thanks to Array.sortInPlaceBy:

image

 

To tie everything together and get the output, we simply execute the procedures one after another and then print out the first 25 elements of wordFreqs at the end.

image

 

Conclusions

Since each procedure is modifying shared states, this introduces temporal dependency between the procedures. As a result:

  • they’re not idempotent – running a procedure twice will cause different/invalid results
  • they’re not isolated in mindscape – you can’t think about one procedure without also thinking about what the previous procedure has done to shared state and what the next procedure expects from the shared state

Also, since the expectation and constraints of the procedures are only captured implicitly in its execution logic, you cannot leverage the type system to help communicate and enforce them.

That said, many systems we build nowadays can be described as procedural in essence – most web services for instance – and rely on sharing and changing global states that are proxied through databases or cache.

 

You can find all the source code for this exer­cise here.


 

Whenever you’re ready, here are 4 ways I can help you:

  1. If you want a one-stop shop to help you quickly level up your serverless skills, you should check out my Production-Ready Serverless workshop. Over 20 AWS Heroes & Community Builders have passed through this workshop, plus 1000+ students from the likes of AWS, LEGO, Booking, HBO and Siemens.
  2. If you want to learn how to test serverless applications without all the pain and hassle, you should check out my latest course, Testing Serverless Architectures.
  3. If you’re a manager or founder and want to help your team move faster and build better software, then check out my consulting services.
  4. If you just want to hang out, talk serverless, or ask for help, then you should join my FREE Community.

 


3 thoughts on “Exercises in Programming Style–Cookbook”

  1. Pingback: Exercises in Programming Style–Pipeline | theburningmonk.com

Leave a Comment

Your email address will not be published. Required fields are marked *