Day of Week Revisited

APIs
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

There are so many APIs available in RPG IV that no one can remember all of them, and several are overlooked. One such API is CEEDYWK. This API is an "ILE built-in." ILE built-in APIs are APIs whose object code is inserted into the compiled object directly.

Normally, a call to an API inserts a call to a routine in a service program or a standalone program. ILE built-ins work a little differently. Rather than insert a call to a subprocedure or program, the actual object code for the API itself is inserted directly inline, into the compiled object. This avoids the overhead of the call.

The prototype for the CEEDYWK API used by the GETDAYOFWEEK subprocedure is listed below:

     D CEEDYWK         PR            10I 0 ExtProc('CEEDYWK') 
     D  nDays                        10I 0 Const 
     D  nRtnDayOfWeek                10I 0

The first parameter of CEEDYWK is the number of days since October 14, 1582. This value may seem a bit odd, but it gives the API a known duration to do its calculation.

The second parameter of CEEDYWK must be a variable that is defined as a 4-byte integer (10i0) value. This variable will receive the day of the week.

To calculate the days since October 14, 1582, use either the SUBDUR opcode or the %DIFF built-in function. For example:

  nDays_Since = %diff(myDate:D'1582-10-14':*DAYS);

The number of days since October 14, 1582, is calculated by passing the date whose day of the week we need to the %DIFF built-in function. The second parameter is the October 14, 1582, date hard-coded.

The third parameter indicates the type of duration being calculated. In this case, the number of days is desired, so *DAYS is specified.

The value returned from this calculation is passed to the CEEDYWK API. The API calculates the day of the week from that value and returns it as a value of 1 to 7 on the second parameter.

The following is a nice little subprocedure called DayOfWeek() that simplifies calling CEEDYWK. Pass in the desired date, and it returns the day of the week.

Here's the prototype:

     D GetDayOfWeek    PR            10I 0
     D  inDate                         D   CONST DATFMT(*ISO)

Here's the procedure implementation:

     P DayOfWeek       B                   EXPORT
     D DayOfWeek       PI            10I 0
     D  inDate                         D   CONST DATFMT(*ISO)

       // Base date is based on date the calendar changed.
     D BaseDate        C                   Const(D'1582-10-14')
     D nDayOfWeek      S             10I 0
      /free 
         ceedywk(%diff(inDate:baseDate:*DAYS) : nDayOfWeek);
         return nDayOfWeek;

      /end-free
     P GetDayOfWeek    E

Certainly the need for the GetDayOfWeek() wrapper subprocedure is debatable. However, it does make for a much cleaner interface. Compare the two ways to call CEEDYWK, first calling it directly and then calling it via the wrapper, as follows:

      /INCLUDE QCPYSRC,ceedywk
     D BaseDate        C                   Const(D'1582-10-14')
     D  myDate         S               D   DATFMT(*ISO) 

     D nDayOfWeek      S             10I 0
      /free 
         myDate = D'2006-12-12';
         ceedywk(%diff(myDate:baseDate:*DAYS) : nDayOfWeek);
      /end-free

In this example, the CEEDYWK prototype is /INCLUDEd into the source, the BASEDATE constant needs to be declared, and then CEEDYWK is called directly, passing the results from the %DIFF() built-in function as the first parameter.

      /COPY QCPYSRC,dates
     D nDayOfWeek      S             10I 0
      /free 
         myDate = D'2006-12-12';
         nDayOfWeek = GetDayOfWeeK(myDate);
      /end-free

In this example, the GetDayOfWeek() subprocedure prototype is /COPYed into the source; then, the GetDayOfWeek() subprocedure is called.

I want to illustrate this technique without all the supporting /COPYs or work fields. Here is the code again, to calculate the day of the week using only the CEEDYWK API without the wrapper subprocedure:

         ceedywk(%diff(myDate:D'1582-10-14':*DAYS) : nDayOfWeek);

And here is the version that uses the API wrapper subprocedure GetDayOfWeek():

         nDayOfWeek = GetDayOfWeeK(myDate);

You have to decide whether you want to start creating a library of usefully subprocedures and API wrappers or whether you want to use the raw API technique. Either method works fine.

Bob Cozzi is a programmer/consultant, writer/author, and software developer of the RPG xTools, a popular add-on subprocedure library for RPG IV. His book The Modern RPG Language has been the most widely used RPG programming book for nearly two decades. He, along with others, speaks at and runs the highly-popular RPG World conference for RPG programmers.

BOB COZZI

Bob Cozzi is a programmer/consultant, writer/author, and software developer. His popular RPG xTools add-on subprocedure library for RPG IV is fast becoming a standard with RPG developers. His book The Modern RPG Language has been the most widely used RPG programming book for more than a decade. He, along with others, speaks at and produces the highly popular RPG World conference for RPG programmers.


MC Press books written by Robert Cozzi available now on the MC Press Bookstore.

RPG TnT RPG TnT
Get this jam-packed resource of quick, easy-to-implement RPG tips!
List Price $65.00

Now On Sale

The Modern RPG IV Language The Modern RPG IV Language
Cozzi on everything RPG! What more could you want?
List Price $99.95

Now On Sale

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$

Book Reviews

Resource Center

  •  

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: