VirtualBox

儲存庫 vbox 的更動 17313


忽略:
時間撮記:
2009-3-3 下午07:53:09 (16 年 以前)
作者:
vboxsync
訊息:

OVF: hard disk controller export implementation.

檔案:
修改 1 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/Main/ApplianceImpl.cpp

    r17291 r17313  
    22102210                                    default:
    22112211                                        throw setError(VBOX_E_NOT_SUPPORTED,
    2212                                                        tr("Invalid channel %RI16 specified; IDE conrollers support only 0, 1 or 2"), vd.ulAddressOnParent);
     2212                                                       tr("Invalid channel %RI16 specified; IDE controllers support only 0, 1 or 2"), vd.ulAddressOnParent);
    22132213                                    break;
    22142214                                }
     
    27382738
    27392739        uint32_t uControllerId = 1;
    2740         Utf8Str strIdeControllerID;
    2741         Utf8Str strSataControllerID;
     2740        uint32_t uidIdeController;
     2741        uint32_t uidSataController;
    27422742
    27432743//     <const name="HardDiskControllerIDE" value="6" />
     
    27572757        if (strVbox.length())
    27582758        {
    2759             strIdeControllerID = Utf8StrFmt("%RI32", uControllerId++);
    2760             pNewDesc->addEntry(VirtualSystemDescriptionType_HardDiskControllerIDE, strIdeControllerID, strVbox, "");
     2759            uidIdeController = uControllerId++;
     2760            pNewDesc->addEntry(VirtualSystemDescriptionType_HardDiskControllerIDE, Utf8StrFmt("%d", uidIdeController), strVbox, "");
    27612761        }
    27622762
     
    27702770        if (fSataEnabled)
    27712771        {
    2772             strSataControllerID = Utf8StrFmt("%RI32", uControllerId++);
    2773             pNewDesc->addEntry(VirtualSystemDescriptionType_HardDiskControllerSATA, strSataControllerID, strVbox, "");
     2772            uidSataController = uControllerId++;
     2773            pNewDesc->addEntry(VirtualSystemDescriptionType_HardDiskControllerSATA, Utf8StrFmt("%d", uidSataController), strVbox, "");
    27742774        }
    27752775#endif // VBOX_WITH_AHCI
     
    27882788            ComObjPtr<HardDiskAttachment> pHDA = *itA;
    27892789
    2790             // get the attachment's data
     2790            // the attachment's data
    27912791            ComPtr<IHardDisk> pHardDisk;
    27922792            StorageBus_T storageBus;
     
    27942794            LONG lDevice;
    27952795
     2796            // and how this translates to the virtual system
     2797            LONG lChannelVsys;
     2798
    27962799            rc = pHDA->COMGETTER(HardDisk)(pHardDisk.asOutParam());
    27972800            if (FAILED(rc)) throw rc;
     
    28062809            if (FAILED(rc)) throw rc;
    28072810
     2811            Bstr bstrLocation;
     2812            rc = pHardDisk->COMGETTER(Location)(bstrLocation.asOutParam());
    28082813            Bstr bstrName;
    28092814            rc = pHardDisk->COMGETTER(Name)(bstrName.asOutParam());
    28102815
     2816            uint32_t uidControllerVsys;
     2817
     2818            switch (storageBus)
     2819            {
     2820                case HardDiskController::IDE:
     2821                    // this is the exact reverse to what we're doing in Appliance::taskThreadImportMachines,
     2822                    // and it must be updated when that is changed!
     2823
     2824                    if (lChannel == 0 && lDevice == 0)      // primary master
     2825                        lChannelVsys = 0;
     2826                    else if (lChannel == 0 && lDevice == 1) // primary slave
     2827                        lChannelVsys = 1;
     2828                    else if (lChannel == 1 && lDevice == 1) // secondary slave; secondary master is always CDROM
     2829                        lChannelVsys = 2;
     2830                    else
     2831                        throw setError(VBOX_E_NOT_SUPPORTED,
     2832                                       tr("Cannot handle hard disk attachment: channel is %d, device is %d"), lChannel, lDevice);
     2833                        break;
     2834
     2835                    uidControllerVsys = uidIdeController;
     2836                break;
     2837
     2838                case HardDiskController::SATA:
     2839                    lChannelVsys = lChannel;        // should be between 0 and 29
     2840                    uidControllerVsys = uidSataController;
     2841                break;
     2842
     2843                case HardDiskController::SCSI:
     2844                        // mhda.busType = StorageBus_SCSI;
     2845                    throw setError(VBOX_E_NOT_SUPPORTED,
     2846                                tr("SCSI controller support is not available yet in VirtualBox"));
     2847                        // @todo
     2848                break;
     2849
     2850                default: break;
     2851            }
     2852
    28112853            pNewDesc->addEntry(VirtualSystemDescriptionType_HardDiskImage,
    2812                                Utf8Str(bstrName), // hd.strDiskId,
    2813                                "", // di.strHref,
    2814                                "",
    2815                                ""); // strExtraConfig
     2854                               Utf8Str(bstrName), // disk ID: let's use the name
     2855                               "",                // OVF value: unknown as of now
     2856                               Utf8Str(bstrLocation), // vbox value: media path
     2857                               Utf8StrFmt("controller=%d;channel=%d", uidControllerVsys, lChannelVsys));
    28162858        }
    28172859
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette