LCOV - code coverage report
Current view: top level - basebmp/source - debug.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 1 23 4.3 %
Date: 2015-06-13 12:38:46 Functions: 2 3 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 <osl/diagnose.h>
      21             : 
      22             : #include <basegfx/point/b2ipoint.hxx>
      23             : #include <basegfx/vector/b2ivector.hxx>
      24             : 
      25             : #include <basebmp/scanlineformats.hxx>
      26             : #include <basebmp/color.hxx>
      27             : #include <basebmp/bitmapdevice.hxx>
      28             : #include <basebmp/debug.hxx>
      29             : 
      30             : #include <iomanip>
      31             : 
      32             : namespace basebmp
      33             : {
      34           0 :     const char* formatName( Format nScanlineFormat )
      35             :     {
      36           0 :         switch( nScanlineFormat )
      37             :         {
      38             :         case Format::NONE:
      39           0 :             return "NONE";
      40             :         case Format::OneBitMsbGrey:
      41           0 :             return "ONE_BIT_MSB_GREY";
      42             :         case Format::OneBitLsbGrey:
      43           0 :             return "ONE_BIT_LSB_GREY";
      44             :         case Format::OneBitMsbPal:
      45           0 :             return "ONE_BIT_MSB_PAL";
      46             :         case Format::OneBitLsbPal:
      47           0 :             return "ONE_BIT_LSB_PAL";
      48             :         case Format::FourBitMsbGrey:
      49           0 :             return "FOUR_BIT_MSB_GREY";
      50             :         case Format::FourBitLsbGrey:
      51           0 :             return "FOUR_BIT_LSB_GREY";
      52             :         case Format::FourBitMsbPal:
      53           0 :             return "FOUR_BIT_MSB_PAL";
      54             :         case Format::FourBitLsbPal:
      55           0 :             return "FOUR_BIT_LSB_PAL";
      56             :         case Format::EightBitPal:
      57           0 :             return "EIGHT_BIT_PAL";
      58             :         case Format::EightBitGrey:
      59           0 :             return "EIGHT_BIT_GREY";
      60             :         case Format::SixteenBitLsbTcMask:
      61           0 :             return "SIXTEEN_BIT_LSB_TC_MASK";
      62             :         case Format::SixteenBitMsbTcMask:
      63           0 :             return "SIXTEEN_BIT_MSB_TC_MASK";
      64             :         case Format::TwentyFourBitTcMask:
      65           0 :             return "TWENTYFOUR_BIT_TC_MASK";
      66             :         case Format::ThirtyTwoBitTcMaskBGRX:
      67           0 :             return "THIRTYTWO_BIT_TC_MASK_BGRX";
      68             :         case Format::ThirtyTwoBitTcMaskBGRA:
      69           0 :             return "THIRTYTWO_BIT_TC_MASK_BGRA";
      70             :         case Format::ThirtyTwoBitTcMaskARGB:
      71           0 :             return "THIRTYTWO_BIT_TC_MASK_ARGB";
      72             :         case Format::ThirtyTwoBitTcMaskABGR:
      73           0 :             return "THIRTYTWO_BIT_TC_MASK_ABGR";
      74             :         case Format::ThirtyTwoBitTcMaskRGBA:
      75           0 :             return "THIRTYTWO_BIT_TC_MASK_RGBA";
      76             :         default:
      77           0 :             return "<unknown>";
      78             :         }
      79             :     }
      80             : 
      81             : #if OSL_DEBUG_LEVEL > 2
      82             : 
      83             :     void debugDump( const BitmapDeviceSharedPtr& rDevice,
      84             :                     std::ostream&                rOutputStream )
      85             :     {
      86             :         const basegfx::B2IVector aSize( rDevice->getSize() );
      87             :         const bool               bTopDown( rDevice->isTopDown() );
      88             :         const Format             nScanlineFormat( rDevice->getScanlineFormat() );
      89             : 
      90             :         rOutputStream
      91             :             << "/* basebmp::BitmapDevice content dump */" << std::endl
      92             :             << "/* Width   = " << aSize.getX() << " */" << std::endl
      93             :             << "/* Height  = " << aSize.getY() << " */" << std::endl
      94             :             << "/* TopDown = " << bTopDown << " */" << std::endl
      95             :             << "/* Format  = " << formatName(nScanlineFormat) << " */" << std::endl
      96             :             << "/* (dumped entries are already mapped RGBA color values) */" << std::endl
      97             :             << std::endl;
      98             : 
      99             :         rOutputStream << std::hex;
     100             :         for( int y=0; y<aSize.getY(); ++y )
     101             :         {
     102             :             for( int x=0; x<aSize.getX(); ++x )
     103             :                 rOutputStream << std::setw(8) << (sal_uInt32)rDevice->getPixel( basegfx::B2IPoint(x,y) ).toInt32() << " ";
     104             :             rOutputStream << std::endl;
     105             :         }
     106             :     }
     107             : 
     108             : #endif // OSL_DEBUG_LEVEL > 2
     109             : 
     110         804 : }
     111             : 
     112             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11