home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a525 / 45.ddi / WINDOWS.STP < prev    next >
Encoding:
Text File  |  1993-03-04  |  7.8 KB  |  191 lines

  1. /* Copyright (c) Oracle Corporation 1992.  All Rights Reserved */
  2.  
  3. /*****************************************************************************
  4.   NAME
  5.     windows.stp - Windows V3 Installation Environment Initialization File
  6.                   for V7 Oracle products
  7.  
  8.   DESCRIPTION
  9.     This script bootstraps the Windows environment for the installation
  10.     of Oracle V7 products. It is always read first by ORAINST for Windows.
  11.  
  12.   MODIFIED   MM/DD/YY REASON
  13.     ekabatch 10/29/92 Revised the reinstall and deinstall prompts.
  14.     jicohen  10/26/92 Made sure oracle_home != v6_oracle_home
  15.     jicohen  10/26/92 Moved environment check to after user selects directory
  16.     jicohen  10/26/92 Only modify win.ini if it is already set
  17.     jicohen  10/26/92 Added windows_sys_dir and windows_dir. Moved oracle.ini
  18.     jicohen  10/23/92 Removed Oracle Installer Group from modify command
  19.     jicohen  10/23/92 Removed get_boot_drive() reference
  20.     ekabatch 08/18/92 Made it possible for the installer to recognize an
  21.                       ORA_CONFIG reference that is already in win.ini.  Done
  22.                       for Heather Andrus' uncompliant mail program.  :)
  23.     ekabatch 07/21/92 Added deinstall prompts.  Removed environment out of
  24.                       date prompt.
  25.     ekabatch 06/19/92 Renamed registry.prd to windows.rgs.
  26.     ekabatch 05/29/92 Accomodated OS_ERROR on translate.
  27.     ekabatch 02/18/92 Moved regustry.prd to install subdirectory.
  28.     ekabatch 01/27/92 Formatted code to Oracle Coding Standards.
  29.     ekabatch 01/26/92 Added resinstall prompts.
  30.     ekabatch 04/15/92 Accomodate installer_home change: ORACLE_HOME\orainst.
  31.     ekabatch 12/11/91 Created.
  32. *****************************************************************************/
  33.  
  34. {
  35.   /* Let the installer know if this is a bootstrapping sequence. */
  36.  
  37.   bootstrap = TRUE;
  38.  
  39.   /* Let the installer know that it is being run from distribution media. */
  40.  
  41.   distribution = TRUE;
  42.  
  43.   windows_dir = windows_directory();
  44.   windows_sys_dir = windows_system_directory();
  45.  
  46.   default_home = "C:\ORAWIN";
  47.   alternate_home = "C:\ORA7WIN";
  48.  
  49.   current_home = "";
  50.   current_config = "";
  51.   default_config = "%windows_dir%\oracle.ini";
  52.  
  53.   home_help = "You are being asked to select the location to which Oracle products are to be installed.";
  54.  
  55.   ver_dll = "%windows_sys_dir%\ver.dll";
  56.  
  57.   windows_30_message = "Oracle products require Windows 3.1. It appears that you are either running a version of Windows prior to 3.1 or that your Windows 3.1 installation has been damaged. Upgrade to Windows 3.1 and rerun the Oracle Installer.";
  58.  
  59.   if (not(exists(ver_dll)))
  60.     signal('failure,windows_30_message);
  61.  
  62.   if (windows_earlier_version(ver_dll,"3.10"))
  63.     signal('failure,windows_30_message);
  64.  
  65.   {
  66.     v6_config = v6_translate("%%CONFIG%%");
  67.     v6_oracle_home = v6_translate("%%ORACLE_HOME%%");
  68.     pathify(v6_oracle_home);
  69.   }
  70.     [ 'OS_ERROR: { v6_oracle_home = ""; v6_config = ""; }
  71.       'UNBOUND_ENVIRONMENT_VARIABLE: { v6_oracle_home = ""; v6_config = ""; }]
  72.  
  73.   if (v6_oracle_home == default_home)
  74.     default_home = alternate_home;
  75.  
  76.   {
  77.     oracle_home = v7_translate("ORACLE_HOME");
  78.     pathify(oracle_home);
  79.     current_home = oracle_home;
  80.   }
  81.     [ 'OS_ERROR: oracle_home = default_home; 
  82.       'UNBOUND_ENVIRONMENT_VARIABLE: oracle_home = default_home; ]
  83.  
  84.   {
  85.     ora_config = v7_translate("ORA_CONFIG");
  86.     current_config = ora_config;
  87.   }
  88.     [ 'OS_ERROR: { ora_config = default_config; }
  89.       'UNBOUND_ENVIRONMENT_VARIABLE: { ora_config = default_config; } ]
  90.  
  91.   if (v6_oracle_home == oracle_home)
  92.     oracle_home = default_home;
  93.  
  94.   if (v6_config == ora_config)
  95.     ora_config = default_config;
  96.  
  97.   if (not(contains(ora_config,".ini")))
  98.     ora_config = default_config;
  99.  
  100.   if (oracle_home == alternate_home)
  101.     home_help = "%home_help% Since a home for DOS Oracle products was found using the default location of '%v6_oracle_home%', '%alternate_home%' was selected instead.";
  102.  
  103.   while (TRUE)
  104.     { 
  105.       directory = text_dialog("Enter the complete path to which you wish to install Oracle products:",oracle_home,"Set Oracle Home",home_help);
  106.       pathify(directory);
  107.  
  108.       if (directory == v6_oracle_home)
  109.         {
  110.           information_dialog("You cannot install Windows Oracle products into the same directory as DOS Oracle products.","Windows vs. DOS","The process of installing Windows Oracle products into a DOS Oracle Home may render certain DOS Oracle products unusable.");
  111.  
  112.           continue();
  113.         }
  114.  
  115.       {
  116.         make_directory(directory);
  117.  
  118.         break();
  119.       }
  120.         [ 'WRITE_ERROR: { information_dialog("It was not possible to create the directory '%directory%'.","Path Error","The directory '%directory%' could not be made. This could have been caused by not having the write permission needed to create the specified directory." );
  121.                           continue(); }
  122.  
  123.           'FILE_NOT_FOUND: { information_dialog("The directory you specified, '%directory%', is not valid.","Path Error","The directory '%directory%' could not be made. This could have been caused by entering an improper path or by requiring the Oracle Installer to make more than one directory." );
  124.                              continue(); } ]
  125.  
  126.     }
  127.  
  128.   if (oracle_home != directory)
  129.     oracle_home = directory;
  130.  
  131.   /* Make sure ora_config is correct. */
  132.  
  133.   if (not(exists(ora_config)))
  134.     ora_config = default_config;
  135.  
  136.   if (current_config != ora_config)
  137.     modify("ORA_CONFIG",ora_config);
  138.  
  139.   /* Make sure Oracle Home is correct. */
  140.  
  141.  
  142.   {
  143.     translate("ORACLE_HOME","%windows_dir%\win.ini");
  144.     modify("ORACLE_HOME","");
  145.   }
  146.    [ 'UNBOUND_ENVIRONMENT_VARIABLE: continue(); ]
  147.  
  148.   { current_home = v7_translate("ORACLE_HOME"); pathify(current_home); }
  149.    [ 'OS_ERROR: { current_home = ""; }
  150.      'UNBOUND_ENVIRONMENT_VARIABLE: { current_home = ""; } ]
  151.  
  152.   if (oracle_home != current_home)
  153.     modify("ORACLE_HOME",oracle_home,ora_config);
  154.  
  155.   /* Make sure the Oracle Home directories and the registration file exist. */
  156.  
  157.   {
  158.     if (not(exists("%oracle_home%\bin")))
  159.       make_directory("%oracle_home%\bin");
  160.  
  161.     if (not(exists("%oracle_home%\dbs")))
  162.       make_directory("%oracle_home%\dbs");
  163.  
  164.     if (not(exists("%oracle_home%\orainst")))
  165.       make_directory("%oracle_home%\orainst");
  166.   }
  167.     [ 'WRITE_ERROR: signal('failure,"It was not possible to create a subdirectory in %oracle_home%.");
  168.       'FILE_NOT_FOUND: signal('failure,"An internal installer error occurred because of a problem with the operating system."); ]
  169.  
  170.   if (not(exists("%oracle_home%\orainst\windows.rgs")))
  171.     create_file("%oracle_home%\orainst\windows.rgs");
  172.  
  173.   { nls_lang = v7_translate("NLS_LANG");
  174.  
  175.     if (nls_lang == "English")
  176.       signal('UNBOUND_ENVIRONMENT_VARIABLE);
  177.   }
  178.     [ 'UNBOUND_ENVIRONMENT_VARIABLE: 
  179.        { nls_lang = "AMERICAN_AMERICA.WE8ISO8859P1" ;
  180.          modify("NLS_LANG",nls_lang,ora_config);} ]
  181.  
  182.   reinstall_prompt01 = "The currently installed version of %%product_label%%, %%installed_version%%, is out of date. The currently available version is %%current_version%%. Do you wish to update %%product_label%%?";
  183.  
  184.   reinstall_prompt02 = "WARNING: Not installing the currently available version of %%product_label%%, %%current_version%%, may cause other Oracle products to work improperly.";
  185.  
  186.   reinstall_prompt03 = "WARNING: The currently installed version of %%product_label%% is %%installed_version%%. Are you sure you want to install the old version, %%current_version%%?  Doing so may cause other Oracle products to work improperly.";
  187.  
  188.   reinstall_prompt04 = "Version %%installed_version%% of %%product_label%% has already been installed. Would you like to reinstall it?";
  189.  
  190.   deinstall_prompt01 = "WARNING: Other products are dependent on %%registry_label%%. Are you sure you want to deinstall it?";
  191. }