2017-04-05 20:56:22 +00:00
|
|
|
//==============================================================================
|
|
|
|
// This file is part of Master Password.
|
|
|
|
// Copyright (c) 2011-2017, Maarten Billemont.
|
2011-11-30 21:42:40 +00:00
|
|
|
//
|
2017-04-05 20:56:22 +00:00
|
|
|
// Master Password is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2011-11-30 21:42:40 +00:00
|
|
|
//
|
2017-04-05 20:56:22 +00:00
|
|
|
// Master Password is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You can find a copy of the GNU General Public License in the
|
|
|
|
// LICENSE file. Alternatively, see <http://www.gnu.org/licenses/>.
|
|
|
|
//==============================================================================
|
2011-11-30 21:42:40 +00:00
|
|
|
|
2019-11-08 14:11:37 +00:00
|
|
|
#define MP_LIBS_BEGIN \
|
|
|
|
_Pragma("clang diagnostic push") \
|
|
|
|
_Pragma("clang diagnostic ignored \"-Weverything\"")
|
|
|
|
#define MP_LIBS_END \
|
|
|
|
_Pragma("clang diagnostic pop")
|
|
|
|
|
|
|
|
MP_LIBS_BEGIN
|
|
|
|
#include <Availability.h>
|
|
|
|
#include <os/log.h>
|
|
|
|
#include <libgen.h>
|
|
|
|
MP_LIBS_END
|
|
|
|
|
|
|
|
#define mpw_log_os(level, file, line, function, format, ...) \
|
|
|
|
do { \
|
|
|
|
if (mpw_verbosity < level) { \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
switch (level) { \
|
|
|
|
case LogLevelTrace: \
|
|
|
|
os_log_debug( OS_LOG_DEFAULT, "%30s:%-3ld TRC | " format, basename( (char *)file ), line, ##__VA_ARGS__ ); \
|
|
|
|
break; \
|
|
|
|
case LogLevelDebug: \
|
|
|
|
os_log_debug( OS_LOG_DEFAULT, "%30s:%-3ld DBG | " format, basename( (char *)file ), line, ##__VA_ARGS__ ); \
|
|
|
|
break; \
|
|
|
|
case LogLevelInfo: \
|
|
|
|
os_log_info( OS_LOG_DEFAULT, "%30s:%-3ld INF | " format, basename( (char *)file ), line, ##__VA_ARGS__ ); \
|
|
|
|
break; \
|
|
|
|
case LogLevelWarning: \
|
|
|
|
os_log( OS_LOG_DEFAULT, "%30s:%-3ld WRN | " format, basename( (char *)file ), line, ##__VA_ARGS__ ); \
|
|
|
|
break; \
|
|
|
|
case LogLevelError: \
|
|
|
|
os_log_error( OS_LOG_DEFAULT, "%30s:%-3ld ERR | " format, basename( (char *)file ), line, ##__VA_ARGS__ ); \
|
|
|
|
break; \
|
|
|
|
case LogLevelFatal: \
|
|
|
|
os_log_fault( OS_LOG_DEFAULT, "%30s:%-3ld FTL | " format, basename( (char *)file ), line, ##__VA_ARGS__ ); \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
mpw_log_sink( level, file, line, function, format, ##__VA_ARGS__ ); \
|
|
|
|
} while (0)
|
|
|
|
|
2011-11-30 21:42:40 +00:00
|
|
|
#ifdef __OBJC__
|
2012-02-05 23:40:20 +00:00
|
|
|
|
2019-11-08 14:11:37 +00:00
|
|
|
#import "Pearl-Prefix.pch"
|
|
|
|
|
2020-01-27 18:27:10 +00:00
|
|
|
#define MPW_LOG(level, file, line, function, format, ...) mpw_log_os(level, file, line, function, strf(format, ##__VA_ARGS__))
|
|
|
|
|
2017-04-05 16:53:56 +00:00
|
|
|
#if TARGET_OS_IOS
|
2020-01-27 18:27:10 +00:00
|
|
|
#import "MPTypes.h"
|
|
|
|
#import "MPiOSConfig.h"
|
2017-04-05 16:53:56 +00:00
|
|
|
#elif TARGET_OS_OSX
|
2020-01-27 18:27:10 +00:00
|
|
|
#import "MPTypes.h"
|
|
|
|
#import "MPMacConfig.h"
|
2017-03-30 16:15:28 +00:00
|
|
|
#endif
|
|
|
|
|
2020-01-27 18:27:10 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define MPW_LOG mpw_log_os
|
|
|
|
|
2012-03-13 23:55:49 +00:00
|
|
|
#endif
|
2020-01-27 18:27:10 +00:00
|
|
|
|
|
|
|
#include "mpw-util.h"
|