Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The first decision I have to make is how to store the embed data. Originally I used a SQL database, but this now appears to be a liability. My parser should use something more transient , which can that can be converted to a permanent store or just discarded after use. An in-memory data store, in the form of nested queues, fits the bill:

...

At first blush this looks like an ideal task for a procedure. Pass in the name of the TXA and an empty queue and get back a filled queue: presto! But here's why I think the procedural solution is hardly ever a good solution: there's almost always some new functionality you can will ant to add which doesn't fit into the existing procedure.

...

I won't go into all of these methods in detail - you can have a look at the source if you're interested. Briefly, there are a few private methods to break up the internal code into reusable blocks (you'd use routines in a procedural implementation), and there are some public methods to get the procedure and embed counts, parse the specified TXA, reset the parser , and specify the particular queue to use.

...