LCOV - code coverage report
Current view: directory - storage/build - mozStorageModule.cpp (source / functions) Found Hit Coverage
Test: app.info Lines: 5 5 100.0 %
Date: 2012-06-02 Functions: 3 3 100.0 %

       1                 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2                 : /* ***** BEGIN LICENSE BLOCK *****
       3                 :  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
       4                 :  *
       5                 :  * The contents of this file are subject to the Mozilla Public License Version
       6                 :  * 1.1 (the "License"); you may not use this file except in compliance with
       7                 :  * the License. You may obtain a copy of the License at
       8                 :  * http://www.mozilla.org/MPL/
       9                 :  *
      10                 :  * Software distributed under the License is distributed on an "AS IS" basis,
      11                 :  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
      12                 :  * for the specific language governing rights and limitations under the
      13                 :  * License.
      14                 :  *
      15                 :  * The Original Code is Oracle Corporation code.
      16                 :  *
      17                 :  * The Initial Developer of the Original Code is
      18                 :  *  Oracle Corporation
      19                 :  * Portions created by the Initial Developer are Copyright (C) 2004
      20                 :  * the Initial Developer. All Rights Reserved.
      21                 :  *
      22                 :  * Contributor(s):
      23                 :  *   Vladimir Vukicevic <vladimir.vukicevic@oracle.com>
      24                 :  *   Shawn Wilsher <me@shawnwilsher.com>
      25                 :  *
      26                 :  * Alternatively, the contents of this file may be used under the terms of
      27                 :  * either the GNU General Public License Version 2 or later (the "GPL"), or
      28                 :  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
      29                 :  * in which case the provisions of the GPL or the LGPL are applicable instead
      30                 :  * of those above. If you wish to allow use of your version of this file only
      31                 :  * under the terms of either the GPL or the LGPL, and not to allow others to
      32                 :  * use your version of this file under the terms of the MPL, indicate your
      33                 :  * decision by deleting the provisions above and replace them with the notice
      34                 :  * and other provisions required by the GPL or the LGPL. If you do not delete
      35                 :  * the provisions above, a recipient may use your version of this file under
      36                 :  * the terms of any one of the MPL, the GPL or the LGPL.
      37                 :  *
      38                 :  * ***** END LICENSE BLOCK ***** */
      39                 : 
      40                 : #include "nsCOMPtr.h"
      41                 : #include "mozilla/ModuleUtils.h"
      42                 : 
      43                 : #include "mozStorageService.h"
      44                 : #include "mozStorageConnection.h"
      45                 : #include "mozStorageStatementWrapper.h"
      46                 : #include "VacuumManager.h"
      47                 : 
      48                 : #include "mozStorageCID.h"
      49                 : 
      50                 : namespace mozilla {
      51                 : namespace storage {
      52                 : 
      53             803 : NS_GENERIC_FACTORY_SINGLETON_CONSTRUCTOR(Service,
      54             803 :                                          Service::getSingleton)
      55             134 : NS_GENERIC_FACTORY_CONSTRUCTOR(StatementWrapper)
      56               1 : NS_GENERIC_FACTORY_SINGLETON_CONSTRUCTOR(VacuumManager,
      57               1 :                                          VacuumManager::getSingleton)
      58                 : 
      59                 : } // namespace storage
      60                 : } // namespace mozilla
      61                 : 
      62                 : NS_DEFINE_NAMED_CID(MOZ_STORAGE_SERVICE_CID);
      63                 : NS_DEFINE_NAMED_CID(MOZ_STORAGE_STATEMENT_WRAPPER_CID);
      64                 : NS_DEFINE_NAMED_CID(VACUUMMANAGER_CID);
      65                 : 
      66                 : static const mozilla::Module::CIDEntry kStorageCIDs[] = {
      67                 :     { &kMOZ_STORAGE_SERVICE_CID, false, NULL, mozilla::storage::ServiceConstructor },
      68                 :     { &kMOZ_STORAGE_STATEMENT_WRAPPER_CID, false, NULL, mozilla::storage::StatementWrapperConstructor },
      69                 :     { &kVACUUMMANAGER_CID, false, NULL, mozilla::storage::VacuumManagerConstructor },
      70                 :     { NULL }
      71                 : };
      72                 : 
      73                 : static const mozilla::Module::ContractIDEntry kStorageContracts[] = {
      74                 :     { MOZ_STORAGE_SERVICE_CONTRACTID, &kMOZ_STORAGE_SERVICE_CID },
      75                 :     { MOZ_STORAGE_STATEMENT_WRAPPER_CONTRACTID, &kMOZ_STORAGE_STATEMENT_WRAPPER_CID },
      76                 :     { VACUUMMANAGER_CONTRACTID, &kVACUUMMANAGER_CID },
      77                 :     { NULL }
      78                 : };
      79                 : 
      80                 : static const mozilla::Module::CategoryEntry kStorageCategories[] = {
      81                 :     { "idle-daily", "MozStorage Vacuum Manager", VACUUMMANAGER_CONTRACTID },
      82                 :     { NULL }
      83                 : };
      84                 : 
      85                 : static const mozilla::Module kStorageModule = {
      86                 :     mozilla::Module::kVersion,
      87                 :     kStorageCIDs,
      88                 :     kStorageContracts,
      89                 :     kStorageCategories
      90                 : };
      91                 : 
      92                 : NSMODULE_DEFN(mozStorageModule) = &kStorageModule;

Generated by: LCOV version 1.7