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 3 ways I can help you:

  1. Production-Ready Serverless: Join 20+ AWS Heroes & Community Builders and 1000+ other students in levelling up your serverless game. This is your one-stop shop to level up your serverless skills quickly.
  2. Do you want to know how to test serverless architectures with a fast dev & test loop? Check out my latest course, Testing Serverless Architectures and learn the smart way to test serverless.
  3. I help clients launch product ideas, improve their development processes and upskill their teams. If you’d like to work together, then let’s get in touch.

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 *