Home > Articles > Programming

This chapter is from the book

Command-Line Deployment with OrcaScript

The PB 8 IDE got a complete overhaul with the introduction of Workspaces and Targets, a revamped SCC interface, and the capability of one-click deployment. These enhancements touch every facet of the day-to-day programming effort, much more than any new object classes or enhanced PowerScript methods. However, one important feature was still missing—the ability to automate the Sync/Regen/Compile process from front to back. For that reason, Sybase developed a new facility named OrcaScript.

Overview

ORCA (Open Repository CASE API) is an API library originally developed for CASE tool vendors as part of the CODE (Client/Server Open Development Environment) program. It allowed third-party developers to write utilities that could look inside the PBL and get directly at the object source code. It was used by design tool vendors, foundation class library vendors, and other third-party utility authors to directly manipulate PowerBuilder objects. OrcaScript is a command-line language that exposes several of the ORCA API calls and allows for batch scripting of the entire build process. OrcaScript can be used to perform the following functions, all without operator intervention:

  • Regenerate all the objects in a PowerBuilder target.

  • Copy PowerBuilder objects from one PBL to another.

  • Synchronize a developer's local PBLs with the latest version of objects from the SCC repository.

  • "Bootstrap" the PBLs directly from the exported source code.

  • Deploy PowerBuilder targets into compiled executables (PBDs or machine code DLLs).

  • Deploy PowerBuilder components to EAServer.

Architecture

OrcaScript commands are written into a ASCII text files and are typically given a .dat file extension (although any file extension is valid). The OrcaScript command processor is named ORCASCR9.EXE, and it can be found in the \Program Files\Sybase\Shared\PowerBuilder folder. The OrcaScript command processor is invoked from the command line, or inside a BAT file, passing the name of the DAT file as a parameter. For example, the following command would invoke OrcaScript, and the commands in the file regen_workspace.dat would be executed:

c:\>orcascr9.exe Regen_Workspace.DAT

This command could be placed into a BAT file, which would enable it to be executed on a recurring schedule. The processor also takes the parameters shown in Table 3.2.

Table 3.2 OrcaScript Parameters

Parameter

Description

Example

/D

Sets variables that are valid in

orcascr9.exe /D root c:\pb9 myScript.datthe batch file

/T

Runs with tracing on

orcascr9.exe /T myScript.dat

/H or /?

Prints syntax help to screen

orcascr9.exe /H


Each line of an OrcaScript batch either succeeds or fails. If an error is encountered, the OrcaScript session is ended, and the remaining lines in the batch are not executed.

CAUTION

You should not run OrcaScript if the PowerBuilder 9 development environment is currently running on the same machine. If the PowerBuilder IDE is not shut down while OrcaScript is running, the PBLs can be corrupted.

OrcaScript Command Reference

OrcaScript commands are not case sensitive. In the command syntax that follows, brackets indicate an optional parameter. A pipe character inside angle brackets < | > indicates that a choice must be made from the listed choices. Text in italic font indicates a variable.

start session
end session
set liblist pbl_list [pbl_list ...]
set application pblName applicationName
set name = value
set name += value
echo value [value ...]
file copy fromFile toFile
regenerate pblName entryName entryType
copy entry pblName entryName entryType toPblName
build library pblName pbrName <pbd | 32 >
build executable exeName iconName pbrName pbdFlags [machinecode]
build application <full | migrate | incremental >
build project pblName projectName [ serverName serverPort ]
create library pblName pblComments
SCC get connect properties workspaceName
SCC set connect property provider sccProvider
SCC set connect property userid userID
SCC set connect property logfile logFileName
SCC set connect property project projectPath
SCC set connect property localprojpath localProjectPath
SCC set connect property auxproject auxProjectPath
SCC set connect property logappend <true | false>
SCC connect
SCC set target targetName [refreshType][refreshOption][refreshOption]
SCC get latest version file_list [file_list]
SCC exclude liblist pblName [pblName ...]
SCC refresh target targetName <full | migrate | incremental >
SCC close

OrcaScript Argument Descriptions

Table 3.3 contains the descriptions of the various arguments to the OrcaScript functions listed in Table 3.2.

Table 3.3 OrcaScript Argument Descriptions

Argument

Description

Pbl_list

String containing the list of PBLs for the session application. PBL names can be separated by semicolons in a single string, or separated by a blank space in multiple strings.

PblName

Name of a PBL for an OrcaScript action or for the OrcaScript session application.

ApplicationName

Name of the application for an OrcaScript action.

Name

String variable name that is defined for an OrcaScript session.

Value

Value of a string variable that is set for an OrcaScript session.

FromFile

The name of a file to be copied.

ToFile

The path/filename of the destination for a file copy operation.

EntryName

The name of an object in the current Workspace.

EntryType

Value specifying the type of the referenced object. Values can be: app, dw, fn, menu, query, struct, uo, win, pipe, project, or proxy.

ToPblName

Name of the PBL that is the destination of an object copy operation.

PbrName

Name of a PowerBuilder resource file to be used during the OrcaScript build.

pbd | 32

Select PBD to generate PowerBuilder dynamic libraries. Select 32 to generate platform-specific machine code.

ExeName

Name of the executable to be built.

IconName

Name of an icon to use for the compiled executable.

PbdFlags

String composed of a series of y and n values for each library in the library list. A value of nnyy indicates that four libraries are in the library list, and the last two are to be compiled into dynamic libraries. The objects in the PBLs that correspond to n settings are copied into the executable file.

Machinecode

Use to compile a project as machine code.

full | migrate | incremental

Build strategy for the application being deployed.

ProjectName

Name of the Project object that will be used during the OrcaScript deployment session.

ServerName

The name of the application server for deployment.

ServerPort

Port for the server where you want to deploy a project.

PblComments

Comments for a PBL that is created in an OrcaScript session.


In addition, the arguments shown in Table 3.4 are used in SCC specific OrcaScript commands.

Table 3.4 OrcaScript Argument Descriptions

WorkspaceName

The fully qualified path and filename of the workspace file.

SccProvider

Name of the source control provider. This should match the option as listed in the Workspace properties dialog box.

UserID

Name of the user registered to source control.

LogFileName

Name of a log file used to record SCC transactions.

ProjectPath

Path to the source control project.

LocalProjectPath

Local root directory for the project.

AuxProjectPath

Contains any string that the SCC provider wants to associate with the project. It has a different meaning for every SCC vendor.

TargetName

Name of the target for source control operations.

true | false

Boolean value for appending to the source control log file. If this command is not used but a log file is specified, the session value defaults to true.

RefreshType

Value can be Refresh_all—Gets latest version of all objects from the SCC provider and refreshes all target libraries. Does not perform comparisons. Outofdate—Performs comparisons and updates objects that are out of date. If no RefreshType value is specified, the RefreshType defaults to outofdate. This value cannot be used with the RefreshOption variable set to ImportOnly.

RefreshOption

Value can be ImportOnly—Does not perform object comparisons and does not refresh from the SCC provider. This option will rebuild the target from the versions of exported code that is currently located in the local project path. Use this option after taking a specific code configuration from the SCC provider into the local project path. Exclude_Checkout—Prevents objects that are currently checked out by the current user from being overwritten. Can be used with the outofdate parameter in the same OrcaScript command. Use a space to separate RefreshType and RefreshOption parameters when combining them in a single OrcaScript command.

file_list

String containing one or more file names using relative or absolute path specification. Filenames can be separated by semicolons in a single string, or separated by a blank space in multiple strings. This option can be used to retrieve the latest version of PB, as well as non-PB files from the SCC provider.


Sample OrcaScript Command Files

The following code examples are based on the Cashtrak sample application that ships with PowerBuilder 9. These present the contents of a typical OrcaScript DAT file that would be passed to the ORCASCR9.EXE command processor in a command-line batch file. These samples do not use qualified pathnames to reference the Target PBLs, so they would need to be placed into the same folder.

The example in Listing 3.1 performs a full build of the CashTrak target. The three PBLs are compiled into dynamic PBD libraries, and the EXE file is generated.

Listing 3.1 Simple Target Regeneration and Compile

start session
SET liblist "cashtrak.pbl;cashtrk2.pbl;cashtrk3.pbl"
SET application "cashtrak.pbl" "cashtrak"
BUILD library "cashtrak.pbl" "" PBD
BUILD library "cashtrk2.pbl" "" PBD
BUILD library "cashtrk3.pbl" "" PBD
BUILD executable "cashtrak.exe" "cashtrak.ico" "cashtrak.pbr" "YYY"
end session

The example in Listing 3.2 reads the Workspace SCC properties and connects to the SCC Provider—in this case, PBNative. It then does a Target-wide "Get Latest Version," retrieving only those objects that are out of sync and not currently checked out to user PaulH on the current machine.

Listing 3.2 Get Latest Version from SCC Provider for Entire Target

start session
SCC get connect properties "C:\PB9\PBNative\Source\cashtrak.pbw"
SCC set connect property userid "PaulH"
SCC Connect
SCC set target "cashtrak.pbt" "OUTOFDATE EXCLUDE_CHECKOUT"
SCC refresh target incremental
SCC Close
end session

The example in Listing 3.3 rebuilds the three target PBLs from the exported source files. In doing so, it assumes that the three CashTrak PBLs do not exist. The BAT file that invokes this DAT file completely erases them first. The CREATE library commands create empty PBLs, giving them the specified comment. The SCC set target command uses the refresh_all parameter, so OrcaScript will repopulate the three PBLs from the tip revisions of all the objects in the SCC provider. The PBG files are used as the "roadmap," which OrcaScript uses to place each object into its respective PBL.

Listing 3.3 Bootstrap Import—Full Refresh of Target from SCC Provider

start session
CREATE library "cashtrak.pbl" "Main Application PBL"
CREATE library "cashtrk2.pbl" "Datawindows"
CREATE library "cashtrk3.pbl" "User Objects and Structures"
SCC get connect properties "C:\PB9\PBNative\Source\cashtrak.pbw"
SCC set connect property userid "PaulH"
SCC Connect
SCC set target "cashtrak.pbt" "refresh_all"
SCC refresh target "full"
SCC Close
end session

The example in Listing 3.4 is similar to the one in Listing 3.3; however, it does not retrieve the tip revisions of the objects from the SCC provider. The combination of REFRESH_ALL and IMPORTONLY tell OrcaScript to use whichever source code files it finds in the local root folder. This allows you to "get" a different revision level from the SCC provider and re-create that configuration in the Target.

Listing 3.4 Bootstrap Import—Full Refresh of Target from Exported Source Files Only

start session
CREATE library "cashtrak.pbl" "Main Application PBL"
CREATE library "cashtrk2.pbl" "Datawindows"
CREATE library "cashtrk3.pbl" "User Objects and Structures"
SCC get connect properties "C:\PB9\PBNative\Source\cashtrak.pbw"
SCC set connect property userid "PaulH"
SCC Connect
SCC set target "cashtrak.pbt" "REFRESH_ALL IMPORTONLY"
SCC refresh target "full"
SCC Close
end session

PowerGen

Any discussion of the deployment of PowerBuilder targets would be lacking without a mention of PowerGen, a third-party tool from ECrane Computing (http://www.ecrane.com). This tool is similar to OrcaScript, in that it is designed to support the regeneration and compilation of PowerBuilder applications. However, PowerGen stores its build instructions in "project" files outside of PowerBuilder (as opposed to Project objects inside the PBLs themselves), and it has a graphical user interface that greatly assists in the development of these project files. PowerGen also possesses a command-line interface, so it's possible to create complex BAT files that automate the entire deployment process.

Figure 3.6 shows the main PowerGen project window, with a typical PFC-based PowerBuilder project loaded. The Applications list shows all the PowerBuilder targets that are to be compiled with the PowerGen project. The project shown in Figure 3.6 has only a single target. The lower half of the screen shows the Library List for the currently selected application. The options in this list provide total control over the regeneration and compilation phase for each PBL in the application's library list. It's possible to exclude entire libraries, such as the PFC/PFE foundation layers, from the regeneration and compile phases.

Figure 3.6Figure 3.6 PowerGen version 5 Project Window.

For a full description of the capabilities of PowerGen, and to download a trial version, visit http://www.ecrane.com.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020