LCOV - code coverage report
Current view: top level - registry/source - regimpl.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 10 12 83.3 %
Date: 2012-08-25 Functions: 5 6 83.3 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 0 -

           Branch data     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                 :            : #ifndef _REGIMPL_HXX_
      21                 :            : #define _REGIMPL_HXX_
      22                 :            : 
      23                 :            : #include <set>
      24                 :            : #include <boost/unordered_map.hpp>
      25                 :            : 
      26                 :            : #include    <registry/registry.h>
      27                 :            : #include    <rtl/ustring.hxx>
      28                 :            : #include    <osl/mutex.hxx>
      29                 :            : #include    <store/store.hxx>
      30                 :            : 
      31                 :            : #define REG_PAGESIZE 512
      32                 :            : 
      33                 :            : #define REG_MODE_CREATE     store_AccessCreate
      34                 :            : #define REG_MODE_OPEN       store_AccessReadWrite
      35                 :            : #define REG_MODE_OPENREAD   store_AccessReadOnly
      36                 :            : 
      37                 :            : #define KEY_MODE_CREATE     store_AccessCreate
      38                 :            : #define KEY_MODE_OPEN       store_AccessReadWrite
      39                 :            : #define KEY_MODE_OPENREAD   store_AccessReadOnly
      40                 :            : 
      41                 :            : 
      42                 :            : #define VALUE_MODE_CREATE   store_AccessCreate
      43                 :            : #define VALUE_MODE_OPEN     store_AccessReadWrite
      44                 :            : #define VALUE_MODE_OPENREAD store_AccessReadOnly
      45                 :            : 
      46                 :            : // 5 Bytes = 1 (Byte fuer den Typ) + 4 (Bytes fuer die Groesse der Daten)
      47                 :            : #define VALUE_HEADERSIZE    5
      48                 :            : #define VALUE_TYPEOFFSET    1
      49                 :            : #define VALUE_HEADEROFFSET  5
      50                 :            : 
      51                 :            : #define REG_CREATE      0x0004  // allow write accesses
      52                 :            : 
      53                 :            : #define REG_GUARD(mutex) \
      54                 :            :     osl::Guard< osl::Mutex > aGuard( mutex );
      55                 :            : 
      56                 :            : class ORegKey;
      57                 :            : class RegistryTypeReader;
      58                 :            : 
      59                 :            : class ORegistry
      60                 :            : {
      61                 :            : public:
      62                 :            :     ORegistry();
      63                 :            : 
      64                 :    2434180 :     sal_uInt32  acquire()
      65                 :    2434180 :         { return ++m_refCount; }
      66                 :            : 
      67                 :    2440253 :     sal_uInt32  release()
      68                 :    2440253 :         { return --m_refCount; }
      69                 :            : 
      70                 :            :     RegError    initRegistry(const rtl::OUString& name,
      71                 :            :                              RegAccessMode accessMode);
      72                 :            : 
      73                 :            :     RegError    closeRegistry();
      74                 :            : 
      75                 :            :     RegError    destroyRegistry(const rtl::OUString& name);
      76                 :            : 
      77                 :            :     RegError    acquireKey(RegKeyHandle hKey);
      78                 :            :     RegError    releaseKey(RegKeyHandle hKey);
      79                 :            : 
      80                 :            :     RegError    createKey(RegKeyHandle hKey,
      81                 :            :                           const rtl::OUString& keyName,
      82                 :            :                           RegKeyHandle* phNewKey);
      83                 :            : 
      84                 :            :     RegError    openKey(RegKeyHandle hKey,
      85                 :            :                         const rtl::OUString& keyName,
      86                 :            :                         RegKeyHandle* phOpenKey);
      87                 :            : 
      88                 :            :     RegError    closeKey(RegKeyHandle hKey);
      89                 :            : 
      90                 :            :     RegError    deleteKey(RegKeyHandle hKey, const rtl::OUString& keyName);
      91                 :            : 
      92                 :            :     RegError    loadKey(RegKeyHandle hKey,
      93                 :            :                         const rtl::OUString& regFileName,
      94                 :            :                         sal_Bool bWarings=sal_False,
      95                 :            :                         sal_Bool bReport=sal_False);
      96                 :            : 
      97                 :            :     RegError    saveKey(RegKeyHandle hKey,
      98                 :            :                         const rtl::OUString& regFileName,
      99                 :            :                         sal_Bool bWarings=sal_False,
     100                 :            :                         sal_Bool bReport=sal_False);
     101                 :            : 
     102                 :            :     RegError    dumpRegistry(RegKeyHandle hKey) const;
     103                 :            : 
     104                 :            :     ~ORegistry();
     105                 :            : 
     106                 :    1674735 :     sal_Bool            isReadOnly() const
     107                 :    1674735 :         { return m_readOnly; }
     108                 :            : 
     109                 :    1327644 :     sal_Bool            isOpen() const
     110                 :    1327644 :         { return m_isOpen; }
     111                 :            : 
     112                 :            :     ORegKey*    getRootKey();
     113                 :            : 
     114                 :    1828851 :     const store::OStoreFile& getStoreFile() const
     115                 :    1828851 :         { return m_file; }
     116                 :            : 
     117                 :          0 :     const rtl::OUString&    getName() const
     118                 :          0 :         { return m_name; }
     119                 :            : 
     120                 :            :     friend class ORegKey;
     121                 :            : 
     122                 :            : private:
     123                 :            :     RegError    eraseKey(ORegKey* pKey, const rtl::OUString& keyName);
     124                 :            : 
     125                 :            :     RegError    deleteSubkeysAndValues(ORegKey* pKey);
     126                 :            : 
     127                 :            :     RegError    loadAndSaveValue(ORegKey* pTargetKey,
     128                 :            :                                  ORegKey* pSourceKey,
     129                 :            :                                  const rtl::OUString& valueName,
     130                 :            :                                  sal_uInt32 nCut,
     131                 :            :                                  sal_Bool bWarnings=sal_False,
     132                 :            :                                  sal_Bool bReport=sal_False);
     133                 :            : 
     134                 :            :     RegError    checkBlop(store::OStoreStream& rValue,
     135                 :            :                           const rtl::OUString& sTargetPath,
     136                 :            :                           sal_uInt32 srcValueSize,
     137                 :            :                           sal_uInt8* pSrcBuffer,
     138                 :            :                           sal_Bool bReport=sal_False);
     139                 :            : 
     140                 :            :     RegError    mergeModuleValue(store::OStoreStream& rTargetValue,
     141                 :            :                                  RegistryTypeReader& reader,
     142                 :            :                                  RegistryTypeReader& reader2);
     143                 :            : 
     144                 :            :     RegError    loadAndSaveKeys(ORegKey* pTargetKey,
     145                 :            :                                 ORegKey* pSourceKey,
     146                 :            :                                 const rtl::OUString& keyName,
     147                 :            :                                 sal_uInt32 nCut,
     148                 :            :                                 sal_Bool bWarnings=sal_False,
     149                 :            :                                 sal_Bool bReport=sal_False);
     150                 :            : 
     151                 :            :     RegError    dumpValue(const rtl::OUString& sPath,
     152                 :            :                           const rtl::OUString& sName,
     153                 :            :                           sal_Int16 nSpace) const;
     154                 :            : 
     155                 :            :     RegError    dumpKey(const rtl::OUString& sPath,
     156                 :            :                         const rtl::OUString& sName,
     157                 :            :                         sal_Int16 nSpace) const;
     158                 :            : 
     159                 :            :     typedef boost::unordered_map< rtl::OUString, ORegKey*, rtl::OUStringHash > KeyMap;
     160                 :            : 
     161                 :            :     sal_uInt32      m_refCount;
     162                 :            :     osl::Mutex          m_mutex;
     163                 :            :     sal_Bool        m_readOnly;
     164                 :            :     sal_Bool        m_isOpen;
     165                 :            :     rtl::OUString       m_name;
     166                 :            :     store::OStoreFile   m_file;
     167                 :            :     KeyMap          m_openKeyTable;
     168                 :            : 
     169                 :            :     const rtl::OUString ROOT;
     170                 :            : };
     171                 :            : 
     172                 :            : #endif
     173                 :            : 
     174                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10