VirtualBox

Changeset 21894 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Jul 30, 2009 2:58:16 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
50543
Message:

SSM: addressed some more TODOs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/SSM-new.cpp

    r21892 r21894  
    17041704
    17051705/**
    1706  * Flush any buffered data.
     1706 * Flush buffered data.
    17071707 *
    17081708 * @returns VBox status code.
     
    17111711 * @thread  The producer thread.
    17121712 */
    1713 static int ssmR3StrmFlush(PSSMSTRM pStrm)
    1714 {
    1715     /*
    1716      * Read streams have nothing that needs to be flushed.
    1717      */
    1718     if (!pStrm->fWrite)
    1719         return VINF_SUCCESS;
     1713static int ssmR3StrmWriteBuffers(PSSMSTRM pStrm)
     1714{
     1715    Assert(!pStrm->pCur);
     1716    Assert(pStrm->fWrite);
     1717
     1718    /*
     1719     * Just return if the stream has a pending error condition.
     1720     */
    17201721    int rc = pStrm->rc;
    17211722    if (RT_FAILURE(rc))
    17221723        return rc;
    1723 
    1724     /*
    1725      * Complete the current buffer and queue it.
    1726      */
    1727     ssmR3StrmFlushCurBuf(pStrm);
    1728 
    1729 /** @todo This is what the I/O thread will be doing when we finally get one. */
    17301724
    17311725    /*
     
    17471741        if (    RT_FAILURE(rc)
    17481742            &&  ssmR3StrmSetError(pStrm, rc))
    1749             LogRel(("ssmR3StrmFlush: RTFileWriteAt failed with rc=%Rrc at offStream=%#llx\n", rc, pCur->offStream));
     1743            LogRel(("ssmR3StrmWriteBuffers: RTFileWriteAt failed with rc=%Rrc at offStream=%#llx\n", rc, pCur->offStream));
    17501744
    17511745        /* free it */
     
    17681762     * Flush and close the stream.
    17691763     */
    1770     ssmR3StrmFlush(pStrm);
     1764    if (pStrm->fWrite)
     1765    {
     1766        ssmR3StrmFlushCurBuf(pStrm);
     1767        ssmR3StrmWriteBuffers(pStrm);
     1768    }
    17711769    int rc = RTFileClose(pStrm->hFile);
    17721770    if (RT_FAILURE(rc))
     
    18271825        /*
    18281826         * Flush the current buffer and replace it with a new one.
     1827         * Write the bits to the disk if we haven't got any helper yet.
    18291828         */
    1830         int rc = ssmR3StrmFlush(pStrm);
    1831         if (RT_FAILURE(rc))
    1832             return rc;
     1829        ssmR3StrmFlushCurBuf(pStrm);
     1830        if (pStrm->hIoThread == NIL_RTTHREAD)
     1831        {
     1832            int rc = ssmR3StrmWriteBuffers(pStrm);
     1833            if (RT_FAILURE(rc))
     1834                return rc;
     1835        }
    18331836        pBuf = ssmR3StrmGetFreeBuf(pStrm);
    18341837        if (!pBuf)
     
    19721975         */
    19731976        ssmR3StrmFlushCurBuf(pStrm);
    1974         rc = ssmR3StrmReadMore(pStrm); /** @todo Remove this when adding the I/O thread! */
    1975         if (RT_FAILURE(rc))
    1976             break;
     1977        if (pStrm->hIoThread == NIL_RTTHREAD)
     1978        {
     1979            rc = ssmR3StrmReadMore(pStrm);
     1980            if (RT_FAILURE(rc))
     1981                break;
     1982        }
    19771983        PSSMSTRMBUF pBuf = ssmR3StrmGetBuf(pStrm);
    19781984        if (!pBuf)
     
    37853791 * @returns VBox status code.
    37863792 * @param   pSSM                The SSM handle.
     3793 * @param   pDir                The directory buffer.
     3794 * @param   cbDir               The size of the directory.
     3795 * @param   cDirEntries         The number of directory entries.
     3796 * @param   offDir              The directory offset in the file.
    37873797 * @param   pszUnit             The unit to seek to.
    37883798 * @param   iInstance           The particulart insance we seek.
    37893799 * @param   piVersion           Where to store the unit version number.
    37903800 */
    3791 static int ssmR3FileSeekSubV2(PSSMHANDLE pSSM, PSSMFILEDIR pDir, size_t cbDir, uint32_t cDirEntries,
     3801static int ssmR3FileSeekSubV2(PSSMHANDLE pSSM, PSSMFILEDIR pDir, size_t cbDir, uint32_t cDirEntries, uint64_t offDir,
    37923802                              const char *pszUnit, uint32_t iInstance, uint32_t *piVersion)
    37933803{
     
    37953805     * Read it.
    37963806     */
    3797     uint64_t const offDir = pSSM->u.Read.cbLoadFile - sizeof(SSMFILEFTR) - cbDir;
    37983807    int rc = ssmR3StrmPeekAt(&pSSM->Strm, offDir, pDir, cbDir, NULL);
    37993808    AssertLogRelRCReturn(rc, rc);
     
    38873896     * pass it down to a worker to simplify cleanup.
    38883897     */
     3898    uint64_t        offFooter;
    38893899    SSMFILEFTR      Footer;
    3890 /** @todo this doesn't work when we get an I/O thread... */
    3891     int rc = RTFileReadAt(pSSM->Strm.hFile, pSSM->u.Read.cbLoadFile - sizeof(Footer), &Footer, sizeof(Footer), NULL);
     3900    int rc = ssmR3StrmPeekAt(&pSSM->Strm, -(RTFOFF)sizeof(Footer), &Footer, sizeof(Footer), &offFooter);
    38923901    AssertLogRelRCReturn(rc, rc);
    38933902    AssertLogRelReturn(!memcmp(Footer.szMagic, SSMFILEFTR_MAGIC, sizeof(Footer.szMagic)), VERR_SSM_INTEGRITY);
     
    38983907    if (RT_UNLIKELY(!pDir))
    38993908        return VERR_NO_TMP_MEMORY;
    3900     rc = ssmR3FileSeekSubV2(pSSM, pDir, cbDir, Footer.cDirEntries, pszUnit, iInstance, piVersion);
     3909    rc = ssmR3FileSeekSubV2(pSSM, pDir, cbDir, Footer.cDirEntries, offFooter - cbDir,
     3910                            pszUnit, iInstance, piVersion);
    39013911    RTMemTmpFree(pDir);
    39023912
     
    39673977static int ssmR3DataWriteFinish(PSSMHANDLE pSSM)
    39683978{
    3969     //Log2(("ssmR3DataWriteFinish: %#010llx start\n", RTFileTell(pSSM->File)));
     3979    //Log2(("ssmR3DataWriteFinish: %#010llx start\n", ssmR3StrmTell(&pSSM->Strm)));
    39703980    int rc = ssmR3DataFlushBuffer(pSSM);
    39713981    if (RT_SUCCESS(rc))
     
    47904800    if (cbRead)
    47914801    {
    4792         //Log2(("ssmR3ReadInV1: %#010llx cbBug=%#x cbRead=%#x\n", RTFileTell(pSSM->File), cbBuf, cbRead));
     4802        //Log2(("ssmR3ReadInV1: %#010llx cbBug=%#x cbRead=%#x\n", ssmR3StrmTell(&pSSM->Strm), cbBuf, cbRead));
    47934803        int rc = ssmR3StrmRead(&pSSM->Strm, pvBuf, cbRead);
    47944804        if (RT_SUCCESS(rc))
Note: See TracChangeset for help on using the changeset viewer.

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