ZIPファイルを解凍(展開)する

細かい部分に関しては、こちらを参照してください。

  1. スタックファイルを定義する
    <?xml version="1.0" encoding="Shift_JIS"?>
    <!DOCTYPE stack PUBLIC
      "-//OpenStandia/Installer//DTD Stack Configuration 1.0//EN"
      "http://openstandia.sourceforge.jp/dtd/stack_1_0.dtd">
    
    <stack>
      <application>
        <name>サンプルスタック</name>
        <ver>1.0.0.0</ver>
        <description>スタックのサンプルです。</description>
        <properties>
          <products-dir>products/samples</products-dir>
        </properties>
      </application>
      <install-befores/>
      <products>
        <product no="7" name="ZIPファイルを解凍する" def="${stack.application.properties.products-dir}/unzip-1.0.0/win.xml"/>
        <product no="8" name="ZIPファイルを展開する" def="${stack.application.properties.products-dir}/unzip-1.0.0/linux.xml"/>
      </products>
      <install-afters/>
    </stack>
    
    これは、「ZIPファイルを解凍する」もしくは、「ZIPファイルを展開する」というプロダクトが、
    「products/samples/unzip-1.0.0/win.xml」 もしくは、 「products/samples/unzip-1.0.0/linux.xml」
    に定義されているという意味です。
  2. プロダクトファイル(Windows/Linux)を定義する
    1. Windowsの場合
      <?xml version="1.0" encoding="Shift_JIS"?>
      <!DOCTYPE product PUBLIC
        "-//OpenStandia/Installer//DTD Product Configuration 1.0//EN"
        "http://openstandia.sourceforge.jp/dtd/product_1_0.dtd">
      
      <product os="windows">
        <name>Unzip File</name>
        <ver>1.0.0</ver>
        <required>false</required>
        <localDir>products\samples\unzip-${product.ver}</localDir>
        <description>ZIPファイルを解凍します。</description>
        <properties>
          <property name="installDir">${define.windows.openStandia.installDir}\samples\unzip</property>
          <property name="tmp">${define.windows.openStandia.tmp}</property>
        </properties>
        <files>
          <file url="http://localhost/samples/unzip/test.zip">test.zip</file>
        </files>
        <execs>
          <install>
            <exec cmd="cmd.exe">
              <args>
                <arg>/c</arg>
                <arg>Unzip.bat</arg>
                <arg>"${product.properties.tmp}\${product.localDir}\test.zip"</arg>
                <arg>"${product.properties.installDir}"</arg>
              </args>
            </exec>
          </install>
          <uninstall>
            <exec cmd="cmd.exe">
              <args>
                <arg>/c</arg>
                <arg>Unzip.bat</arg>
                <arg>"${product.properties.tmp}\${product.localDir}\test.zip"</arg>
                <arg>"${product.properties.installDir}"</arg>
              </args>
            </exec>
          </uninstall>
          <update>
            <exec cmd="cmd.exe">
              <args>
                <arg>/c</arg>
                <arg>Unzip.bat</arg>
                <arg>"${product.properties.tmp}\${product.localDir}\test.zip"</arg>
                <arg>"${product.properties.installDir}"</arg>
              </args>
            </exec>
          </update>
        </execs>
      </product>
      
    2. Linuxの場合
      <?xml version="1.0" encoding="Shift_JIS"?>
      <!DOCTYPE product PUBLIC
        "-//OpenStandia/Installer//DTD Product Configuration 1.0//EN"
        "http://openstandia.sourceforge.jp/dtd/product_1_0.dtd">
      
      <product os="linux">
        <name>Unzip File</name>
        <ver>1.0.0</ver>
        <required>false</required>
        <localDir>products/samples/unzip-${product.ver}</localDir>
        <description>ZIPファイルを解凍します。</description>
        <properties>
          <property name="installDir">${define.linux.openStandia.installDir}/samples/unzip</property>
          <property name="tmp">${define.linux.openStandia.tmp}</property>
        </properties>
        <files>
          <file url="http://localhost/samples/unzip/test.zip">test.zip</file>
        </files>
        <execs>
          <install>
            <exec cmd="sh">
              <args>
                <arg>Unzip.sh</arg>
                <arg>"${product.properties.tmp}/${product.localDir}/test.zip"</arg>
                <arg>"${product.properties.installDir}"</arg>
              </args>
            </exec>
          </install>
          <uninstall>
            <exec cmd="sh">
              <args>
                <arg>Unzip.sh</arg>
                <arg>"${product.properties.tmp}/${product.localDir}/test.zip"</arg>
                <arg>"${product.properties.installDir}"</arg>
              </args>
            </exec>
          </uninstall>
          <update>
            <exec cmd="sh">
              <args>
                <arg>Unzip.sh</arg>
                <arg>"${product.properties.tmp}/${product.localDir}/test.zip"</arg>
                <arg>"${product.properties.installDir}"</arg>
              </args>
            </exec>
          </update>
        </execs>
      </product>
      
      これは、「ZIPファイルを解凍(展開)する」というプロダクトが、
      「(一時ディレクトリ)/products/samples/unzip-1.0.0/test.zip」を「(インストール先)/samples/unzip」に
      解凍(展開)するという意味です。
    • files属性に記述したファイル(ここでは、「test.zip」)は、
      処理中に総て一時ディレクトリへコピー(もしくは、外部サイトよりダウンロード)されるため
      解凍対象ファイルが、「(一時ディレクトリ)」からの絶対パスとなっています。
    • インストール、アンインストール、アップデート総てにおいて同処理としてます。

  3. 各ディレクトリ、各ファイルを以下のように配置する
    OpenStandiaIntaller
     |--bin
     |--create
     |--lib
     |--products
     |  |--samples
     |     |--unzip-1.0.0
     |        |--linux.xml
     |        |--win.xml
     |        |--test.zip
     |--scripts
     |--stack-sample.xml
    GUIの場合は、以上で終了です。
    OpenStandia/GUI Installerより上記で作成したスタックファイルを読み込ませることで実行できるはずです。
    CUIの場合は、引き続き以下を行ってください。

  4. 起動バッチ(setup.bat)、起動シェル(setup.sh)の作成(編集)
    1. Windowsの場合
      1. OpenStandia/Installerに付属の起動バッチ(setup.bat)をメモ帳等で開いてください。
      2. 【初期設定】項目に使用するスタックファイルを定義する(l.4付近)

        REM ##### 初期設定 #####
        set OPENSTANDIA_INSTALLER_VER=sample
        set STACK_XML=stack-%OPENSTANDIA_INSTALLER_VER%.xml

        • ここでは、「stack-sample.xml」となるように定義しています。
      3. 【初期設定】項目にプロダクトの番号を定義する(l.4付近)

        REM ##### 初期設定 #####
        set OPENSTANDIA_INSTALLER_VER=sample
        set STACK_XML=stack-%OPENSTANDIA_INSTALLER_VER%.xml
        set ANT_DIR=apache-ant-1.7.0
        set SCRIPTS_DIR=scripts
        set UNZIP_TEST_NO=7

        • スタックファイルに記述した該当プロダクトの番号(stack.products.product.no)の値である必要があります。
      4. 【問い合わせ】項目を記述する(l.79付近)

        REM ##### 問い合わせ #####
        cls
        REM unzip-test
        set UNZIP_TEST=y
        set /p UNZIP_TEST=ZIPファイルを解凍するサンプルを実行しますか?(y/n) [y]

      5. 【ダウンロード実行】項目を記述する(l.124付近)

        REM ##### ダウンロード実行 #####
        echo.
        echo ダウンロード処理を開始します...
        if "%UNZIP_TEST%" == "y" (
          call ant -Dno=%UNZIP_TEST_NO% -DstackXml=%STACK_XML% -f "%SCRIPTS_DIR%download.xml"
          if errorlevel 1 goto error
        )

        • 「"%UNZIP_TEST%" == "y"」の部分の「%UNZIP_TEST%」は、
          【問い合わせ】項目で記述した変数名と合わせてください。
        • 「-Dno=%UNZIP_TEST_NO%」の部分の「%UNZIP_TEST_NO%」は、
          【初期設定】項目で記述した変数名と合わせてください。
      6. 【インストール実行】項目を記述する(l.124付近)

        REM ##### インストール実行 #####
        set INSTALLED_NO=
        echo.
        echo %MODE_STR%処理を開始します...
        if "%UNZIP_TEST%" == "y" (
          set INSTALLED_NO=%INSTALLED_NO%,%UNZIP_TEST_NO%
          call ant -Dno=%UNZIP_TEST_NO% -Dmode=%MODE% -DinstalledNo="%INSTALLED_NO%" -DstackXml=%STACK_XML% -f "%SCRIPTS_DIR%install.xml"
          if errorlevel 1 goto error
        )

        • 「"%UNZIP_TEST%" == "y"」の部分の「%UNZIP_TEST%」は、
          【問い合わせ】項目で記述した変数名と合わせてください。
        • 「set INSTALLED_NO=%INSTALLED_NO%,%UNZIP_TEST_NO%」及び「-Dno=%UNZIP_TEST_NO%」の部分の「%UNZIP_TEST_NO%」は、
          【初期設定】項目で記述した変数名と合わせてください。
    2. Linuxの場合
      1. OpenStandia/Installerに付属の起動シェル(setup.sh)をUTF-8で編集できるエディター等で開いてください。
      2. 【初期設定】項目に使用するスタックファイルを定義する(l.5付近)

        ##### 初期設定 #####
        OS_LANG=UTF-8
        OPENSTANDIA_INSTALLER_VER=sample
        STACK_XML=stack-${OPENSTANDIA_INSTALLER_VER}.xml

        • ここでは、「stack-sample.xml」となるように定義しています。
      3. 【初期設定】項目にプロダクトの番号を定義する(l.5付近)

        ##### 初期設定 #####
        OS_LANG=UTF-8
        OPENSTANDIA_INSTALLER_VER=sample
        STACK_XML=stack-${OPENSTANDIA_INSTALLER_VER}.xml
        ANT_DIR=apache-ant-1.7.0
        SCRIPTS_DIR=scripts
        UNZIP_TEST_NO=8

        • スタックファイルに記述した該当プロダクトの番号(stack.products.product.no)の値である必要があります。
      4. 【問い合わせ】項目を記述する(l.85付近)

        ##### 問い合わせ #####
        clear
        # unzip-test
        read -p "ZIPファイルを展開するサンプルを実行しますか?(y/n) [y]" UNZIP_TEST_
        if [ "${UNZIP_TEST}" = "" ]; then
          UNZIP_TEST=y
        fi

      5. 【ダウンロード実行】項目を記述する(l.146付近)

        ##### ダウンロード実行 #####
        echo
        echo ダウンロード処理を開始します...
        if [ "${UNZIP_TEST}" = "y" ]; then
          ant -Dno=${UNZIP_TEST_NO} -DstackXml=${STACK_XML} -f "${SCRIPTS_DIR}download.xml"
          if [ $? -ne 0 ]; then error_func; fi
        fi

        • 「"${UNZIP_TEST}" = "y"」の部分の「${UNZIP_TEST}」は、
          【問い合わせ】項目で記述した変数名と合わせてください。
        • 「-Dno=${UNZIP_TEST_NO}」の部分の「${UNZIP_TEST_NO}」は、
          【初期設定】項目で記述した変数名と合わせてください。
      6. 【インストール実行】項目を記述する(l.183付近)

        ##### インストール実行 #####
        INSTALLED_NO=
        echo
        echo ${MODE_STR}処理を開始します...
        if [ "${UNZIP_TEST}" = "y" ]; then
          INSTALLED_NO=${INSTALLED_NO},${UNZIP_TEST_NO}
          ant -Dno=${UNZIP_TEST_NO} -Dmode=${MODE} -DinstalledNo="${INSTALLED_NO}" -DstackXml=${STACK_XML} -f "${SCRIPTS_DIR}install.xml"
          if [ $? -ne 0 ]; then error_func; fi
        fi

        • 「"${UNZIP_TEST}" = "y"」の部分の「${UNZIP_TEST}」は、
          【問い合わせ】項目で記述した変数名と合わせてください。
        • 「INSTALLED_NO=${INSTALLED_NO},${UNZIP_TEST_NO}」及び「-Dno=${UNZIP_TEST_NO}」の部分の「${UNZIP_TEST_NO}」は、
          【初期設定】項目で記述した変数名と合わせてください。

以上でCUIの場合も終了です。
各起動バッチ、シェルを実行することで実行できるはずです。