Bitmaps (File architecture)

From m204wiki
Revision as of 21:31, 18 December 2013 by Admin (talk | contribs) (Admin moved page Bit Maps (File Architecture) to Bitmaps (File architecture) without leaving a redirect)
Jump to navigation Jump to search

A bitmap, as the name implies, is a series of on and off bits which are used to track a condition. These maps are used extensively throughout Model 204 to track sets of records or pages.


The workings of a bitmap

The page size in Model 204 of 6184 bytes contains 6144 'usable' bytes (along with its 40 byte trailer). As such conditions of up to 49152 'things' (usually records but also pages) can be tracked on a single page.

Usages

The most common use in Model 204 is to track sets of records:

  • Inside both indexing types (hash and B-tree) bitmaps are used
  • The existence bitmap which tracks which internal record numbers are in use.
  • During procedure execution, all found sets are held as bitmaps

And, for Table E non FILEORG x'100' files, large object available pages are tracked as well.

Manipulating bitmaps

Once you have conditions represented as bitmaps, the manipulation ('anding' and 'oring') of these sets is straightforward and efficient:

In code which has a find such as:

X: In filename FD COLOR = 'BLUE' STATE = 'NY' ...

What is happening (given the implied 'and') is that the sets of records for each criteria are retrieved, and then 'anded' (any bits 'on' on both, are 'on' on the resultant bitmap associated with the label 'X'.

Example

In this example (which looks at a bitmap as used by an index), this is the beginning of the bitmap representing the ORD CHAR field value pair COLOR = BLUE for the 3rd segment of a file (which covers IRNs 98304 to 147455).

Based in this, record 98304 does not have an occurrence of COLOR = BLUE, but records 98305 and 98306 do... and so on.