From ea3151acb4915e56c702e4edfa92a9b571c3d104 Mon Sep 17 00:00:00 2001 From: Rohan Kumar Date: Tue, 8 Mar 2016 00:05:29 +0530 Subject: tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I replaced OSL_DEBUG_LEVEL > 1 to OSL_DEBUG_LEVEL > 0 in most of the files as suggested in easy hack Change-Id: I2c46dfd9de2ae965680494146120ea3c7530cc98 Reviewed-on: https://gerrit.libreoffice.org/23012 Tested-by: Jenkins Reviewed-by: Björn Michaelsen --- sdext/source/pdfimport/filterdet.cxx | 2 +- sdext/source/pdfimport/pdfparse/pdfentries.cxx | 6 +++--- sdext/source/pdfimport/pdfparse/pdfparse.cxx | 16 ++++++++-------- sdext/source/pdfimport/sax/emitcontext.cxx | 12 ++++++------ sdext/source/pdfimport/tree/genericelements.cxx | 4 ++-- sdext/source/pdfimport/tree/genericelements.hxx | 4 ++-- sdext/source/pdfimport/tree/pdfiprocessor.cxx | 4 ++-- sdext/source/presenter/PresenterAccessibility.cxx | 2 +- 8 files changed, 25 insertions(+), 25 deletions(-) (limited to 'sdext') diff --git a/sdext/source/pdfimport/filterdet.cxx b/sdext/source/pdfimport/filterdet.cxx index a1016de0f8ec..5e5485f2485a 100644 --- a/sdext/source/pdfimport/filterdet.cxx +++ b/sdext/source/pdfimport/filterdet.cxx @@ -468,7 +468,7 @@ bool checkDocChecksum( const OUString& rInPDFFileURL, // compare the contents bRet = (0 == memcmp( nActualChecksum, nTestChecksum, sizeof( nActualChecksum ) )); -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 OSL_TRACE( "test checksum: " ); for( unsigned int i = 0; i < sizeof(nTestChecksum); i++ ) OSL_TRACE( "%.2X", int(nTestChecksum[i]) ); diff --git a/sdext/source/pdfimport/pdfparse/pdfentries.cxx b/sdext/source/pdfimport/pdfparse/pdfentries.cxx index b39fb25dd37a..ab5f2e813ca7 100644 --- a/sdext/source/pdfimport/pdfparse/pdfentries.cxx +++ b/sdext/source/pdfimport/pdfparse/pdfentries.cxx @@ -1302,7 +1302,7 @@ PDFFileImplData* PDFFile::impl_getData() const PDFString* pStr = dynamic_cast(pArr->m_aSubElements[0]); if( pStr ) m_pData->m_aDocID = pStr->getFilteredString(); -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 OUString aTmp; for( int i = 0; i < m_pData->m_aDocID.getLength(); i++ ) aTmp += OUString::number((unsigned int)sal_uInt8(m_pData->m_aDocID[i]), 16); @@ -1364,7 +1364,7 @@ PDFFileImplData* PDFFile::impl_getData() const OString aEnt = pString->getFilteredString(); if( aEnt.getLength() == 32 ) memcpy( m_pData->m_aOEntry, aEnt.getStr(), 32 ); -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 else { OUString aTmp; @@ -1384,7 +1384,7 @@ PDFFileImplData* PDFFile::impl_getData() const OString aEnt = pString->getFilteredString(); if( aEnt.getLength() == 32 ) memcpy( m_pData->m_aUEntry, aEnt.getStr(), 32 ); -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 else { OUString aTmp; diff --git a/sdext/source/pdfimport/pdfparse/pdfparse.cxx b/sdext/source/pdfimport/pdfparse/pdfparse.cxx index f4304b47cb2f..2d73ffdc724f 100644 --- a/sdext/source/pdfimport/pdfparse/pdfparse.cxx +++ b/sdext/source/pdfimport/pdfparse/pdfparse.cxx @@ -547,20 +547,20 @@ PDFEntry* PDFReader::read( const char* pBuffer, unsigned int nLen ) try { -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 boost::spirit::parse_info aInfo = #endif boost::spirit::parse( pBuffer, pBuffer+nLen, aGrammar, boost::spirit::space_p ); -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 SAL_INFO("sdext.pdfimport.pdfparse", "parseinfo: stop = " << aInfo.stop << " (buff=" << pBuffer << ", offset = " << aInfo.stop - pBuffer << "), hit = " << (aInfo.hit ? OUString("true") : OUString("false")) << ", full = " << (aInfo.full ? OUString("true") : OUString("false")) << ", length = " << (int)aInfo.length ); #endif } catch( const parser_error& rError ) { -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 OString aTmp; unsigned int nElem = aGrammar.m_aObjectStack.size(); for( unsigned int i = 0; i < nElem; i++ ) @@ -577,7 +577,7 @@ PDFEntry* PDFReader::read( const char* pBuffer, unsigned int nLen ) pRet = aGrammar.m_aObjectStack.back(); aGrammar.m_aObjectStack.pop_back(); } -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 else if( nEntries > 1 ) SAL_WARN("sdext.pdfimport.pdfparse", "error got " << nEntries << " stack objects in parse" ); #endif @@ -623,21 +623,21 @@ PDFEntry* PDFReader::read( const char* pFileName ) try { -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 boost::spirit::parse_info< file_iterator<> > aInfo = #endif boost::spirit::parse( file_start, file_end, aGrammar, boost::spirit::space_p ); -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 SAL_INFO("sdext.pdfimport.pdfparse", "parseinfo: stop at offset = " << aInfo.stop - file_start << ", hit = " << (aInfo.hit ? "true" : "false") << ", full = " << (aInfo.full ? "true" : "false") << ", length = " << aInfo.length); #endif } catch( const parser_error< const char*, file_iterator<> >& rError ) { SAL_WARN("sdext.pdfimport.pdfparse", "parse error: " << rError.descriptor << " at buffer pos " << rError.where - file_start); -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 OUString aTmp; unsigned int nElem = aGrammar.m_aObjectStack.size(); for( unsigned int i = 0; i < nElem; i++ ) @@ -658,7 +658,7 @@ PDFEntry* PDFReader::read( const char* pFileName ) pRet = aGrammar.m_aObjectStack.back(); aGrammar.m_aObjectStack.pop_back(); } -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 else if( nEntries > 1 ) { SAL_WARN("sdext.pdfimport.pdfparse", "error got " << nEntries << " stack objects in parse"); diff --git a/sdext/source/pdfimport/sax/emitcontext.cxx b/sdext/source/pdfimport/sax/emitcontext.cxx index bae84b6bf83a..f81651005984 100644 --- a/sdext/source/pdfimport/sax/emitcontext.cxx +++ b/sdext/source/pdfimport/sax/emitcontext.cxx @@ -27,7 +27,7 @@ #include #include -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 #include static osl::File* pStream = NULL; static int nIndent = 0; @@ -49,7 +49,7 @@ SaxEmitter::SaxEmitter( const uno::Reference< xml::sax::XDocumentHandler >& xDoc catch( xml::sax::SAXException& ) { } -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 static const char* pDir = getenv( "DBG_PDFIMPORT_DIR" ); if( pDir ) { @@ -80,7 +80,7 @@ SaxEmitter::~SaxEmitter() catch( xml::sax::SAXException& ) { } -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 if( pStream ) { pStream->close(); @@ -102,7 +102,7 @@ void SaxEmitter::beginTag( const char* pTag, const PropertyMap& rProperties ) catch( xml::sax::SAXException& ) { } -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 if( pStream ) { sal_uInt64 nWritten = 0; @@ -136,7 +136,7 @@ void SaxEmitter::write( const OUString& rText ) catch( xml::sax::SAXException& ) { } -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 if( pStream ) { OString aStr( OUStringToOString( rText, RTL_TEXTENCODING_UTF8 ) ); @@ -156,7 +156,7 @@ void SaxEmitter::endTag( const char* pTag ) catch( xml::sax::SAXException& ) { } -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 if( pStream ) { sal_uInt64 nWritten = 0; diff --git a/sdext/source/pdfimport/tree/genericelements.cxx b/sdext/source/pdfimport/tree/genericelements.cxx index afab9a389c46..12a52dc7ecb9 100644 --- a/sdext/source/pdfimport/tree/genericelements.cxx +++ b/sdext/source/pdfimport/tree/genericelements.cxx @@ -90,7 +90,7 @@ void Element::updateGeometryWith( const Element* pMergeFrom ) } -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 #include void Element::emitStructure( int nLevel) { @@ -166,7 +166,7 @@ void PolyPolyElement::visitedBy( ElementTreeVisitor& rV rVisitor.visit( *this, rParentIt); } -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 void PolyPolyElement::emitStructure( int nLevel) { OSL_TRACE( "%*s<%s %p>", nLevel, "", typeid( *this ).name(), this ); diff --git a/sdext/source/pdfimport/tree/genericelements.hxx b/sdext/source/pdfimport/tree/genericelements.hxx index 9fefbc45bbed..6fac29035466 100644 --- a/sdext/source/pdfimport/tree/genericelements.hxx +++ b/sdext/source/pdfimport/tree/genericelements.hxx @@ -93,7 +93,7 @@ namespace pdfi /// Union element geometry with given element void updateGeometryWith( const Element* pMergeFrom ); -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 // xxx refac TODO: move code to visitor virtual void emitStructure( int nLevel ); #endif @@ -217,7 +217,7 @@ namespace pdfi void updateGeometry(); -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 virtual void emitStructure( int nLevel ); #endif diff --git a/sdext/source/pdfimport/tree/pdfiprocessor.cxx b/sdext/source/pdfimport/tree/pdfiprocessor.cxx index 3f8fcc73dfdb..c48a2e3ccf19 100644 --- a/sdext/source/pdfimport/tree/pdfiprocessor.cxx +++ b/sdext/source/pdfimport/tree/pdfiprocessor.cxx @@ -542,7 +542,7 @@ void PDFIProcessor::startPage( const geometry::RealSize2D& rSize ) void PDFIProcessor::emit( XmlEmitter& rEmitter, const TreeVisitorFactory& rVisitorFactory ) { -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 m_pDocument->emitStructure( 0 ); #endif @@ -552,7 +552,7 @@ void PDFIProcessor::emit( XmlEmitter& rEmitter, startIndicator( " " ); m_pDocument->visitedBy( *optimizingVisitor, std::list::const_iterator()); -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 m_pDocument->emitStructure( 0 ); #endif diff --git a/sdext/source/presenter/PresenterAccessibility.cxx b/sdext/source/presenter/PresenterAccessibility.cxx index f1b4c5a1b1cf..8736dc7ab924 100644 --- a/sdext/source/presenter/PresenterAccessibility.cxx +++ b/sdext/source/presenter/PresenterAccessibility.cxx @@ -1568,7 +1568,7 @@ Sequence SAL_CALL { ThrowIfDisposed(); -#if OSL_DEBUG_LEVEL > 1 +#if OSL_DEBUG_LEVEL > 0 OSL_TRACE("PresenterAccessible::AccessibleParagraph::getCharacterAttributes at %p,%d returns empty set\r", this,nIndex); for (sal_Int32 nAttributeIndex(0),nAttributeCount(rRequestedAttributes.getLength()); -- cgit v1.2.3