You are on page 1of 14

MC Press Online

Character Conversion APIs


Contributed by Bruce Vining Tuesday, 26 February 2008 Last Updated Tuesday, 26 February 2008

If you search the 'net for ways to uppercase character data, you can find some really bad methods. But here's a really good one.

By Bruce Vining

Over the years, I have lost count of the number of times I have seen this question posed: "How do I uppercase character data?" And while the responses that I see on the Internet are getting better, I continue to see suggested "solutions" like the horrible "set the second bit on for each byte found in the range of a to z" (as shown in Figure 1) or the minimally correct "use the RPG %xlate function" (as shown in Figure 2). This first "solution" appears to work in a very restricted environment but has side effects, due to the EBCDIC collating sequence, that are not obvious. For instance, replace the value "Some character data" for variable CharData with the string "Some currency data like €100" and you will find that the Euro symbol € is "uppercased" to a symbol such as . Probably not the desired answer! The second "solution," though avoiding side effects such as the Euro being incorrectly "capitalized," does not support the full range of lowercase alphabetic characters (more on this a bit later).

If you search the 'net for ways to uppercase character data, you can find some really bad methods. But here's a really good one.

Over the years, I have lost count of the number of times I have seen this question posed: "How do I uppercase character data?" And while the responses that I see on the Internet are getting better, I continue to see suggested "solutions" like the horrible "set the second bit on for each byte found in the range of a to z" (as shown in Figure 1) or the minimally correct "use the RPG %xlate function" (as shown in Figure 2). This first "solution" appears to work in a very restricted environment but has side effects, due to the EBCDIC collating sequence, that are not obvious. For instance, replace the value "Some character data" for variable CharData with the string "Some currency data like €100" and you will find that the Euro symbol € is "uppercased" to a symbol such as . Probably not the desired answer! The second "solution," though avoiding side effects such as the Euro being incorrectly "capitalized," does not support the full range of lowercase alphabetic characters (more on this a bit later).

DName+++++++++++ETDsFrom+++To/L+++IDc.Keywords++++++++++++++++++++++

http://www.mcpressonline.com

Powered by Joomla!

Generated: 28 August, 2008, 23:41

MC Press Online

dCharData

50

inz('Some character data')

dCurChar

dIndex

10i 0

CL0N01Factor1+++++++Opcode&ExtFactor2+++++++Result++++++++Len++D+HiLoEq

/free

for Index = 1 to %len(%trimr(CharData));

CurChar = %subst(CharData :Index :1);

if ((CurChar >= 'a') and (CurChar <= 'z'));

%subst(CharData :Index :1) =

%bitor(CurChar :x'40');

endif;

http://www.mcpressonline.com

Powered by Joomla!

Generated: 28 August, 2008, 23:41

MC Press Online

endfor;

dsply CharData;

*inlr = *on;

return;

/end-free

Figure 1: You can uppercase character data by setting the second bit of each byte in the range of a to z.

The correct answer to the question is to use the Convert Case APIs that are provided with i5/OS.

What follows is an extract from chapter 9, Character Conversion APIs, of my book IBM System i APIs at Work, Second Edition. This is an extraction as the actual chapter is 19 pages in length. The only change from what is found in the book is the renumbering of the referenced tables and figures. If you find this discussion of character data and CCSIDs to be of interest, you may also want to review other parts of the book. For instance chapter 14, Integrated File System APIs, discusses how UNIX-type APIs such as Read Directory Entry (readdir) may not return all files actually in a directory depending on the characters used in the file name. Of course chapter 14 also tells you what API to use in order to get around this consideration of the industry-standard readdir API. As businesses expand into the world market, proper support for the native languages of users becomes critical. The time to prepare your applications for the global marketplace is now.

http://www.mcpressonline.com

Powered by Joomla!

Generated: 28 August, 2008, 23:41

MC Press Online

Character data (such as names, addresses, and descriptions) most likely represents a significant amount of the data you store on the System i. Often, this character data is stored and simply retrieved for display and print purposes, but you might also need to process this character data within an application.

One possible form of processing character data is to convert stored mixed-case names ("ABC Company") to uppercase ("ABC COMPANY") for search purposes. This is useful when you want data values such as "Company," "COMPANY," and "COmpAny" to be treated as equivalent. For this type of processing, the system provides Convert Case APIs. The Convert Case function is provided as both a program API (QLGCNVCS) and a procedure API (QlgConvertCase) within a service program. This article starts with an example that uses the QlgConvertCase API to monocase (convert to either all uppercase or all lowercase) character data. Monocasing Character Data Using the Convert Case API

The Convert Case API, QlgConvertCase, allows you to easily convert data from mixed case to either all uppercase or all lowercase. Now, you might be wondering at this point why you would want to use an API when RPG provides built-in functions such as %xlate for uppercasing, as shown in Figure 2.

DName+++++++++++ETDsFrom+++To/L+++IDc.Keywords++++++++++++++++++++++

dUpper

'ABCDEFGHIJKLMNOPQRSTUVWXYZ'

dLower

'abcdefghijklmnopqrstuvwxyz'

dText

20

http://www.mcpressonline.com

Powered by Joomla!

Generated: 28 August, 2008, 23:41

MC Press Online

CL0N01Factor1+++++++Opcode&ExtFactor2+++++++Result++++++++Len++D+HiLoEq

/free

Text = %xlate( Lower :Upper :'Beckie');

/end-free

Figure 2: You can also use RPG's %xlate to uppercase character data.

After the %xlate built-in runs, the variable Text is set to 'BECKIE', which certainly looks like an easy way to uppercase data. But what if the input string, rather than having the value 'Beckie', has the value 'Adlade'. After the %xlate built-in runs, the variable Text is now 'ADLADE' rather than the correct 'ADLADE'. The obvious solution is to add the constants and to lower and the corresponding and to upper (along with quite a few other Latin characters), but you will find this still isn't quite right. The reason is that the character can only be represented in your RPG source code as one hexadecimal value. In the case of CCSID 37 (for simplicity, think of this as North American English), this would be x'51'. If your program was running in the United States, you would probably be OK. But what if your program was running in France with a CCSID of 297 (French) where the is x'C0' and x'51' is the curly-bracket character ({)? Your program would convert a string such as '{aiou}' to 'AIOU', which is decidedly incorrect.

To solve this, you could create additional versions of the lower and upper constants for each Latin-1 language environment your program might run in (such as English, French, German, and Spanish). This becomes unwieldy very quickly, however. And when your program needs to run (unchanged) in an environment that doesn't use Latin-1, such as Greek or Cyrillic, it becomes extremely awkward. Is there a solution to this dilemma? Of course there is! Use the Convert Case API. This API allows you to pass in a character string, and the CCSID the character string is encoded in. The API then returns the correctly cased string.

The table below shows the parameters for the Convert Case API. The first parameter, Request Control Block, defines what type of case conversion you want performed. Figure 3 shows the layout of the Request Control Block when using a
http://www.mcpressonline.com Powered by Joomla! Generated: 28 August, 2008, 23:41

MC Press Online

CCSID-based conversion.

The Convert Case API, Olgcvtcs or QlgConvertCase

Parameter

Description

Type

Size

Request Control Block

http://www.mcpressonline.com

Powered by Joomla!

Generated: 28 August, 2008, 23:41

MC Press Online

Input

Char(*)

Input Data

Input

Char(*)

Output Data

Output

http://www.mcpressonline.com

Powered by Joomla!

Generated: 28 August, 2008, 23:41

MC Press Online

Char(*)

Length of Data

Input

Binary(4)

Error Code

In/Out

Char(*)
http://www.mcpressonline.com Powered by Joomla! Generated: 28 August, 2008, 23:41

MC Press Online

DName+++++++++++ETDsFrom+++To/L+++IDc.Keywords++++++++++++++++++++++

D*****************************************************************

D*Structure for CCSID based request

D*****************************************************************

DQLGIDRCB00

DS

D*

Qlg CCSID ReqCtlBlk

D QLGTOR02

4B 0

D*

Type of Request

D QLGIDOID00

8B 0

D*

CCSID of Input Data

D QLGCR00
http://www.mcpressonline.com

12B 0
Powered by Joomla! Generated: 28 August, 2008, 23:41

MC Press Online

D*

Case Request

D QLGERVED04

13

22

D*

Reserved

Figure 3: This is the qsysinc QLG member when using a CCSID-based conversion.

Type of Request (qlgtor02) can be one of several options: Type 1 indicates a CCSID-based request, type 2 is tableobject based, and type 3 is user-defined. Our example uses type 1.

The CCSID of Input Data (qlgidoid00) identifies how the character data is represented or encoded. This can be a specific CCSID, such as 37 for EBCDIC North American English, 297 for EBCDIC French, 1252 for Windows Latin-1, or 1208 for UTF-8. You can also use the special value of zero to have the API use the current job CCSID, which is generally the value you will want. If you are interested in using specific CCSID values (and there are hundreds of them), the i5/OS Information Center lists the CCSIDs supported by the system. This list can be found by looking under "Programming" and then choosing "Globalization."

Case Request (qlgcr00) specifies the type of case conversion to be performed. The supported values are 0 (to convert the input data to uppercase) and 1 (to convert the input data to lowercase). Reserved (qlgerved04) is simply reserved space in the request control block. As is usual for APIs, this reserved field must be set to x'00's.

Figure 4 shows how to use the QlgConvertCase API. First, the program sets the Error Code Bytes Provided field (qusbprv) to 0 so exceptions are sent to the program. After this, the program initializes the entire request control block (qlgidrcb00) to x'00's. As mentioned in earlier chapters, this is done so we don't reference the actual reserved field,
http://www.mcpressonline.com Powered by Joomla! Generated: 28 August, 2008, 23:41

MC Press Online

qlgerved04, in the program. Qlgerved04, being reserved, may be renamed or redefined in future releases as new functionality is added to the API. Therefore, we don't want to explicitly reference this field within the application program. After initializing qlgidrcb00 to x'00's, the program sets the specific fields that control the conversion. The program sets the conversion type (qlgtor02) to 1 (CCSID based), the CCSID (qlgidoid00) to 0 (the job CCSID is to be used), and the case request (qlgcr00) to 0 (uppercase).

h dftactgrp(*no)

DName+++++++++++ETDsFrom+++To/L+++IDc.Keywords++++++++++++++++++++++

d/copy qsysinc/qrpglesrc,qlg

d/copy qsysinc/qrpglesrc,qusec

dConvertCase

pr

extproc('QlgConvertCase')

d Request

65535

const options(*varsize)

d InputData

65535

const options(*varsize)

d OutputData

options(*varsize)

d InputDataLen
http://www.mcpressonline.com

10i 0 const
Powered by Joomla! Generated: 28 August, 2008, 23:41

MC Press Online

d QUSEC

likeds(QUSEC)

dInputData

40

inz('Some mixed TeXt')

dOutputData

40

dWait

CL0N01Factor1+++++++Opcode&ExtFactor2+++++++Result++++++++Len++D+HiLoEq

/free

QUSBPRV = 0;

// use exceptions for errors

QLGIDRCB00 = *loval;

// set input structure to x'00'

QLGTOR02 = 1;

// use CCSID for monocasing

QLGIDOID00 = 0;

// use the job CCSID

QLGCR00 = 0;
http://www.mcpressonline.com

// convert to uppercase
Powered by Joomla! Generated: 28 August, 2008, 23:41

MC Press Online

ConvertCase( QLGIDRCB00 :InputData :OutputData

:%len(%trimr(InputData)) :QUSEC);

dsply OutputData;

QLGCR00 = 1;

// convert to lowercase

ConvertCase( QLGIDRCB00 :OutputData :InputData

:%len(%trimr(OutputData)) :QUSEC);

dsply InputData;

*inlr = *on;

return;

/end-free

Figure 4: Convert to uppercase and lowercase using a CCSID-based conversion request.

http://www.mcpressonline.com

Powered by Joomla!

Generated: 28 August, 2008, 23:41

MC Press Online

QlgConvertCase is then called with an InputData parameter of 'Some mixed TeXt'. The result 'SOME MIXED TEXT' is displayed.

To lowercase the string, the program simply sets the case request to 1 (lowercase) and calls QlgConvertCase again, this time reversing the Input and Output parameters. The second display shows 'some mixed text'.

The correct uppercasing of strings such as 'Adlade' and '{aiou}' can now be done automatically by simply running the program in a job having the correct job CCSID. In the United States, this would most likely be 37; in France, 297. If this program were to be run in a job CCSID of 37, but it knew that the data was really encoded in 297, then by setting qlgidoid00 to 297 rather than 0, the program would again correctly case the input data. The same is true for other language environments, such as Greek or Cyrillic. As more businesses move into a global marketplace, APIs such as Convert Case are clearly becoming more important for programmer productivity (and for the correct handling of national language data).

http://www.mcpressonline.com

Powered by Joomla!

Generated: 28 August, 2008, 23:41

You might also like