LCOV - code coverage report
Current view: top level - store/source - storlckb.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 128 182 70.3 %
Date: 2015-06-13 12:38:46 Functions: 8 12 66.7 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include "storlckb.hxx"
      21             : 
      22             : #include "sal/types.h"
      23             : #include "sal/macros.h"
      24             : #include "rtl/string.h"
      25             : #include "rtl/ref.hxx"
      26             : #include "osl/mutex.hxx"
      27             : 
      28             : #include "store/types.h"
      29             : #include "object.hxx"
      30             : 
      31             : #include "storbase.hxx"
      32             : #include "stordata.hxx"
      33             : #include "storpage.hxx"
      34             : 
      35             : using namespace store;
      36             : 
      37             : /*========================================================================
      38             :  *
      39             :  * OStoreLockBytes implementation.
      40             :  *
      41             :  *======================================================================*/
      42             : const sal_uInt32 OStoreLockBytes::m_nTypeId = sal_uInt32(0x94190310);
      43             : 
      44             : /*
      45             :  * OStoreLockBytes.
      46             :  */
      47         415 : OStoreLockBytes::OStoreLockBytes()
      48             :     : m_xManager   (),
      49             :       m_xNode      (),
      50         415 :       m_bWriteable (false)
      51             : {
      52         415 : }
      53             : 
      54             : /*
      55             :  * ~OStoreLockBytes.
      56             :  */
      57        1660 : OStoreLockBytes::~OStoreLockBytes()
      58             : {
      59         415 :     if (m_xManager.is() && m_xNode.is())
      60             :     {
      61         407 :         m_xManager->releasePage(m_xNode->m_aDescr);
      62             :     }
      63        1245 : }
      64             : 
      65             : /*
      66             :  * isKindOf.
      67             :  */
      68         410 : bool OStoreLockBytes::isKindOf (sal_uInt32 nTypeId)
      69             : {
      70         410 :     return (nTypeId == m_nTypeId);
      71             : }
      72             : 
      73             : /*
      74             :  * create.
      75             :  */
      76         415 : storeError OStoreLockBytes::create (
      77             :     OStorePageManager *pManager,
      78             :     rtl_String        *pPath,
      79             :     rtl_String        *pName,
      80             :     storeAccessMode    eMode)
      81             : {
      82         415 :     rtl::Reference<OStorePageManager> xManager (pManager);
      83         415 :     if (!xManager.is())
      84           0 :         return store_E_InvalidAccess;
      85             : 
      86         415 :     if (!(pPath && pName))
      87           0 :         return store_E_InvalidParameter;
      88             : 
      89         830 :     OStoreDirectoryPageObject aPage;
      90             :     storeError eErrCode = xManager->iget (
      91             :         aPage, STORE_ATTRIB_ISFILE,
      92         415 :         pPath, pName, eMode);
      93         415 :     if (eErrCode != store_E_None)
      94           8 :         return eErrCode;
      95             : 
      96         407 :     if (!(aPage.attrib() & STORE_ATTRIB_ISFILE))
      97             :     {
      98             :         // No ISFILE in older versions (backward compatibility).
      99           0 :         if (aPage.attrib() & STORE_ATTRIB_ISLINK)
     100           0 :             return store_E_NotFile;
     101             :     }
     102             : 
     103         814 :     inode_holder_type xNode (aPage.get());
     104         407 :     if (eMode != store_AccessReadOnly)
     105         407 :         eErrCode = xManager->acquirePage (xNode->m_aDescr, store_AccessReadWrite);
     106             :     else
     107           0 :         eErrCode = xManager->acquirePage (xNode->m_aDescr, store_AccessReadOnly);
     108         407 :     if (eErrCode != store_E_None)
     109           0 :         return eErrCode;
     110             : 
     111         407 :     m_xManager   = xManager;
     112         407 :     m_xNode      = xNode;
     113         407 :     m_bWriteable = (eMode != store_AccessReadOnly);
     114             : 
     115             :     // Check for truncation.
     116         407 :     if (eMode == store_AccessCreate)
     117             :     {
     118             :         // Truncate to zero length.
     119         398 :         eErrCode = setSize(0);
     120             :     }
     121         822 :     return eErrCode;
     122             : }
     123             : 
     124             : /*
     125             :  * readAt.
     126             :  */
     127          12 : storeError OStoreLockBytes::readAt (
     128             :     sal_uInt32  nOffset,
     129             :     void       *pBuffer,
     130             :     sal_uInt32  nBytes,
     131             :     sal_uInt32 &rnDone)
     132             : {
     133          12 :     rnDone = 0;
     134             : 
     135          12 :     if (!m_xManager.is())
     136           0 :         return store_E_InvalidAccess;
     137             : 
     138          12 :     if (!pBuffer)
     139           0 :         return store_E_InvalidParameter;
     140          12 :     if (!nBytes)
     141           0 :         return store_E_None;
     142             : 
     143             :     // Acquire exclusive access.
     144          12 :     osl::MutexGuard aGuard (*m_xManager);
     145             : 
     146             :     // Determine data length.
     147          24 :     OStoreDirectoryPageObject aPage (m_xNode.get());
     148             : 
     149          12 :     sal_uInt32 nDataLen = aPage.dataLength();
     150          12 :     if ((nOffset + nBytes) > nDataLen)
     151           0 :         nBytes = nDataLen - nOffset;
     152             : 
     153             :     // Read data.
     154          24 :     OStoreDataPageObject aData;
     155          12 :     sal_uInt8 *pData = static_cast<sal_uInt8*>(pBuffer);
     156          37 :     while ((0 < nBytes) && (nOffset < nDataLen))
     157             :     {
     158             :         // Determine 'Offset' scope.
     159          13 :         inode::ChunkScope eScope = m_xNode->scope (nOffset);
     160          13 :         if (eScope == inode::SCOPE_INTERNAL)
     161             :         {
     162             :             // Read from inode page (internal scope).
     163             :             inode::ChunkDescriptor aDescr (
     164          12 :                 nOffset, m_xNode->capacity());
     165             : 
     166          12 :             sal_uInt32 nLength = sal_uInt32(aDescr.m_nLength);
     167          12 :             if(nLength > nBytes)
     168             :             {
     169          11 :                 nLength = nBytes;
     170             :             }
     171             :             memcpy (
     172          12 :                 &pData[rnDone],
     173          12 :                 &m_xNode->m_pData[aDescr.m_nOffset],
     174          36 :                 nLength);
     175             : 
     176             :             // Adjust counters.
     177          12 :             rnDone  += nLength;
     178          12 :             nOffset += nLength;
     179          12 :             nBytes  -= nLength;
     180             :         }
     181             :         else
     182             :         {
     183             :             // Read from data page (external scope).
     184             :             inode::ChunkDescriptor aDescr (
     185           1 :                 nOffset - m_xNode->capacity(), OStoreDataPageData::capacity(m_xNode->m_aDescr)); // @@@
     186             : 
     187           1 :             sal_uInt32 nLength = sal_uInt32(aDescr.m_nLength);
     188           1 :             if(nLength > nBytes)
     189             :             {
     190           1 :                 nLength = nBytes;
     191             :             }
     192             : 
     193           1 :             storeError eErrCode = aPage.read (aDescr.m_nPage, aData, *m_xManager);
     194           1 :             if (eErrCode != store_E_None)
     195             :             {
     196           0 :                 if (eErrCode != store_E_NotExists)
     197           0 :                     return eErrCode;
     198             : 
     199             :                 memset (
     200           0 :                     &pData[rnDone],
     201             :                     0,
     202           0 :                     nLength);
     203             :             }
     204             :             else
     205             :             {
     206           1 :                 PageHolderObject< data > xData (aData.makeHolder<data>());
     207             :                 memcpy (
     208           1 :                     &pData[rnDone],
     209           1 :                     &xData->m_pData[aDescr.m_nOffset],
     210           3 :                     nLength);
     211             :             }
     212             : 
     213             :             // Adjust counters.
     214           1 :             rnDone  += nLength;
     215           1 :             nOffset += nLength;
     216           1 :             nBytes  -= nLength;
     217             :         }
     218             :     }
     219             : 
     220             :     // Done.
     221          24 :     return store_E_None;
     222             : }
     223             : 
     224             : /*
     225             :  * writeAt.
     226             :  */
     227         398 : storeError OStoreLockBytes::writeAt (
     228             :     sal_uInt32  nOffset,
     229             :     const void *pBuffer,
     230             :     sal_uInt32  nBytes,
     231             :     sal_uInt32 &rnDone)
     232             : {
     233         398 :     rnDone = 0;
     234             : 
     235         398 :     if (!m_xManager.is())
     236           0 :         return store_E_InvalidAccess;
     237         398 :     if (!m_bWriteable)
     238           0 :         return store_E_AccessViolation;
     239             : 
     240         398 :     if (!pBuffer)
     241           0 :         return store_E_InvalidParameter;
     242         398 :     if (!nBytes)
     243           0 :         return store_E_None;
     244             : 
     245             :     // Acquire exclusive access.
     246         398 :     osl::MutexGuard aGuard (*m_xManager);
     247             : 
     248             :     // Write data.
     249         796 :     OStoreDirectoryPageObject aPage (m_xNode.get());
     250         398 :     const sal_uInt8 *pData = static_cast<const sal_uInt8*>(pBuffer);
     251             : 
     252         398 :     storeError eErrCode = store_E_None;
     253        1313 :     while (nBytes > 0)
     254             :     {
     255             :         // Determine 'Offset' scope.
     256         517 :         inode::ChunkScope eScope = m_xNode->scope (nOffset);
     257         517 :         if (eScope == inode::SCOPE_INTERNAL)
     258             :         {
     259             :             // Write to inode page (internal scope).
     260             :             inode::ChunkDescriptor aDescr (
     261         398 :                 nOffset, m_xNode->capacity());
     262             : 
     263         398 :             sal_uInt32 nLength = sal_uInt32(aDescr.m_nLength);
     264         398 :             if(nLength > nBytes)
     265             :             {
     266         281 :                 nLength = nBytes;
     267             :             }
     268             : 
     269             :             memcpy (
     270         398 :                 &m_xNode->m_pData[aDescr.m_nOffset],
     271         796 :                 &pData[rnDone], nLength);
     272             : 
     273             :             // Mark inode dirty.
     274         398 :             aPage.touch();
     275             : 
     276             :             // Adjust counters.
     277         398 :             rnDone  += nLength;
     278         398 :             nOffset += nLength;
     279         398 :             nBytes  -= nLength;
     280             : 
     281             :             // Adjust data length.
     282         398 :             if (aPage.dataLength() < nOffset)
     283         398 :                 aPage.dataLength (nOffset);
     284             :         }
     285             :         else
     286             :         {
     287             :             // Write to data page (external scope).
     288         119 :             OStoreDataPageObject aData;
     289             : 
     290             :             inode::ChunkDescriptor aDescr (
     291         119 :                 nOffset - m_xNode->capacity(), OStoreDataPageData::capacity(m_xNode->m_aDescr)); // @@@
     292             : 
     293         119 :             sal_uInt32 nLength = sal_uInt32(aDescr.m_nLength);
     294         119 :             if ((aDescr.m_nOffset > 0) || (nBytes < nLength))
     295             :             {
     296             :                 // Unaligned. Need to load/create data page.
     297             : // @@@ loadOrCreate()
     298         116 :                 eErrCode = aPage.read (aDescr.m_nPage, aData, *m_xManager);
     299         116 :                 if (eErrCode != store_E_None)
     300             :                 {
     301         116 :                     if (eErrCode != store_E_NotExists)
     302           0 :                         return eErrCode;
     303             : 
     304         116 :                     eErrCode = aData.construct<data>(m_xManager->allocator());
     305         116 :                     if (eErrCode != store_E_None)
     306           0 :                         return eErrCode;
     307             :                 }
     308             :             }
     309             : 
     310         238 :             PageHolderObject< data > xData (aData.makeHolder<data>());
     311         119 :             if (!xData.is())
     312             :             {
     313           3 :                 eErrCode = aData.construct<data>(m_xManager->allocator());
     314           3 :                 if (eErrCode != store_E_None)
     315           0 :                     return eErrCode;
     316           3 :                 xData = aData.makeHolder<data>();
     317             :             }
     318             : 
     319             :             // Modify data page.
     320         119 :             if(nLength > nBytes)
     321             :             {
     322         116 :                 nLength = nBytes;
     323             :             }
     324             :             memcpy (
     325         119 :                 &xData->m_pData[aDescr.m_nOffset],
     326         238 :                 &pData[rnDone], nLength);
     327             : 
     328             :             // Save data page.
     329         119 :             eErrCode = aPage.write (aDescr.m_nPage, aData, *m_xManager);
     330         119 :             if (eErrCode != store_E_None)
     331           0 :                 return eErrCode;
     332             : 
     333             :             // Adjust counters.
     334         119 :             rnDone  += nLength;
     335         119 :             nOffset += nLength;
     336         119 :             nBytes  -= nLength;
     337             : 
     338             :             // Adjust data length.
     339         119 :             if (aPage.dataLength() < nOffset)
     340         238 :                 aPage.dataLength (nOffset);
     341             :         }
     342             :     }
     343             : 
     344             :     // Check for modified inode.
     345         398 :     if (aPage.dirty())
     346         398 :         return m_xManager->saveObjectAt (aPage, aPage.location());
     347             :     else
     348         398 :         return store_E_None;
     349             : }
     350             : 
     351             : /*
     352             :  * flush.
     353             :  */
     354           0 : storeError OStoreLockBytes::flush()
     355             : {
     356           0 :     if (!m_xManager.is())
     357           0 :         return store_E_InvalidAccess;
     358             : 
     359           0 :     return m_xManager->flush();
     360             : }
     361             : 
     362             : /*
     363             :  * setSize.
     364             :  */
     365         398 : storeError OStoreLockBytes::setSize (sal_uInt32 nSize)
     366             : {
     367         398 :     if (!m_xManager.is())
     368           0 :         return store_E_InvalidAccess;
     369         398 :     if (!m_bWriteable)
     370           0 :         return store_E_AccessViolation;
     371             : 
     372             :     // Acquire exclusive access.
     373         398 :     osl::MutexGuard aGuard (*m_xManager);
     374             : 
     375             :     // Determine current length.
     376         796 :     OStoreDirectoryPageObject aPage (m_xNode.get());
     377         398 :     sal_uInt32 nDataLen = aPage.dataLength();
     378             : 
     379         398 :     if (nSize == nDataLen)
     380         398 :         return store_E_None;
     381             : 
     382           0 :     if (nSize < nDataLen)
     383             :     {
     384             :         // Truncate.
     385           0 :         storeError eErrCode = store_E_None;
     386             : 
     387             :         // Determine 'Size' scope.
     388           0 :         inode::ChunkScope eSizeScope = m_xNode->scope (nSize);
     389           0 :         if (eSizeScope == inode::SCOPE_INTERNAL)
     390             :         {
     391             :             // Internal 'Size' scope. Determine 'Data' scope.
     392           0 :             inode::ChunkScope eDataScope = m_xNode->scope (nDataLen);
     393           0 :             if (eDataScope == inode::SCOPE_EXTERNAL)
     394             :             {
     395             :                 // External 'Data' scope. Truncate all external data pages.
     396           0 :                 eErrCode = aPage.truncate (0, *m_xManager);
     397           0 :                 if (eErrCode != store_E_None)
     398           0 :                     return eErrCode;
     399             :             }
     400             : 
     401             :             // Truncate internal data page.
     402           0 :             inode::ChunkDescriptor aDescr (nSize, m_xNode->capacity());
     403             :             memset (
     404           0 :                 &(m_xNode->m_pData[aDescr.m_nOffset]),
     405           0 :                 0, aDescr.m_nLength);
     406             :         }
     407             :         else
     408             :         {
     409             :             // External 'Size' scope. Truncate external data pages.
     410             :             inode::ChunkDescriptor aDescr (
     411           0 :                 nSize - m_xNode->capacity(), OStoreDataPageData::capacity(m_xNode->m_aDescr)); // @@@
     412             : 
     413           0 :             sal_uInt32 nPage = aDescr.m_nPage;
     414           0 :             if (aDescr.m_nOffset) nPage += 1;
     415             : 
     416           0 :             eErrCode = aPage.truncate (nPage, *m_xManager);
     417           0 :             if (eErrCode != store_E_None)
     418           0 :                 return eErrCode;
     419             :         }
     420             :     }
     421             : 
     422             :     // Set (extended or truncated) size.
     423           0 :     aPage.dataLength (nSize);
     424             : 
     425             :     // Save modified inode.
     426         398 :     return m_xManager->saveObjectAt (aPage, aPage.location());
     427             : }
     428             : 
     429             : /*
     430             :  * stat.
     431             :  */
     432           0 : storeError OStoreLockBytes::stat (sal_uInt32 &rnSize)
     433             : {
     434           0 :     rnSize = 0;
     435             : 
     436           0 :     if (!m_xManager.is())
     437           0 :         return store_E_InvalidAccess;
     438             : 
     439           0 :     OStoreDirectoryPageObject aPage (m_xNode.get());
     440           0 :     rnSize = aPage.dataLength();
     441           0 :     return store_E_None;
     442             : }
     443             : 
     444             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11