LCOV - code coverage report
Current view: top level - binaryurp/source - currentcontext.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 11 13 84.6 %
Date: 2012-08-25 Functions: 2 2 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 6 20 30.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                 :            : #include "sal/config.h"
      21                 :            : 
      22                 :            : #include "com/sun/star/uno/Reference.hxx"
      23                 :            : #include "com/sun/star/uno/RuntimeException.hpp"
      24                 :            : #include "com/sun/star/uno/XInterface.hpp"
      25                 :            : #include "rtl/ustring.h"
      26                 :            : #include "rtl/ustring.hxx"
      27                 :            : #include "uno/current_context.h"
      28                 :            : #include "uno/dispatcher.hxx"
      29                 :            : #include "uno/lbnames.h"
      30                 :            : 
      31                 :            : #include "currentcontext.hxx"
      32                 :            : 
      33                 :            : namespace binaryurp {
      34                 :            : 
      35                 :            : namespace {
      36                 :            : 
      37                 :            : namespace css = com::sun::star;
      38                 :            : 
      39                 :            : }
      40                 :            : 
      41                 :            : namespace current_context {
      42                 :            : 
      43                 :     389505 : css::uno::UnoInterfaceReference get() {
      44                 :     389505 :     css::uno::UnoInterfaceReference cc;
      45         [ -  + ]:     389505 :     if (!uno_getCurrentContext(
      46                 :            :             reinterpret_cast< void ** >(&cc.m_pUnoI),
      47         [ +  - ]:     389505 :             OUString(RTL_CONSTASCII_USTRINGPARAM(UNO_LB_UNO)).pData, 0))
      48                 :            :     {
      49                 :            :         throw css::uno::RuntimeException(
      50                 :            :             OUString(
      51                 :            :                 RTL_CONSTASCII_USTRINGPARAM("uno_getCurrentContext failed")),
      52 [ #  # ][ #  # ]:          0 :             css::uno::Reference< css::uno::XInterface >());
      53                 :            :     }
      54                 :     389505 :     return cc;
      55                 :            : }
      56                 :            : 
      57                 :     733446 : void set(css::uno::UnoInterfaceReference const & value) {
      58         [ +  - ]:     733446 :     css::uno::UnoInterfaceReference cc(value);
      59         [ -  + ]:     733446 :     if (!uno_setCurrentContext(
      60                 :            :             cc.m_pUnoI,
      61         [ +  - ]:     733446 :             OUString(RTL_CONSTASCII_USTRINGPARAM(UNO_LB_UNO)).pData, 0))
      62                 :            :     {
      63                 :            :         throw css::uno::RuntimeException(
      64                 :            :             OUString(
      65                 :            :                 RTL_CONSTASCII_USTRINGPARAM("uno_setCurrentContext failed")),
      66 [ #  # ][ #  # ]:          0 :             css::uno::Reference< css::uno::XInterface >());
      67         [ +  - ]:     733446 :     }
      68                 :     733446 : }
      69                 :            : 
      70                 :            : }
      71                 :            : 
      72                 :            : }
      73                 :            : 
      74                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10