home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a525 / 35.ddi / OS2.STP < prev    next >
Encoding:
Text File  |  1993-03-02  |  48.8 KB  |  1,237 lines

  1. /* Copyright (c) Oracle Corporation 1992. All Rights Reserved */
  2.  
  3. /*****************************************************************************
  4.   NAME
  5.     os2.stp - OS/2 V3 Installation Environment Initialization File for V7
  6.           Oracle products
  7.  
  8.   DESCRIPTION
  9.     This script bootstraps the OS/2 environment for the installation
  10.     of Oracle V7 products. It is always read first by ORAINST for OS/2.
  11.  
  12.   OWNER
  13.     Dan Galatin
  14.  
  15.   MODIFIED   MM/DD/YY Reason
  16.     ekabatch 01/16/92 Complete rewrite for production logic and MVI.
  17.     ekabatch 12/07/92 Made NLS compliant.
  18.     ekabatch 10/29/92 Revised the reinstall and deinstall prompts.
  19.     ekabatch 07/21/92 Added deinstall prompts. Removed environment out of
  20.               date prompt.
  21.     ekabatch 06/18/92 Renamed registry.prd to os2.rgs.
  22.     ekabatch 05/29/92 Accomodated OS_ERROR on translate.
  23.     trodgers 04/24/92 Relocated config.ora to oracle_home\bin for V7.
  24.     ekabatch 04/15/92 Accomodated installer_home change: ORACLE_HOME\orainst.
  25.     ekabatch 02/18/92 Moved registry.prd to install subdirectory.
  26.     ekabatch 01/27/92 Formatted code to Oracle Coding Standards.
  27.     ekabatch 01/26/92 Added resinstall prompts.
  28.     ekabatch 01/20/92 Added logic to handle the case where the user forgets
  29.               to reboot.
  30.     tkelley  01/09/92 Trapped BUFFERS and PRIORITY undefined in CONFIG.SYS.
  31.               Prompt for reboot if CONFIG.SYS changed.
  32.     tkelley  11/21/91 Created.
  33. *****************************************************************************/
  34.  
  35. {
  36.   product_label = nls("product_label","Oracle Installer");
  37.  
  38.   ui_product(product_label);
  39.  
  40.   ui_action(nls("default_language","Looking for a Default Language..."));
  41.  
  42.  
  43.   /* Let the installer know if this is a bootstrapping sequence. */
  44.  
  45.   bootstrap = TRUE;
  46.  
  47.   /* Let the installer know that it is being run from distribution media. */
  48.  
  49.   distribution = TRUE;
  50.  
  51.   /* Be friendly. */
  52.  
  53.   welcome = TRUE;
  54.  
  55.   mark
  56.     {
  57.       { nls_language = default_language(); }
  58.     [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  59.       {
  60.         english = list("English","AMERICAN_AMERICA.US7ASCII");
  61.         brazilian_portuguese = list("Brazilian Portuguese",
  62.                     "BRAZILIAN PORTUGUESE_BRAZIL.WE8PC850");
  63.         czech = list("Czech","CZECH_CZECHOSLOVAKIA.EE8PC852");
  64.         danish = list("Danish","DANISH_DENMARK.DK8PC850");
  65.         dutch = list("Dutch","DUTCH_THE NETHERLANDS.WE8PC850");
  66.         finnish = list("Finnish","FINNISH_FINLAND.SF8PC850");
  67.         french = list("French","FRENCH_FRANCE.WE8PC850");
  68.         german = list("German","GERMAN_GERMANY.WE8PC850");
  69.         greek = list("Greek","GREEK_GREECE.EL8PC437S");
  70.         hungarian = list("Hungarian","HUNGARIAN_HUNGARY.EE8PC852");
  71.         italian = list("Italian","ITALIAN_ITALY.WE8PC850");
  72.         norwegian = list("Norwegian","NORWEGIAN_NORWAY.N8PC850");
  73.         polish = list("Polish","POLISH_POLAND.EE8PC852");
  74.         portuguese = list("Portuguese","PORTUGUESE_PORTUGAL.WE8PC850");
  75.         russian = list("Russian","RUSSIAN_CIS.RU8PC866");
  76.         slovak = list("Slovak","SLOVAK_CZECHOSLOVAKIA.EE8PC852");
  77.         spanish = list("Spanish","SPANISH_SPAIN.WE8PC850");
  78.         swedish = list("Swedish","SWEDISH_SWEDEN.S8PC850");
  79.         turkish = list("Turkish","TURKISH_TURKEY.TR8PC857");
  80.  
  81.         language_prompt = nls("language_prompt","It was not possible to determine which language you normally run Oracle products in. Please select the language would you like to use:");
  82.  
  83.         if (welcome)
  84.           {
  85.         welcome_prompt = nls("welcome_prompt","Welcome to the Oracle Installer.");
  86.         language_prompt = "%welcome_prompt% %language_prompt%";
  87.           }
  88.  
  89.         welcome = FALSE;
  90.  
  91.         language_content = nls("language_content","Language");
  92.         language_help = nls("language_help","You are being asked to select the language you would like to use. The Oracle Installer will run in that language. English text may appear if the installer cannot locate a message it needs. By default, the Oracle products you install will use the language you select as well.");
  93.         lang_list = list(english,brazilian_portuguese,
  94.                  czech,danish,dutch,finnish,french,german,
  95.                  greek,hungarian,italian,
  96.                  norwegian,polish,portuguese,
  97.                  russian,slovak,spanish,swedish,turkish);
  98.  
  99.         language_list = list(first(english),first(brazilian_portuguese),
  100.                  first(czech),
  101.                  first(danish),first(dutch),first(finnish),
  102.                  first(french),first(german),first(greek),
  103.                  first(hungarian),
  104.                  first(italian),
  105.                  first(norwegian),first(polish),
  106.                  first(portuguese),first(russian),
  107.                  first(slovak),first(spanish),first(swedish),
  108.                  first(turkish));
  109.  
  110.         nls_language = single_selection_dialog(language_prompt,language_list,
  111.                            first(english),language_content,
  112.                            language_help);
  113.  
  114.         while(not(nls_language == first(first(lang_list))))
  115.           lang_list = rest(lang_list);
  116.  
  117.         nls_language = first(rest(first(lang_list)));
  118.         
  119.         set_default_language(nls_language);
  120.  
  121.         reopen_resource_file();
  122.       }
  123.        ]
  124.  
  125.       check_environment = nls("check_environment","Checking the Environment...");
  126.  
  127.       ui_action(check_environment);
  128.  
  129.       mark
  130.     {
  131.       { the_customer_name = customer_name(); }
  132.         [ 'UNKNOWN_CUSTOMER:
  133.           {
  134.         customer_prompt = nls("customer_prompt","Please enter the name of the company to which this Oracle product has been licensed:");
  135.  
  136.         if (welcome)
  137.           {
  138.             welcome_prompt = nls("welcome_prompt","Welcome to the Oracle Installer.");
  139.             customer_prompt = "%welcome_prompt% %customer_prompt%";
  140.           }
  141.  
  142.         welcome = FALSE;
  143.         
  144.         customer_content = nls("customer_content","Customer Name");
  145.         customer_help = nls("customer_help","You are being asked to enter the name of the company to which this copy of Oracle has been licensed. This information will be internally recorded for licensing purposes.");
  146.  
  147.         the_customer_name = "";
  148.  
  149.         while (the_customer_name == "")
  150.           the_customer_name = text_dialog(customer_prompt,"",
  151.                           customer_content,
  152.                           customer_help);
  153.  
  154.         { save_customer_name(the_customer_name); }
  155.           [ 'WRITE_ERROR: continue();
  156.             'WRITE_PROTECTED: continue(); ]
  157.           }
  158.         ]
  159.  
  160.       ui_action(nls("identifying_boot_drive","Identifying the Boot Drive..."));
  161.  
  162.       boot_drive = dos_boot_drive();
  163.  
  164.       if (boot_drive == "A")
  165.         {
  166.           mapped_drives = dos_mapped_drives();
  167.  
  168.           extract(mapped_drives,"A"); extract(mapped_drives,"B");
  169.  
  170.           boot_drive_prompt = nls("boot_drive_prompt","Please select the drive from which you boot your computer:");
  171.  
  172.           if (welcome)
  173.         {
  174.           welcome_prompt = nls("welcome_prompt","Welcome to the Oracle Installer.");
  175.           boot_drive_prompt = "%welcome_prompt% %boot_drive_prompt%";
  176.         }
  177.  
  178.           welcome = FALSE;
  179.  
  180.           boot_drive_content = nls("boot_drive_content","Boot Drive");
  181.           boot_drive_help = nls("boot_drive_help","You are being asked to identify the drive from which you boot your computer because you booted your computer from floppy disk. Booting your computer from a floppy disk drive is not a supported configuration for Oracle products in the OS/2 environment.");
  182.  
  183.           boot_drive = single_selection_dialog(boot_drive_prompt,
  184.                            mapped_drives,
  185.                            boot_drive_content,
  186.                            boot_drive_help);
  187.         }
  188.  
  189.       ui_action(nls("locate_home","Locating Oracle Home..."));
  190.  
  191.       has_mvi_oracle_home = FALSE;
  192.       has_v7_oracle_home = FALSE;
  193.       has_v6_oracle_home = FALSE;
  194.       has_matching_homes = FALSE;
  195.       has_matching_configurations = FALSE;
  196.  
  197.       {
  198.         {
  199.           { ora_config = translate("ORA_CONFIG"); }
  200.         [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  201.           {
  202.             path = translate("PATH");
  203.  
  204.             exploded_path = explode(path,";");
  205.  
  206.             found = FALSE;
  207.  
  208.             if (not(empty(exploded_path)))
  209.               while (not(found))
  210.             {
  211.               path_member = first(exploded_path);
  212.  
  213.               if ((length(path_member) == 3) &&
  214.                   contains(path_member,":\"))
  215.                 original_ora_config = "%path_member%CONFIG.ORA";
  216.               else
  217.                 original_ora_config = "%path_member%\CONFIG.ORA";
  218.  
  219.               {
  220.                 if (exists(original_ora_config))
  221.                   {
  222.                 ora_config = original_ora_config;
  223.                 found = TRUE;
  224.                   }
  225.               }
  226.                 [ 'INVALID_FILE_NAME: continue();
  227.                   'PERMISSION_DENIED: continue();
  228.                   'OS_ERROR: continue(); ]
  229.  
  230.               exploded_path = rest(exploded_path);
  231.             }
  232.  
  233.             ora_config = ora_config;
  234.           }
  235.         ]
  236.  
  237.           oracle_home = v7_translate("ORACLE_HOME");
  238.  
  239.           pathify(ora_config); pathify(oracle_home);
  240.  
  241.           if (not(exists(oracle_home)))
  242.         signal('UNBOUND_ENVIRONMENT_VARIABLE);
  243.  
  244.           has_v7_oracle_home = TRUE;
  245.  
  246.           {
  247.         v7_translate("MULTIVERSION_ORACLE_HOME");
  248.  
  249.         has_mvi_oracle_home = TRUE;
  250.           }
  251.         [ 'OS_ERROR: continue();
  252.           'UNBOUND_ENVIRONMENT_VARIABLE: continue(); ]
  253.           {
  254.         v6_ora_config = v6_translate("%%CONFIG%%");
  255.         v6_oracle_home = v6_translate("%%ORACLE_HOME%%");
  256.  
  257.         pathify(v6_ora_config); pathify(v6_oracle_home);
  258.  
  259.         if (not(exists(oracle_home)))
  260.           signal('UNBOUND_ENVIRONMENT_VARIABLE);
  261.  
  262.         has_v6_oracle_home = TRUE;
  263.  
  264.         has_matching_homes = (oracle_home == v6_oracle_home);
  265.         has_matching_configurations = (ora_config == v6_ora_config);
  266.           }
  267.         [ 'OS_ERROR: continue();
  268.           'UNBOUND_ENVIRONMENT_VARIABLE: continue(); ]
  269.         }
  270.           [ 'OS_ERROR: signal('UNBOUND_ENVIRONMENT_VARIABLE);
  271.         'UNBOUND_VARIABLE: signal('UNBOUND_ENVIRONMENT_VARIABLE); ]
  272.       }
  273.         [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  274.           {
  275.         ora_config = v6_translate("%%CONFIG%%");
  276.         oracle_home = v6_translate("%%ORACLE_HOME%%");
  277.  
  278.         pathify(ora_config); pathify(oracle_home);
  279.  
  280.         if (not(exists(oracle_home)))
  281.           signal('UNBOUND_ENVIRONMENT_VARIABLE);
  282.  
  283.         has_v6_oracle_home = TRUE;
  284.           }
  285.         [ 'OS_ERROR: { oracle_home = "%boot_drive%:\ORAOS2";
  286.                    ora_config = "%oracle_home%\XBIN\CONFIG.ORA"; }
  287.           'UNBOUND_ENVIRONMENT_VARIABLE:
  288.                  { oracle_home = "%boot_drive%:\ORAOS2";
  289.                    ora_config = "%oracle_home%\XBIN\CONFIG.ORA"; }
  290.         ]
  291.         ]
  292.  
  293.       mark
  294.         {
  295.           select_home_prompt = nls("select_home_prompt","Enter the complete path to which you wish to install Oracle products:");
  296.           select_home_content = nls("select_home_content","Oracle Home");
  297.           select_home_help = nls("select_home_help","You are being asked to select the location to which Oracle products are to be installed.");
  298.  
  299.           if (has_mvi_oracle_home)
  300.         additional_home_help = instantiate(nls("mvi_home_help","
  301.  
  302. A Multiple Version Oracle Home was located at '%%oracle_home%%'."));
  303.           else if (has_v7_oracle_home)
  304.         additional_home_help = instantiate(nls("v7_home_help","
  305.  
  306. An Oracle 7 Home was located at '%%oracle_home%%'."));
  307.           else if (has_v6_oracle_home)
  308.         additional_home_help = instantiate(nls("v6_home_help","
  309.  
  310. An old Oracle Home was located at '%%oracle_home%%'."));
  311.           else
  312.         additional_home_help = nls("no_home_help","
  313.  
  314. An Oracle Home could not be located.");
  315.  
  316.           select_home_help = "%select_home_help% %additional_home_help%";
  317.  
  318.           if (has_v7_oracle_home)
  319.         {
  320.           if (has_mvi_oracle_home)
  321.             oracle_home_name = "Multiple Version Oracle Home";
  322.           else
  323.             oracle_home_name = "Oracle 7 Home";
  324.  
  325.           if (not(has_v6_oracle_home) || not(has_matching_homes))
  326.             {
  327.               additional_home_help = instantiate(nls("no_v6_home_help","
  328.  
  329. WARNING: There is a problem with your %%oracle_home_name%% configuration. Older Oracle products cannot properly locate your Oracle Home. Proceeding with this installation will correct this problem or provide more information about it."));
  330.  
  331.               select_home_help = "%select_home_help% %additional_home_help%";
  332.             }
  333.           else if (not(has_matching_configurations))
  334.             {
  335.               additional_home_help = instantiate(nls("mismatching_configurations_help","
  336.  
  337. WARNING: Two separate configuration files have been located. '%%ora_config%%' is used by %%oracle_home_name%% products. '%%v6_ora_config%%' is used by older Oracle products. Proceeeding with this installation will correct this problem by only configuring the use of '%%ora_config%%' only."));
  338.  
  339.               select_home_help = "%select_home_help% %additional_home_help%";
  340.             }
  341.         }
  342.  
  343.               ui_action(nls("verify_home","Verifying Oracle Home..."));
  344.  
  345.           migrate_oracle_home = FALSE;
  346.  
  347.           oracle_home_unselected = TRUE;
  348.           while (oracle_home_unselected)
  349.         {
  350.           if (welcome)
  351.             {
  352.               welcome_prompt = nls("welcome_prompt","Welcome to the Oracle Installer.");
  353.               select_home_prompt = "%welcome_prompt% %select_home_prompt%";
  354.             }
  355.  
  356.           welcome = FALSE;
  357.  
  358.           directory = text_dialog(select_home_prompt,oracle_home,
  359.                       select_home_content,
  360.                       select_home_help);
  361.           pathify(directory);
  362.  
  363.           mark
  364.             if ((has_v7_oracle_home && not(has_mvi_oracle_home)) ||
  365.             (not(has_v7_oracle_home) && has_v6_oracle_home))
  366.               if (directory == oracle_home)
  367.             {
  368.               migration_prompt = instantiate(nls("migration_prompt","'%%directory%%' is your current Oracle Home. It is not possible to install new Oracle products to '%%directory%%' unless it is migrated to a Multiple Version Oracle Home. After you have migrated an Oracle Home, it will not be possible to use older versions of the Oracle Installer to install products there anymore. Are you sure you want to migrate the products you have installed in '%%directory%%'?"));
  369.               migration_content = nls("migration_content","Migration");
  370.               migration_help = instantiate(nls("migration_help","The process of migrating your current Oracle Home, '%%directory%%' will enable you to install multiple versions of future Oracle products. Some changes you may notice are:
  371.  
  372. '%%directory%%\XBIN' will go on your path instead of '%%directory%%\BIN'.
  373.  
  374. Configurable execution stubs for all Oracle executables are placed in the '%%directory%%\XBIN' directory.
  375.  
  376. After you migrate your Oracle Home, you will not be able to use the older Version 2 installer. This installer can install older products distributed with the Version 2 installer."));
  377.  
  378.               migrate_oracle_home = yesno_dialog(migration_prompt,
  379.                                  TRUE,
  380.                                  migration_content,
  381.                                  migration_help);
  382.  
  383.               if (not(migrate_oracle_home))
  384.                 continue();
  385.             }
  386.               else
  387.             {
  388.               unusable_home_prompt = instantiate(nls("unusable_home_prompt","Choosing to install Oracle products into '%%directory%%' will render the Oracle products installed in '%%oracle_home%%' temporarily unusable. Futhermore, it will not be possible to use the products to be installed in '%%directory%%' and the products previously installed in '%%oracle_home%%' together. Are you sure you want to install new Oracle products in '%%directory%%'?"));
  389.               unusable_home_content = nls("unusable_home_content","Multiple Homes");
  390.               unusable_home_help = instantiate(nls("unusable_home_help","Choosing to install Oracle products into '%%directory%%' will render the Oracle products installer in '%%oracle_home%%' temporarily unusable because it will be necessary to change the Oracle configuration variable, CONFIG, to point to your new Oracle Home.
  391.  
  392. It is recommended that you choose your current Oracle Home, '%%oracle_home%%', instead."));
  393.  
  394.               if (not(yesno_dialog(unusable_home_prompt,FALSE,
  395.                            unusable_home_content,
  396.                            unusable_home_help)))
  397.                 continue();
  398.             }
  399.  
  400.           mark
  401.             { make_directory(directory); }
  402.               [ 'WRITE_ERROR:
  403.               {
  404.                 write_error_prompt = nls("write_error_prompt","It was not possible to create the directory '%%directory%%'. This could have been caused by not having the write permissions needed to create the specified directory. Please correct the problem or choose another directory.");
  405.                 information_dialog(instantiate(write_error_prompt));
  406.               }
  407.             'FILE_NOT_FOUND:
  408.               {
  409.                 file_not_found_prompt = nls("file_not_found_prompt","The directory you specified, '%%directory%%', is not valid. This could have been caused by entering an improper path or by requiring the Oracle Installer to make more than one directory. Please correct the problem or choose another directory.");
  410.                 information_dialog(instantiate(file_not_found_prompt));
  411.               }
  412.             'OS_ERROR:
  413.               {
  414.                 os_error_prompt = nls("os_error_prompt","The directory you specified, '%%directory%%', could not be created. This could have been caused because a file already exists by that name. Please correct the problem or choose another directory.");
  415.                 information_dialog(instantiate(os_error_prompt));
  416.               }
  417.               ]
  418.  
  419.           /* Make sure the Oracle Home directories exist. */
  420.  
  421.           mark
  422.             {
  423.               {
  424.             subdirectory = "%directory%\XBIN";
  425.             make_directory(subdirectory);
  426.  
  427.             subdirectory = "%directory%\DBS";
  428.             make_directory(subdirectory);
  429.  
  430.             subdirectory = "%directory%\DLL";
  431.             make_directory(subdirectory);
  432.  
  433.             subdirectory = "%directory%\ORAINST";
  434.             make_directory(subdirectory);
  435.  
  436.             oracle_home_unselected = FALSE;
  437.                }
  438.              [ 'WRITE_ERROR:
  439.                 {
  440.                   sub_write_error_prompt = nls("sub_write_error_prompt","It was not possible to create the directory '%%subdirectory%%'. This could have been caused by not having the write permissions needed to create the specified directory. Please correct the problem or choose another directory.");
  441.                   information_dialog(instantiate(write_error_prompt));
  442.                   signal('CLEANUP);
  443.                 }
  444.               'FILE_NOT_FOUND:
  445.                 {
  446.                   sub_file_not_found_prompt = nls("sub_file_not_found_prompt","The directory, '%%subdirectory%%', is not valid. It is unclear why this is the case. Please correct the problem or choose another directory.");
  447.                   information_dialog(instantiate(file_not_found_prompt));
  448.                   signal('CLEANUP);
  449.                 }
  450.               'OS_ERROR:
  451.                 {
  452.                   sub_os_error_prompt = nls("sub_os_error_prompt","The directory, '%%subdirectory%%', could not be created. This could have been caused because a file already exists by that name. Please correct the problem or choose another directory.");
  453.                   information_dialog(instantiate(os_error_prompt));
  454.                   signal('CLEANUP);
  455.                 }
  456.             ]
  457.             }
  458.               [ 'CLEANUP: {
  459.                     { remove_directory("%directory%\ORAINST"); }
  460.                       [ 'WRITE_ERROR: continue();
  461.                     'OS_ERROR: continue(); ]
  462.                     { remove_directory("%directory%\DLL"); }
  463.                       [ 'WRITE_ERROR: continue();
  464.                     'OS_ERROR: continue(); ]
  465.                     { remove_directory("%directory%\DBS"); }
  466.                       [ 'WRITE_ERROR: continue();
  467.                     'OS_ERROR: continue(); ]
  468.                     { remove_directory("%directory%\XBIN"); }
  469.                       [ 'WRITE_ERROR: continue();
  470.                     'OS_ERROR: continue(); ]
  471.                    }
  472.               ]
  473.         }
  474.  
  475.           if (oracle_home != directory)
  476.         {
  477.           oracle_home = directory;
  478.  
  479.           {
  480.             { modify("EJDKT","Absolutely Stellar",ora_config); }
  481.              [ 'INVALID_FILE_NAME: signal('OS_ERROR);
  482.                'PERMISSION_DENIED: signal('OS_ERROR);
  483.                'WRITE_ERROR: signal('OS_ERROR);
  484.                'FILE_NOT_FOUND: signal('OS_ERROR);
  485.                'OS_ERROR: signal('OS_ERROR); ]
  486.           }
  487.            [ 'OS_ERROR: ora_config = "%oracle_home%\XBIN\CONFIG.ORA"; ]
  488.         }
  489.  
  490.           ui_action(check_environment);
  491.  
  492.           config_needs_change = FALSE;
  493.           change_buffers_value = FALSE;
  494.           has_buffers_value = FALSE;
  495.           add_xbin_directory = FALSE;
  496.           remove_bin_directory = FALSE;
  497.           move_config_file = FALSE;
  498.           add_dll_directory = FALSE;
  499.           add_config_variable = FALSE;
  500.           set_config_variable = FALSE;
  501.           add_ora_config_variable = FALSE;
  502.           set_ora_config_variable = FALSE;
  503.           path_needs_change = FALSE;
  504.           config_is_wrong = FALSE;
  505.           oraconfig_is_wrong = FALSE;
  506.  
  507.           if (exists("%boot_drive%:\CONFIG.SYS"))
  508.         copy_file("%boot_drive%:\CONFIG.SYS",
  509.               "%boot_drive%:\CONFIG.NEW");
  510.           else
  511.         create_file("%boot_drive%:\CONFIG.NEW");
  512.  
  513.           {
  514.         current_buffers_value = translate("BUFFERS",
  515.                           "%boot_drive%:\CONFIG.NEW");
  516.  
  517.         has_buffers_value = TRUE;
  518.  
  519.         {
  520.           if (current_buffers_value < 30)
  521.             signal('UNBOUND_ENVIRONMENT_VARIABLE);
  522.         }
  523.           [ 'TYPE_MISMATCH: signal('UNBOUND_ENVIRONMENT_VARIABLE); ]
  524.           }
  525.         ['UNBOUND_ENVIRONMENT_VARIABLE:
  526.           {
  527.             modify("BUFFERS","30","%boot_drive%:\CONFIG.NEW");
  528.             config_needs_change = TRUE;
  529.             change_buffers_value = TRUE;
  530.           } ]
  531.  
  532.           {
  533.         path = translate("PATH");
  534.  
  535.         if (not(contains(path,"%oracle_home%\XBIN")))
  536.           signal('UNBOUND_ENVIRONMENT_VARIABLE);
  537.  
  538.         if (contains(path,"%oracle_home%\BIN"))
  539.           signal('UNBOUND_ENVIRONMENT_VARIABLE);
  540.  
  541.         exploded_path = explode(path,";");
  542.           }
  543.         [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  544.           {
  545.             variable = "SET PATH";
  546.             separator = " = ";
  547.  
  548.             { { path = translate(variable,
  549.                      "%boot_drive%:\CONFIG.NEW",
  550.                      separator); }
  551.             [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  552.               { variable = "PATH";
  553.                 { path = translate(variable,
  554.                            "%boot_drive%:\CONFIG.NEW",
  555.                            separator); }
  556.                   [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  557.                 { separator = " ";           
  558.                   { path = translate(variable,
  559.                              "%boot_drive%:\CONFIG.NEW",
  560.                              separator); }
  561.                     [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  562.                     { path = ""; continue(); } ] 
  563.                    } ]
  564.               } ]
  565.             }
  566.  
  567.             if (not(contains(path,"%oracle_home%\XBIN")))
  568.               {
  569.             path = "%oracle_home%\XBIN;%path%";
  570.             modify(variable,path,
  571.                    "%boot_drive%:\CONFIG.NEW",separator);
  572.             config_needs_change = TRUE;
  573.             add_xbin_directory = TRUE;
  574.               }
  575.  
  576.             exploded_path = explode(path,";");
  577.  
  578.             if (member(exploded_path,"%oracle_home%\BIN"))
  579.               {
  580.             extract(exploded_path,"%oracle_home%\BIN");
  581.             path = implode(exploded_path,";");
  582.             modify(variable,path,
  583.                    "%boot_drive%:\CONFIG.NEW",separator);
  584.             config_needs_change = TRUE;
  585.             remove_bin_directory = TRUE;
  586.               }
  587.  
  588.             if (not(add_xbin_directory) && not(remove_bin_directory))
  589.              { path_needs_change = TRUE;
  590.                path_problem_prompt = nls("path_problem_prompt","The PATH variable is correctly set in your CONFIG.SYS file, but is incorrect in the environment. Oracle products will not function properly until the PATH variable has been corrected.");
  591.                path_problem_content = nls("path_problem_content","PATH Problem");
  592.                path_problem_help = nls("path_problem_help","The PATH variable is correctly set in your CONFIG.SYS file, but is incorrect in the environment. This problem may have arisen from a manual change of the PATH variable, in which case rebooting your computer will resolve the problem. It is also possible that your PATH variable has been changed by some other software you are running or by an OS/2 shell initialization command file. In that case, it is necessary for you to track the problem manually." );
  593.  
  594.                information_dialog(path_problem_prompt,
  595.                       path_problem_content,
  596.                       path_problem_help);
  597.              }
  598.           }
  599.         ]
  600.  
  601.           if (not(member(exploded_path,directory_name(ora_config))))
  602.         ora_config = "%oracle_home%\XBIN\CONFIG.ORA";
  603.  
  604.           { libpath = translate("libpath","%boot_drive%:\CONFIG.NEW"); }
  605.         [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  606.             { libpath = ""; continue(); } ]
  607.  
  608.           if (not(contains(libpath,"%oracle_home%\DLL")))
  609.         {
  610.           libpath = "%oracle_home%\DLL;%libpath%";
  611.           modify("LIBPATH",libpath,"%boot_drive%:\CONFIG.NEW");
  612.           config_needs_change = TRUE;
  613.           add_dll_directory = TRUE;
  614.         }
  615.  
  616.           {
  617.         {
  618.           ora_config_value = translate("ORA_CONFIG");
  619.  
  620.           if (ora_config_value != ora_config)
  621.             {
  622.               {
  623.             current_ora_config_value = translate("SET ORA_CONFIG",
  624.                                  "%boot_drive%:\CONFIG.NEW");
  625.             pathify(current_ora_config_value);
  626.  
  627.             if (current_ora_config_value != ora_config)
  628.               {
  629.                 set_ora_config_variable = TRUE;
  630.                 signal('UNBOUND_ENVIRONMENT_VARIABLE);
  631.               }
  632.                         oraconfig_is_wrong = TRUE;
  633.             ora_config_problem_prompt = nls("ora_config_problem_prompt","The ORA_CONFIG variable is correctly set in your CONFIG.SYS file, but is incorrect in the environment. Oracle products will not function properly until the ORA_CONFIG variable has been corrected.");
  634.             ora_config_problem_content = nls("ora_config_problem_content","ORA_CONFIG Problem");
  635.             ora_config_problem_help = nls("ora_config_problem_help","The ORA_CONFIG variable is correctly set in your CONFIG.SYS file to '%%current_ora_config_value%%', but is incorrectly set in the environment to '%%ora_config_value%%'. This problem may have arisen from a manual change of the ORA_CONFIG variable, in which case rebooting your computer will resolve the problem. It is also possible that your ORA_CONFIG variable has been changed by some other software you are running or by an OS/2 shell initialization command file. In that case, it is necessary for you to track the problem manually. One possible solution to the ORA_CONFIG problem is to remove it from your CONFIG.SYS file and ensure that your CONFIG.ORA file is on your PATH." );
  636.  
  637.             information_dialog(ora_config_problem_prompt,
  638.                        ora_config_problem_content,
  639.                        instantiate(ora_config_problem_help));
  640.               }
  641.             [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  642.               {
  643.                 modify("SET ORA_CONFIG",ora_config,
  644.                    "%boot_drive%:\CONFIG.NEW");
  645.                 add_ora_config_variable = TRUE;
  646.                 config_needs_change = TRUE;
  647.               }
  648.             ]
  649.             }
  650.         }
  651.           [ 'OS_ERROR: signal('UNBOUND_ENVIRONMENT_VARIABLE); ]
  652.           }
  653.         [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  654.           {
  655.             if (not(empty(exploded_path)))
  656.               {
  657.             ora_config_directory = directory_name(ora_config);
  658.  
  659.             found = FALSE;
  660.  
  661.             while (not(found))
  662.               {
  663.                 path_member = first(exploded_path);
  664.  
  665.                 if ((length(path_member) == 3) &&
  666.                 contains(path_member,":\"))
  667.                   potential_ora_config = "%path_member%CONFIG.ORA";
  668.                 else
  669.                   potential_ora_config = "%path_member%\CONFIG.ORA";
  670.  
  671.                 if (path_member == ora_config_directory)
  672.                   found = TRUE;
  673.                 else if (exists(potential_ora_config))
  674.                   {
  675.                 path_anomaly_prompt = nls("path_anomaly_prompt","There is a CONFIG.ORA file on your PATH which supercedes the CONFIG.ORA file that the installer is attempting to configure. Oracle products will not function properly until this problem has been corrected.");
  676.                 path_anomaly_content = nls("path_anomaly_content","PATH Problem");
  677.                 path_anomaly_help = nls("path_anomaly_help","There is a CONFIG.ORA file in the directory '%%path_member%%' which is superceding the CONFIG.ORA file in the directory '%%ora_config_directory%%'. Oracle products search for the CONFIG.ORA file on the PATH and will find '%%potential_ora_config%%' before they find '%%ora_config_directory%%\CONFIG.ORA', leading to unpredictable results. To correct the problem, either eliminate the '%%potential_ora_config%%' file or rearrange the elements of your path so that '%%ora_config_directory%%' comes before '%%path_member%%'.");
  678.  
  679.                 information_dialog(path_anomaly_prompt,
  680.                            path_anomaly_content,
  681.                            instantiate(path_anomaly_help));
  682.  
  683.                 found = TRUE;
  684.                   }
  685.                 else
  686.                   exploded_path = rest(exploded_path);
  687.  
  688.                 /* This Should Never Happen. */
  689.                 if (empty(exploded_path))
  690.                   found = TRUE;
  691.               }
  692.               }
  693.           }
  694.         ]
  695.  
  696.           {
  697.         {
  698.           if (v6_translate("%%CONFIG%%") != ora_config)
  699.             signal('UNBOUND_ENVIRONMENT_VARIABLE);
  700.         }
  701.          [ 'OS_ERROR: signal('UNBOUND_ENVIRONMENT_VARIABLE); ]
  702.           }
  703.         [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  704.           {
  705.             current_config_value = translate("SET CONFIG",
  706.                              "%boot_drive%:\CONFIG.NEW");
  707.             pathify(current_config_value);
  708.  
  709.             if (current_config_value != ora_config)
  710.               {
  711.             set_config_variable = TRUE;
  712.             signal('unbound_environment_variable);
  713.               }
  714.             else
  715.               {
  716.             { wrong_config_value = translate("CONFIG"); }
  717.               [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  718.                  wrong_config_value = ""; ]
  719.             config_is_wrong = TRUE;
  720.             config_problem_prompt = nls("config_problem_prompt","The CONFIG variable is correctly set in your CONFIG.SYS file, but is incorrect in the environment. Oracle products will not function properly until the CONFIG variable has been corrected.");
  721.             config_problem_content = nls("config_problem_content","CONFIG Problem");
  722.             config_problem_help = nls("config_problem_help","The CONFIG variable is correctly set in your CONFIG.SYS file to '%current_config_value%', but is incorrectly set in the environment to '%wrong_config_value%'. This problem may have arisen from a manual change of the CONFIG variable, in which case rebooting your computer will resolve the problem. It is also possible that your CONFIG variable has been changed by some other software you are running or by an OS/2 shell initialization command file. In that case, it is necessary for you to track the problem manually." );
  723.  
  724.             information_dialog(config_problem_prompt,
  725.                        config_problem_content,
  726.                        config_problem_help);
  727.               }
  728.           }
  729.             [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  730.               {
  731.             modify("SET CONFIG",ora_config,
  732.                    "%boot_drive%:\CONFIG.NEW");
  733.             config_needs_change = TRUE;
  734.             add_config_variable = TRUE;
  735.               } ]
  736.         ]
  737.  
  738.           if (config_needs_change)
  739.            {
  740.          changes_needed_prompt = instantiate(nls("changes_needed_prompt","Changes to the file %%boot_drive%%:\CONFIG.SYS file are needed. Would you like the changes to be made automatically?"));
  741.  
  742.          changes_needed_content = nls("changes_needed_content","Configuration");
  743.          changes_needed_help = instantiate(nls("changes_needed_help","The needed changes to your %%boot_drive%%:\CONFIG.SYS file are as follows:"));
  744.  
  745.          if (change_buffers_value)
  746.            {
  747.              if (has_buffers_value)
  748.                additional_changes_help = instantiate(nls("has_buffers_value","
  749.  
  750. The BUFFERS variable is currently set to '%%current_buffers_value%%'. It needs to be set to a value of at least '30'."));
  751.              else
  752.                additional_changes_help = nls("has_no_buffers_value","
  753.  
  754. The BUFFERS variable is currently unset. It needs to be set to a value of at least '30'.");
  755.  
  756.              changes_needed_help = "%changes_needed_help% %additional_changes_help%";
  757.            }
  758.          
  759.          if (add_xbin_directory)
  760.            {
  761.              if (remove_bin_directory)
  762.                additional_changes_help = instantiate(nls("add_xbin_remove_bin_directory","
  763.  
  764. The PATH variable includes the outdated '%%oracle_home%%\BIN' directory. It needs to include the '%%oracle_home%%\XBIN' directory instead."));
  765.              else
  766.                additional_changes_help = instantiate(nls("add_xbin_directory","
  767.  
  768. The PATH variable needs to include the '%%oracle_home%%\XBIN' directory."));
  769.  
  770.  
  771.              changes_needed_help = "%changes_needed_help% %additional_changes_help%";
  772.            }
  773.          else if (remove_bin_directory)
  774.            {
  775.              additional_changes_help = instantiate(nls("remove_bin_directory","
  776.  
  777. The PATH variable currently includes the outdated '%%oracle_home%%\BIN' directory."));
  778.  
  779.              changes_needed_help = "%changes_needed_help% %additional_changes_help%";
  780.            }
  781.          
  782.          if (add_dll_directory)
  783.            {
  784.              additional_changes_help = instantiate(nls("add_dll_directory","
  785.  
  786. The LIBPATH variable needs to include the '%%oracle_home%%\DLL' directory."));
  787.  
  788.              changes_needed_help = "%changes_needed_help% %additional_changes_help%";
  789.            }
  790.  
  791.          if (set_ora_config_variable)
  792.            {
  793.              additional_changes_help = instantiate(nls("set_ora_config_variable","
  794.  
  795. The ORA_CONFIG variable is currently set to '%%current_ora_config_value%%'. It needs to be set to '%%ora_config%%'."));
  796.  
  797.              changes_needed_help = "%changes_needed_help% %additional_changes_help%";
  798.            }
  799.          else if (add_ora_config_variable)
  800.            {
  801.              additional_changes_help = instantiate(nls("add_ora_config_variable","
  802.  
  803. The ORA_CONFIG variable is currently unset. It needs to be set to '%%ora_config%%'."));
  804.  
  805.              changes_needed_help = "%changes_needed_help% %additional_changes_help%";
  806.            }
  807.  
  808.          if (set_config_variable)
  809.            {
  810.              additional_changes_help = instantiate(nls("set_config_variable","
  811.  
  812. The CONFIG variable is currently set to '%%current_config_value%%'. It needs to be set to '%%ora_config%%'."));
  813.  
  814.              changes_needed_help = "%changes_needed_help% %additional_changes_help%";
  815.            }         
  816.          else if (add_config_variable)
  817.            {
  818.              additional_changes_help = instantiate(nls("add_config_variable","
  819.  
  820. The CONFIG variable is currently unset. It needs to be set to '%%ora_config%%'."));
  821.  
  822.              changes_needed_help = "%changes_needed_help% %additional_changes_help%";
  823.            }
  824.  
  825.          mark
  826.            config_has_been_changed = yesno_dialog(changes_needed_prompt,TRUE,changes_needed_content,changes_needed_help);
  827.  
  828.          if (config_has_been_changed)
  829.            {
  830.              copy_file("%boot_drive%:\CONFIG.SYS",
  831.                    "%boot_drive%:\CONFIG.BAK");
  832.              copy_file("%boot_drive%:\CONFIG.NEW",
  833.                    "%boot_drive%:\CONFIG.SYS");
  834.              remove_file("%boot_drive%:\CONFIG.NEW");
  835.            }
  836.            }
  837.           else
  838.            /* No Changes Were Necessary. */
  839.            remove_file("%boot_drive%:\CONFIG.NEW");
  840.  
  841.           ui_action(nls("installing_stubs","Installing Multiple Version Oracle Home Stubs..."));
  842.  
  843.           copy_file("ORAXRUN.EXE","%oracle_home%\XBIN\");
  844.           copy_file("ORASTUB.EXE","%oracle_home%\XBIN\");
  845.           copy_file("MAKESTUB.EXE","%oracle_home%\XBIN\");
  846.  
  847.           ui_action(nls("installing_compatibility","Installing Backward Compatibility..."));
  848.  
  849.           copy_file("V2BACK.MAP","%oracle_home%\ORAINST\");
  850.           copy_file("V2BACK.VRF","%oracle_home%\ORAINST\");
  851.           copy_file("V2BACK.INS","%oracle_home%\ORAINST\");
  852.           copy_file("V2BACK.DEI","%oracle_home%\ORAINST\");
  853.           copy_file("V2BACK.US","%oracle_home%\ORAINST\");
  854.  
  855.           mark
  856.         if (migrate_oracle_home)
  857.           {
  858.             ui_action(nls("removing_outdated_installer","Removing Outdated Oracle Installer..."));
  859.  
  860.             remove_file("%oracle_home%\BIN\ORAINST.EXE");
  861.             remove_file("%oracle_home%\BIN\OCOPY.EXE");
  862.             remove_file("%oracle_home%\BIN\ODECOMPR.EXE");
  863.             remove_file("%oracle_home%\BIN\OLANGABB.EXE");
  864.             remove_file("%oracle_home%\BIN\CHKALL.EXE");
  865.             remove_file("%oracle_home%\BIN\INSTLOAD.EXE");
  866.             remove_file("%oracle_home%\BIN\ORAINST1.EXE");
  867.             remove_file("%oracle_home%\DBS\SYSINIT.ORI");
  868.  
  869.             /* Migrate Existing REGISTER.ORA and FILELIST.ORA */
  870.  
  871.             if (not(exists("%oracle_home%\ORAINST\OS2.RGS")))
  872.               {
  873.             if (exists("%oracle_home%\DBS\REGISTER.ORA") &&
  874.                 exists("%oracle_home%\DBS\FILELIST.ORA"))
  875.               {
  876.                 /* Must do this before calling stubify */
  877.                 dos_stub_name = "%oracle_home%\XBIN\ORASTUB.EXE";
  878.                 { dos_stub_size = size(dos_stub_name); }
  879.                  [ 'OS_ERROR: dos_stub_size = 0;
  880.                    'FILE_NOT_FOUND: dos_stub_size = 0;
  881.                    'INVALID_FILE_NAME: dos_stub_size = 0;
  882.                    'PERMISSION_DENIED: dos_stub_size = 0; ]
  883.  
  884.                 the_registry_list = list();
  885.  
  886.                 v2_number = 1;
  887.  
  888.                 migrating_product_number = nls("migrating_product_number","Migrating Product Number %%v2_number%%...");
  889.                 migrating_product_with_name = nls("migrating_product_with_name","Migrating Product Number %%v2_number%%: %%v2_name%%...");
  890.  
  891.                 while (v2_number < 82)
  892.                   {
  893.                 ui_action(instantiate(migrating_product_number));
  894.  
  895.                 { v2_registration = translate("%v2_number%",
  896.                                   "%oracle_home%\DBS\REGISTER.ORA",
  897.                                   " "); }
  898.                   ['UNBOUND_ENVIRONMENT_VARIABLE: v2_registration = ""; ]
  899.  
  900.                 if (length(v2_registration) > 0)
  901.                   {
  902.                     v2_registration_list = explode(v2_registration," ");
  903.  
  904.                     v2_version = first(v2_registration_list);
  905.  
  906.                     v2_registration = implode(rest(v2_registration_list)," ");
  907.  
  908.                     v2_filename = "v2back%v2_number%";
  909.  
  910.                     v2_comment = "";
  911.  
  912.                     copy_file("V2BACK.DEI",
  913.                           "%oracle_home%\ORAINST\%v2_filename%.DEI");
  914.  
  915.                     deinstl = make_group("deinstl");
  916.                     add_component(deinstl,"",
  917.                           "%v2_filename%.DEI",
  918.                           "%%installer_home%%\",
  919.                           size("%oracle_home%\ORAINST\%v2_filename%.DEI"));
  920.                     add_component(deinstl,"",
  921.                           "%v2_filename%.MAP",
  922.                           "%%installer_home%%\",0);
  923.  
  924.                     if (contains(v2_registration,"!"))
  925.                       v2_name = implode(explode(first(explode(v2_registration,"!")))," ");
  926.                     else
  927.                       v2_name = v2_registration;
  928.  
  929.                     exploded_v2_name = explode(v2_name);
  930.  
  931.                     name_entry = exploded_v2_name;
  932.  
  933.                     while (not(empty(name_entry)))
  934.                       if (first(name_entry) == "Rev")
  935.                     {
  936.                       v2_comment = implode(name_entry," ");
  937.  
  938.                       while (not(empty(name_entry)))
  939.                         extract(name_entry,
  940.                             first(name_entry));
  941.                     }
  942.                       else if (first(name_entry) == "Support")
  943.                     {
  944.                       name_entry = rest(name_entry);
  945.  
  946.                       if (first(name_entry) == "Patch")
  947.                         {
  948.                           v2_comment = "Support Patch";
  949.                           while (not(empty(name_entry)))
  950.                         extract(name_entry,
  951.                             first(name_entry));
  952.                           extract(exploded_v2_name,"Support");
  953.                         }
  954.                     }
  955.                       else if (first(name_entry) == "without")
  956.                     {
  957.                       name_entry = rest(name_entry);
  958.                       if (first(name_entry) == "help")
  959.                         { 
  960.                           v2_comment = "without help";
  961.                           while (not(empty(name_entry)))
  962.                         extract(name_entry,
  963.                             first(name_entry));
  964.                           extract(exploded_v2_name,"without");
  965.                         }
  966.  
  967.                     }
  968.  
  969.                       else if (first(name_entry) == "with")
  970.                     {
  971.                       name_entry = rest(name_entry);
  972.  
  973.                       if (first(name_entry) == "help")
  974.                         {
  975.                           v2_comment = "with help";
  976.                           while (not(empty(name_entry)))
  977.                         extract(name_entry,
  978.                             first(name_entry));
  979.                           extract(exploded_v2_name,"with");
  980.                         }
  981.                     }
  982.  
  983.                       else
  984.                     name_entry = rest(name_entry);
  985.  
  986.                     v2_name = implode(exploded_v2_name," ");
  987.  
  988.                     ui_action(instantiate(migrating_product_with_name));
  989.  
  990.                     if (contains(v2_registration,"!"))
  991.                       {
  992.                     files = translate("%v2_number%",
  993.                               "%oracle_home%\DBS\FILELIST.ORA",
  994.                               " ",TRUE);
  995.                     pre_file_list = explode(files," ");
  996.                     file_list = list();
  997.                     while(not(empty(pre_file_list)))
  998.                       {
  999.                         the_file = first(pre_file_list);
  1000.                         if(exists(the_file))
  1001.                           add(file_list,the_file);
  1002.                         pre_file_list = rest(pre_file_list);
  1003.                       }
  1004.                     if (v2_number == 1)
  1005.                       {
  1006.                         s_product = "%ORACLE_HOME%\BIN\ORACLE6.EXE";
  1007.                         d_product = "%ORACLE_HOME%\XBIN\ORACLE6.EXE";
  1008.                         if(exists(s_product))
  1009.                           {
  1010.                         copy_file(s_product,d_product);
  1011.                         extract(file_list,s_product);
  1012.                         add(file_list,d_product);
  1013.                           }
  1014.                       }
  1015.  
  1016.                     created_directories = list("%oracle_home%","%oracle_home%\XBIN","%oracle_home%\DBS","%oracle_home%\BIN","%oracle_home%\DLL","%oracle_home%\ORAINST");
  1017.                     exe = make_group("exe"); 
  1018.  
  1019.                     while (not(empty(file_list)))
  1020.                       {
  1021.                         file = first(file_list);
  1022.  
  1023.                         { file_size = size(file); }
  1024.                           [ 'FILE_NOT_FOUND: file_size = 0; ]
  1025.  
  1026.                         the_file_name = file_name(file);
  1027.  
  1028.                         the_directory_name = directory_name(file);
  1029.  
  1030.                         new_directories = list();
  1031.  
  1032.                         {
  1033.                           while (contains(the_directory_name,
  1034.                                   oracle_home))
  1035.                         {
  1036.                           if (member(created_directories,
  1037.                                  the_directory_name))
  1038.                             signal('ENOUGH_ALREADY);
  1039.  
  1040.                           new_directories = cons(the_directory_name,new_directories);
  1041.  
  1042.                           the_directory_name = directory_name(the_directory_name);
  1043.                         }
  1044.                         }
  1045.                           [ 'ENOUGH_ALREADY: continue(); ]
  1046.  
  1047.                         union(created_directories,new_directories);
  1048.  
  1049.                         while (not(empty(new_directories)))
  1050.                           {
  1051.                         add_component(exe,"DIRECTORY",
  1052.                                   "",first(new_directories),0);
  1053.  
  1054.                         new_directories = rest(new_directories);
  1055.                           }
  1056.  
  1057.                         the_directory_name = directory_name(file);
  1058.                         if(( the_directory_name == "%ORACLE_HOME%\XBIN") ||
  1059.                            ( not (contains(the_directory_name,"%ORACLE_HOME%\BIN"))))
  1060.                           subgroup = "OTHER";
  1061.  
  1062.                         else if (contains(the_file_name,
  1063.                              ".EXE") ||
  1064.                         contains(the_file_name,".CMD"))
  1065.                           {
  1066.                         subgroup = "EXE";
  1067.  
  1068.                         add_component(exe,"STUB",
  1069.                                   the_file_name,
  1070.                                   "%oracle_home%\XBIN\",
  1071.                                   dos_stub_size);
  1072.                           }
  1073.                         else
  1074.                           subgroup = "OTHER";
  1075.  
  1076.                         add_component(exe,subgroup,
  1077.                               the_file_name,
  1078.                               "%the_directory_name%\",
  1079.                               file_size);
  1080.  
  1081.                         file_list = rest(file_list);
  1082.                       }
  1083.                       }
  1084.                     else
  1085.                       {
  1086.                          exe = make_group("exe");
  1087.                      add_component(exe,"V1","","",0);
  1088.                       }
  1089.  
  1090.                     /* Create the stubs */
  1091.                     dos_stubify("",exe,"EXE");
  1092.  
  1093.                     /* Write .map file */
  1094.                     write_map(list(deinstl,exe),
  1095.                           "%oracle_home%\ORAINST\%v2_filename%.MAP");
  1096.  
  1097.                     the_registry = make_registry("v2product%v2_number%",
  1098.                                  v2_number,
  1099.                                  v2_filename,
  1100.                                  v2_version,
  1101.                                  v2_name,
  1102.                                  sum(deinstl,
  1103.                                      exe),
  1104.                                  v2_comment);
  1105.                     add(the_registry_list,the_registry);
  1106.                   }
  1107.  
  1108.                 v2_number = v2_number + 1;
  1109.                   }
  1110.  
  1111.                 if (not(empty(the_registry_list)))
  1112.                   write_registry(the_registry_list,"%oracle_home%\ORAINST\OS2.RGS");
  1113.  
  1114.                 remove_file("%oracle_home%\DBS\REGISTER.ORA");
  1115.                 remove_file("%oracle_home%\DBS\FILELIST.ORA");
  1116.               }
  1117.             else
  1118.               {
  1119.                 bad_v2_registry_prompt = instantiate(nls("bad_v2_registry_prompt","It is not possible to correctly migrate your Oracle Home because an a Version 2 Oracle Installer product registration file is missing from '%%oracle_home%%\DBS'. It will be necessary for you to migrate your Oracle Home manually. Choose the Backup button to select a different Oracle Home."));
  1120.                 bad_v2_registry_content = nls("bad_v2_registry_content","No Migration");
  1121.                 bad_v2_registry_help = instantiate(nls("bad_v2_registry_help","It is not possible to correctly migrate your Oracle Home because an a Version 2 Oracle Installer product registration file is missing from '%%oracle_home%%\DBS'. The files that comprise the Version 2 Oracle Installer product registration are '%%oracle_home%%\DBS\REGISTER.ORA' and '%%oracle_home%%\DBS\FILELIST.ORA'. It will be necessary for you to migrate your Oracle Home manually."));
  1122.  
  1123.                 information_dialog(bad_v2_registry_prompt,
  1124.                            bad_v2_registry_content,
  1125.                            bad_v2_registry_help);
  1126.               }
  1127.               }
  1128.             else
  1129.               {
  1130.             current_v3_registry_prompt = instantiate(nls("current_v3_registry_prompt","It is not possible to correctly migrate your Oracle Home because an Oracle Installer product registration file was already found at '%%oracle_home%%\ORAINST\OS2.RGS'. It will be necessary for you to migrate your Oracle Home manually. Choose the Backup button to select a different Oracle Home."));
  1131.             current_v3_registry_content = nls("current_v3_registry_content","No Migration");
  1132.             current_v3_registry_help = instantiate(nls("current_v3_registry_help","It is not possible to correctly migrate your Oracle Home because an Oracle Installer product registration file was already found at '%%oracle_home%%\ORAINST\OS2.RGS'. The Oracle Home product registration file is used to track what Oracle products you have installed on your computer. You have apparently installed Oracle products before with the new Oracle Installer, making it impossible to correctly migrate your Oracle Home. It will be necessary for you to migrate your Oracle Home manually."));
  1133.  
  1134.             information_dialog(current_v3_registry_prompt,
  1135.                        current_v3_registry_content,
  1136.                        current_v3_registry_help);
  1137.               }
  1138.           }
  1139.  
  1140.           {
  1141.         if (has_v7_oracle_home)
  1142.           {
  1143.             if (original_ora_config != ora_config)
  1144.               if (exists(original_ora_config))
  1145.             move_file(original_ora_config,ora_config);
  1146.           }
  1147.         else if (has_v6_oracle_home)
  1148.           {
  1149.             current_ora_config = v6_translate("%%CONFIG%%");
  1150.  
  1151.             if (current_ora_config != ora_config)
  1152.               if (exists(current_ora_config))
  1153.             move_file(current_ora_config,ora_config);
  1154.           }
  1155.           }
  1156.         [ 'OS_ERROR: continue();
  1157.           'FILE_NOT_FOUND: continue();
  1158.           'UNBOUND_VARIABLE: continue();
  1159.           'UNBOUND_ENVIRONMENT_VARIABLE: continue(); ]
  1160.  
  1161.           /* Make sure all critical variables are correctly bound. */
  1162.           modify("ORACLE_HOME",oracle_home,ora_config);
  1163.           modify("NLS_LANG",nls_language,ora_config);
  1164.           modify("API","%oracle_home%\DBS",ora_config);
  1165.           modify("MULTIVERSION_ORACLE_HOME","TRUE",ora_config);
  1166.  
  1167.           /* Make sure that the registration exists. */
  1168.           if (not(exists("%oracle_home%\ORAINST\OS2.RGS")))
  1169.         create_file("%oracle_home%\ORAINST\OS2.RGS");
  1170.         }
  1171.  
  1172.       if (not(bootstrap))
  1173.         if (config_needs_change)
  1174.           if (config_has_been_changed)
  1175.         signal('FAILURE,nls("config_changed","In order for the changes to your CONFIG.SYS file to take effect, your PC must be rebooted. Please shut down OS/2, reboot your computer and rerun the installer."));
  1176.           else
  1177.         signal('FAILURE,nls("need_config_change","A sample CONFIG.SYS file can be found in %boot_drive%:\CONFIG.NEW. See your 'Getting Started' manual for help with making changes to your CONFIG.SYS file. Please integrate the changes, shut down OS/2, reboot your computer, and rerun the installer."));
  1178.             else if ( path_needs_change || config_is_wrong || oraconfig_is_wrong )
  1179.               {  
  1180.              need_reboot_prompt = nls("need_reboot_prompt","Please shut down OS/2 and reboot your computer because the following variables are set incorrectly in the environment:
  1181.  
  1182. ");
  1183.          help_prompt ="%need_reboot_prompt%";
  1184.  
  1185.                  if (path_needs_change)
  1186.            help_prompt ="%help_prompt%PATH  ";
  1187.          if (config_is_wrong)
  1188.            help_prompt ="%help_prompt%CONFIG  ";
  1189.          if (oraconfig_is_wrong)
  1190.            help_prompt ="%help_prompt%ORA_CONFIG  ";
  1191.          signal('failure,help_prompt);
  1192.  
  1193.           }
  1194.     }
  1195.     }
  1196.  
  1197.   ui_action(nls("prepare_to_install","Preparing to Install..."));
  1198.  
  1199.   reinstall_prompt01 = nls("reinstall_prompt01","The currently installed version of %%product_label%%, %%installed_version%%, is out of date. The most current version is %%current_version%%. Do you wish to update %%product_label%%?");
  1200.  
  1201.   reinstall_content01 = nls("reinstall_content01","Update");
  1202.  
  1203.   reinstall_help01 = nls("reinstall_help01","The currently installed version of %%product_label%%, %%installed_version%%, is out of date. The most current version is %%current_version%%. It is recommended that you update %%product_label%% to the newer version, %%current_version%%. Choose 'Yes' to update %%product_label%% to %%current_version%%. Choose 'No' if you are sure you want to keep the installed version, %%installed_version%%, intact.");
  1204.  
  1205.   reinstall_prompt02 = nls("reinstall_prompt02","WARNING: Not installing the latest version of %%product_label%%, %%current_version%%, may cause other Oracle products to work improperly.");
  1206.  
  1207.   reinstall_content02 = nls("reinstall_content02","Necessary Update");
  1208.  
  1209.   reinstall_help02 = nls("reinstall_help02","You are in the process of installing Oracle products which depend on version %%current_version%% of %%product_label%%. It is therefore recommended that you update %%product_label%% to %%current_version%%. You have chosen not to do so so, which may cause certain Oracle products to work improperly.");
  1210.  
  1211.   reinstall_prompt03 = nls("reinstall_prompt03","WARNING: The currently installed version of %%product_label%%, %%installed_version%%, is up to date. Are you sure you want to install the old version, %%current_version%%?  Doing so may cause other Oracle products to work improperly.");
  1212.  
  1213.   reinstall_content03 = nls("reinstall_content03","Old Version");
  1214.  
  1215.   reinstall_help03 = nls("reinstall_help03","You are attempting to install an older version of %%product_label%%, %%current_version%%, although version %%installed_version%% is already installed. Installing an older version of %%product_label%% may cause other Oracle products to work improperly. Choose 'No' to leave the current version of %%product_label%%, %%installed_version%%, intact. Choose 'Yes' if you are sure you want to replace it with version %%current_version%%.");
  1216.  
  1217.   reinstall_prompt04 = nls("reinstall_prompt04","Version %%installed_version%% of %%product_label%% has already been installed and is up to date. Would you like to reinstall it?");
  1218.  
  1219.   reinstall_content04 = nls("reinstall_content04","Up To Date");
  1220.  
  1221.   reinstall_help04 = nls("reinstall_help04","Version %%installed_version%% of %%product_label%% has already been installed and is up to date. There is no need to reinstall %%product_label%% unless the installation has somehow become damaged. Choose 'No' to skip the reinstallation of %%product_label%%. Choose 'Yes' if you are sure you want to reinstall it.");
  1222.  
  1223.   deinstall_prompt01 = nls("deinstall_prompt01","WARNING: Other products are dependent on %%registry_label%%. Removing it may cause other products to work improperly. Are you sure you want to deinstall it?");
  1224.  
  1225.   deinstall_content01 = nls("deinstall_content01","Dependencies");
  1226.  
  1227.   deinstall_help01 = nls("deinstall_help01","Other products are dependent on %%registry_label%%. Removing it may cause them to work improperly. It is therefore recommended that you do not remove %%registry_label%%. Choose 'No' to leave %%registry_label%% intact. Choose 'Yes' if you are sure you want to remove it.");
  1228.  
  1229.   dos_stub_name = "%oracle_home%\XBIN\ORASTUB.EXE";
  1230.  
  1231.   { dos_stub_size = size(dos_stub_name); }
  1232.    [ 'OS_ERROR: dos_stub_size = 0;
  1233.      'FILE_NOT_FOUND: dos_stub_size = 0;
  1234.      'INVALID_FILE_NAME: dos_stub_size = 0;
  1235.      'PERMISSION_DENIED: dos_stub_size = 0; ]
  1236.   dos_stub_home = "%ORACLE_HOME%\XBIN";
  1237. }