2010-10-27 13:13:11 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-11-19 19:45:04 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2000-09-18 14:18:43 +00:00
|
|
|
|
|
|
|
|
2013-10-23 19:17:28 +02:00
|
|
|
#ifndef INCLUDED_OSL_DIAGNOSE_H
|
|
|
|
#define INCLUDED_OSL_DIAGNOSE_H
|
2000-09-18 14:18:43 +00:00
|
|
|
|
2013-11-09 15:13:21 -06:00
|
|
|
#include <sal/config.h>
|
2011-11-22 09:34:46 +01:00
|
|
|
|
2013-11-09 15:13:21 -06:00
|
|
|
#include <sal/detail/log.h>
|
|
|
|
#include <sal/saldllapi.h>
|
|
|
|
#include <sal/types.h>
|
2000-09-18 14:18:43 +00:00
|
|
|
|
2011-02-25 18:25:17 +01:00
|
|
|
/** provides simple diagnostic support
|
|
|
|
|
2011-11-22 09:34:46 +01:00
|
|
|
The facilities provided by this header are deprecated. True assertions
|
|
|
|
(that detect broken program logic) should use standard assert (which aborts
|
|
|
|
if an assertion fails, and is controlled by the standard NDEBUG macro).
|
|
|
|
Logging of warnings (e.g., about malformed input) and traces (e.g., about
|
|
|
|
steps taken while executing some protocol) should use the facilities
|
2011-11-23 15:45:43 +01:00
|
|
|
provided by (C++ only) sal/log.hxx.
|
2011-11-22 09:34:46 +01:00
|
|
|
|
|
|
|
Because the assertion macros (OSL_ASSERT, OSL_ENSURE, OSL_FAIL, OSL_PRECOND,
|
|
|
|
and OSL_POSTCOND) have been used for true assertions as well as for logged
|
|
|
|
warnings, they map to SAL_WARN instead of standard assert. OSL_TRACE maps
|
|
|
|
to SAL_INFO.
|
|
|
|
|
2011-02-25 18:25:17 +01:00
|
|
|
The functions defined in this header are not intended to be used directly,
|
|
|
|
but through defined macros. The macros can be divided into three categories:
|
|
|
|
assertions, traces and other stuff .-) Their usability depends on the value
|
|
|
|
of OSL_DEBUG_LEVEL macro: assertions are only active if OSL_DEBUG_LEVEL is 1
|
|
|
|
or greater, traces if OSL_DEBUG_LEVEL is 2 or greater.
|
|
|
|
|
|
|
|
Assertions (cond is bool, msg is char*):
|
|
|
|
OSL_ASSERT(cond)
|
|
|
|
If cond is false, reports an error.
|
|
|
|
|
|
|
|
OSL_ENSURE(cond, msg)
|
|
|
|
If cond is false, reports an error with message msg.
|
|
|
|
|
|
|
|
OSL_FAIL(msg)
|
|
|
|
Reports an error with message msg unconditionally.
|
|
|
|
|
|
|
|
OSL_PRECOND(cond, msg)
|
|
|
|
OSL_POSTCOND(cond, msg)
|
|
|
|
These two are functionally equivalent to OSL_ENSURE(cond, msg). They are
|
|
|
|
intended to be used for checking pre- and postconditions of functions.
|
|
|
|
|
|
|
|
Traces:
|
|
|
|
OSL_TRACE(fmt, args...)
|
|
|
|
Prints trace message. The arguments have the same meaning as the
|
|
|
|
arguments of printf.
|
|
|
|
|
|
|
|
Other:
|
|
|
|
OSL_VERIFY(expr)
|
|
|
|
Evaluates the expression and if it is false, reports an error. The
|
|
|
|
expression is evaluated once without regard of the value of
|
|
|
|
OSL_DEBUG_LEVEL.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
void extractBool(Any const& rAny, bool& rBool)
|
|
|
|
{
|
|
|
|
OSL_VERIFY(rAny >>= rBool);
|
|
|
|
}
|
|
|
|
|
|
|
|
OSL_DEBUG_ONLY(expr)
|
|
|
|
*/
|
|
|
|
|
2012-12-10 15:15:08 +01:00
|
|
|
#if !defined OSL_DEBUG_LEVEL
|
|
|
|
#define OSL_DEBUG_LEVEL 0
|
|
|
|
#endif
|
|
|
|
|
2011-11-22 09:34:46 +01:00
|
|
|
/* the macro OSL_LOG_PREFIX is intended to be an office internal macro for now
|
|
|
|
|
2011-11-23 15:45:43 +01:00
|
|
|
it is deprecated and superseded by (C++ only) SAL_WHERE
|
2011-11-22 09:34:46 +01:00
|
|
|
*/
|
2011-11-23 15:45:43 +01:00
|
|
|
#define OSL_LOG_PREFIX SAL_DETAIL_WHERE
|
CWS-TOOLING: integrate CWS fwk103
2009-05-26 12:44:25 +0200 mst r272292 : #i100727#
- svtools/inc/svtools/parhtml.hxx, svtools/source/svhtml/parhtml.cxx:
+ fix warning: rename method to prevent overloading
2009-05-19 13:42:31 +0200 mav r272075 : #i101356# add comment
2009-05-19 10:56:24 +0200 mav r272062 : #i101356# register the singleton correctly
2009-05-19 10:25:42 +0200 mav r272060 : #i101356# register the singleton correctly
2009-05-18 12:48:48 +0200 mav r272013 : #i91306# fix the typo
2009-05-14 08:50:06 +0200 mav r271871 : #i101356# reduce the amount of macros
2009-05-13 13:26:08 +0200 mav r271858 : #i101356# reduce the amount of macros
2009-05-13 11:29:16 +0200 mav r271849 : #i101356# reduce the amount of macros
2009-05-12 12:09:42 +0200 mav r271815 : #i101356# allow to generate a small log if a document can not be stored
2009-05-12 12:03:20 +0200 mav r271814 : #i101356# allow to generate a small log if a document can not be stored
2009-05-12 11:58:48 +0200 mav r271813 : #i101356# allow to generate a small log if a document can not be stored
2009-05-12 11:53:05 +0200 mav r271812 : #i101356# allow to generate a small log if a document can not be stored
2009-05-12 11:48:36 +0200 mav r271810 : #i101356# allow to generate a small log if a document can not be stored
2009-05-12 11:43:45 +0200 mav r271809 : #i101356# allow to generate a small log if a document can not be stored
2009-05-12 11:39:38 +0200 mav r271808 : #i101356# allow to generate a small log if a document can not be stored
2009-05-12 11:37:38 +0200 mav r271806 : #i101356# allow to generate a small log if a document can not be stored
2009-05-12 11:33:58 +0200 mav r271805 : #i101356# allow to generate a small log if a document can not be stored
2009-05-12 11:30:01 +0200 mav r271804 : #i101356# allow to generate a small log if a document can not be stored
2009-05-06 17:43:38 +0200 mst r271607 : #i100727#
- svtools/source/svhtml/parhtml.cxx:
+ adapt code to renaming of HTML constants (sb107)
2009-05-05 11:14:18 +0200 mav r271507 : #i101222# avoid warning
2009-05-05 10:27:23 +0200 mav r271505 : #i101426# send the modified() notification only when the document can be modified
2009-05-05 10:25:07 +0200 mav r271504 : #i101426# send the modified() notification only when the document is modified
2009-05-05 08:42:48 +0200 mav r271497 : CWS-TOOLING: rebase CWS fwk103 to trunk@271427 (milestone: DEV300:m47)
2009-04-30 13:32:11 +0200 mav r271412 : #i100518# check the template folders quietly
2009-04-29 20:04:25 +0200 mst r271393 : - sw/source/filter/html/swhtml.cxx:
+ fix wrong initialization order in constructor
2009-04-28 12:28:46 +0200 mav r271319 : #i99142# set the error correctly
2009-04-28 08:44:48 +0200 mav r271305 : #i99050# clear hidden flag if necessary
2009-04-28 08:40:10 +0200 mav r271304 : #i99050# avoid crash
2009-04-22 07:40:11 +0200 mav r271056 : #i101093# lets not affect the performance
2009-04-15 09:30:47 +0200 cd r270820 : #i99771# Fix warnings for gcc 4.4
2009-04-15 09:19:52 +0200 cd r270819 : #i99771# Fix warnings for gcc 4.4
2009-04-15 08:42:34 +0200 cd r270817 : #i99771# Fix warnings for gcc 4.4
2009-04-14 14:31:01 +0200 mav r270768 : #i99493# fix typo
2009-04-01 12:45:43 +0200 mst r270317 : fix #i100727#
- svtools/inc/svtools/svparser.hxx, svtools/source/svrtf/svparser.cxx,
sfx2/inc/sfx2/docfile.hxx, sfx2/source/doc/{objmisc.cxx,docfile.cxx}:
+ move SvKeyValue stuff from sfx2 to svtools
- svtools/inc/svtools/parhtml.hxx, svtools/source/svhtml/parhtml.cxx,
sfx2/inc/sfx2/sfxhtml.hxx, sfx2/source/bastyp/sfxhtml.cxx:
+ move ParseMetaOptions() and GetEncodingByMIME() from SfxHTMLParser (sfx2)
to HTMLParser (svtools)
+ make HTMLParser::ParseMetaOptions() a virtual function
+ HTMLParser::ParseMetaOptions() calls GetExtendedCompatibilityTextEncoding()
+ new template method HTMLParser::AddMetaUserDefined()
- svtools/source/svhtml/makefile.mk:
+ enable exceptions for parhtml.cxx
- dbaccess/source/ui/misc/HtmlReader.cxx,
sc/source/filter/html/htmlpars.cxx:
+ remove encoding related code duplication
- sw/source/filter/html/{swhtml{.hxx,.cxx},htmlfld.cxx}:
+ new SwHTMLParser::AddMetaUserDefined() for import of
DOCINFO field subtypes INFO[1-4]
+ do not use DocumentInfo for import of DOCINFO field subtypes INFO[1-4]
2009-03-31 17:01:35 +0200 mav r270288 : #i91214# fix typo
2009-03-31 15:19:41 +0200 mav r270285 : #i100123# allow to turn OOo locking mechanics off
2009-03-31 15:00:36 +0200 mav r270284 : #i100123# allow to turn OOo locking mechanics off
2009-03-31 12:19:13 +0200 mav r270270 : #i100123# taking the lock file over throws no exception
2009-03-30 13:57:21 +0200 mav r270227 : #i100351# fix the typo
2009-03-30 13:47:26 +0200 mav r270225 : #i99885# let OK be default button
2009-03-29 19:38:55 +0200 mav r270190 : CWS-TOOLING: rebase CWS fwk103 to trunk@270033 (milestone: DEV300:m45)
2009-03-16 16:39:48 +0100 mav r269558 : #i93558# convert the attributes as well
2009-03-13 15:35:55 +0100 mav r269488 : #i93558# improve manifest.xml parsing
2009-03-13 08:47:00 +0100 mav r269454 : #i96205# allow to remove password on SaveAs
2009-03-12 13:36:07 +0100 mav r269398 : #i91306# show special error in case of shared document
2009-03-12 13:33:35 +0100 mav r269397 : #i91306# introduce the new error-message
2009-03-12 11:40:42 +0100 mst r269378 : fix #i90877#
- svtools/source/uno/unoevent.cxx:
+ use proper operator delete[]
2009-02-26 15:23:10 +0100 mav r268526 : #i91214# do not use ATL
2009-02-26 14:19:06 +0100 mav r268516 : #i98909# integrate the patch
2009-02-10 17:29:52 +0100 cd r267568 : #i98649# Make sure that we catch the NoSuchElementException when a module is not installed.
2009-06-16 16:15:54 +00:00
|
|
|
|
2011-11-22 13:24:27 +01:00
|
|
|
#define OSL_TRACE(...) \
|
2011-11-23 15:45:43 +01:00
|
|
|
SAL_DETAIL_INFO_IF_FORMAT(OSL_DEBUG_LEVEL > 0, "legacy.osl", __VA_ARGS__)
|
2011-11-22 13:24:27 +01:00
|
|
|
|
2011-11-22 09:34:46 +01:00
|
|
|
#if OSL_DEBUG_LEVEL > 0
|
2011-11-23 15:45:43 +01:00
|
|
|
#define OSL_ASSERT(c) \
|
2012-04-10 20:11:08 +02:00
|
|
|
SAL_DETAIL_WARN_IF_FORMAT(!(c), "legacy.osl", "OSL_ASSERT: %s", #c)
|
2011-11-23 15:45:43 +01:00
|
|
|
#define OSL_ENSURE(c, m) SAL_DETAIL_WARN_IF_FORMAT(!(c), "legacy.osl", "%s", m)
|
|
|
|
#define OSL_FAIL(m) SAL_DETAIL_WARN_IF_FORMAT(sal_True, "legacy.osl", "%s", m)
|
2011-11-22 09:34:46 +01:00
|
|
|
#else
|
|
|
|
#define OSL_ASSERT(c) ((void) 0)
|
|
|
|
#define OSL_ENSURE(c, m) ((void) 0)
|
|
|
|
#define OSL_FAIL(m) ((void) 0)
|
|
|
|
#endif
|
2000-09-18 14:18:43 +00:00
|
|
|
|
2006-06-20 03:12:33 +00:00
|
|
|
#define OSL_VERIFY(c) do { if (!(c)) OSL_ASSERT(0); } while (0)
|
2001-03-27 12:28:39 +00:00
|
|
|
#define OSL_PRECOND(c, m) OSL_ENSURE(c, m)
|
|
|
|
#define OSL_POSTCOND(c, m) OSL_ENSURE(c, m)
|
2000-09-18 14:18:43 +00:00
|
|
|
|
|
|
|
|
2010-11-24 12:28:07 +01:00
|
|
|
/* the macro OSL_THIS_FUNC is intended to be an office internal macro for now */
|
|
|
|
/* copied from boost/current_function.hpp to make it usable from C
|
|
|
|
* sources as well
|
|
|
|
*
|
|
|
|
* Copyright (c) 2002 Peter Dimov and Multi Media Ltd.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See
|
|
|
|
* accompanying file LICENSE_1_0.txt or copy at
|
|
|
|
* http://www.boost.org/LICENSE_1_0.txt) */
|
2014-10-02 18:46:05 +02:00
|
|
|
#if defined(__GNUC__)
|
2010-11-24 12:28:07 +01:00
|
|
|
#define OSL_THIS_FUNC __PRETTY_FUNCTION__
|
|
|
|
#elif defined(__FUNCSIG__)
|
|
|
|
#define OSL_THIS_FUNC __FUNCSIG__
|
|
|
|
#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901)
|
|
|
|
#define OSL_THIS_FUNC __func__
|
|
|
|
#else
|
|
|
|
#define OSL_THIS_FUNC ""
|
|
|
|
#endif
|
|
|
|
|
2013-10-23 19:17:28 +02:00
|
|
|
#endif // INCLUDED_OSL_DIAGNOSE_H
|
2010-10-27 13:13:11 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|