LCOV - code coverage report
Current view: top level - configmgr/source - node.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 25 28 89.3 %
Date: 2012-08-25 Functions: 11 14 78.6 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 6 14 42.9 %

           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                 :            : #include "sal/config.h"
      21                 :            : 
      22                 :            : #include <cassert>
      23                 :            : 
      24                 :            : #include "com/sun/star/uno/Reference.hxx"
      25                 :            : #include "com/sun/star/uno/RuntimeException.hpp"
      26                 :            : #include "com/sun/star/uno/XInterface.hpp"
      27                 :            : #include "rtl/ref.hxx"
      28                 :            : #include "rtl/ustring.h"
      29                 :            : #include "rtl/ustring.hxx"
      30                 :            : 
      31                 :            : #include "data.hxx"
      32                 :            : #include "node.hxx"
      33                 :            : #include "nodemap.hxx"
      34                 :            : 
      35                 :            : namespace configmgr {
      36                 :            : 
      37                 :            : namespace {
      38                 :            : 
      39                 :            : namespace css = com::sun::star;
      40                 :            : 
      41                 :            : }
      42                 :            : 
      43                 :          0 : NodeMap & Node::getMembers() {
      44                 :            :     assert(false);
      45                 :            :     throw css::uno::RuntimeException(
      46                 :            :         rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("this cannot happen")),
      47 [ #  # ][ #  # ]:          0 :         css::uno::Reference< css::uno::XInterface >());
      48                 :            : }
      49                 :            : 
      50                 :      54255 : rtl::OUString Node::getTemplateName() const {
      51                 :      54255 :     return rtl::OUString();
      52                 :            : }
      53                 :            : 
      54                 :      99469 : void Node::setMandatory(int layer) {
      55                 :            :     (void) layer; // avoid warnings
      56                 :            :     assert(layer == Data::NO_LAYER);
      57                 :      99469 : }
      58                 :            : 
      59                 :      99469 : int Node::getMandatory() const {
      60                 :      99469 :     return Data::NO_LAYER;
      61                 :            : }
      62                 :            : 
      63                 :    7407651 : void Node::setLayer(int layer) {
      64                 :            :     assert(layer >= layer_);
      65                 :    7407651 :     layer_ = layer;
      66                 :    7407651 : }
      67                 :            : 
      68                 :    9151372 : int Node::getLayer() const {
      69                 :    9151372 :     return layer_;
      70                 :            : }
      71                 :            : 
      72                 :    9096680 : void Node::setFinalized(int layer) {
      73                 :    9096680 :     finalized_ = layer;
      74                 :    9096680 : }
      75                 :            : 
      76                 :    7629406 : int Node::getFinalized() const {
      77                 :    7629406 :     return finalized_;
      78                 :            : }
      79                 :            : 
      80                 :    7193596 : rtl::Reference< Node > Node::getMember(rtl::OUString const & name) {
      81         [ +  - ]:    7193596 :     NodeMap const & members = getMembers();
      82         [ +  - ]:    7193596 :     NodeMap::const_iterator i(members.find(name));
      83 [ +  + ][ +  - ]:    7193596 :     return i == members.end() ? rtl::Reference< Node >() : i->second;
      84                 :            : }
      85                 :            : 
      86                 :    3067022 : Node::Node(int layer): layer_(layer), finalized_(Data::NO_LAYER) {}
      87                 :            : 
      88                 :   12706795 : Node::Node(const Node & other):
      89                 :   12706795 :     SimpleReferenceObject(), layer_(other.layer_), finalized_(other.finalized_)
      90                 :   12706795 : {}
      91                 :            : 
      92         [ -  + ]:   15676272 : Node::~Node() {}
      93                 :            : 
      94                 :          0 : void Node::clear() {}
      95                 :            : 
      96                 :            : }
      97                 :            : 
      98                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10