mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-02 09:31:32 +08:00
202 lines
7.8 KiB
Objective-C
202 lines
7.8 KiB
Objective-C
//
|
|
// RKLog.h
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 5/3/11.
|
|
// Copyright (c) 2009-2012 RestKit. All rights reserved.
|
|
//
|
|
// Licensed 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
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
/**
|
|
RestKit Logging is based on the LibComponentLogging framework
|
|
|
|
@see lcl_config_components.h
|
|
@see lcl_config_logger.h
|
|
*/
|
|
#import "lcl.h"
|
|
|
|
/**
|
|
RKLogComponent defines the active component within any given portion of RestKit
|
|
|
|
By default, messages will log to the base 'RestKit' log component. All other components
|
|
used by RestKit are nested under this parent, so this effectively sets the default log
|
|
level for the entire library.
|
|
|
|
The component can be undef'd and redefined to change the active logging component.
|
|
*/
|
|
#define RKLogComponent lcl_cRestKit
|
|
|
|
/**
|
|
The logging macros. These macros will log to the currently active logging component
|
|
at the log level identified in the name of the macro.
|
|
|
|
For example, in the RKObjectMappingOperation class we would redefine the RKLogComponent:
|
|
|
|
#undef RKLogComponent
|
|
#define RKLogComponent lcl_cRestKitObjectMapping
|
|
|
|
The lcl_c prefix is the LibComponentLogging data structure identifying the logging component
|
|
we want to target within this portion of the codebase. See lcl_config_component.h for reference.
|
|
|
|
Having defined the logging component, invoking the logger via:
|
|
|
|
RKLogInfo(@"This is my log message!");
|
|
|
|
Would result in a log message similar to:
|
|
|
|
I RestKit.ObjectMapping:RKLog.h:42 This is my log message!
|
|
|
|
The message will only be logged if the log level for the active component is equal to or higher
|
|
than the level the message was logged at (in this case, Info).
|
|
*/
|
|
#define RKLogCritical(...) \
|
|
lcl_log(RKLogComponent, lcl_vCritical, @"" __VA_ARGS__)
|
|
|
|
#define RKLogError(...) \
|
|
lcl_log(RKLogComponent, lcl_vError, @"" __VA_ARGS__)
|
|
|
|
#define RKLogWarning(...) \
|
|
lcl_log(RKLogComponent, lcl_vWarning, @"" __VA_ARGS__)
|
|
|
|
#define RKLogInfo(...) \
|
|
lcl_log(RKLogComponent, lcl_vInfo, @"" __VA_ARGS__)
|
|
|
|
#define RKLogDebug(...) \
|
|
lcl_log(RKLogComponent, lcl_vDebug, @"" __VA_ARGS__)
|
|
|
|
#define RKLogTrace(...) \
|
|
lcl_log(RKLogComponent, lcl_vTrace, @"" __VA_ARGS__)
|
|
|
|
/**
|
|
Log Level Aliases
|
|
|
|
These aliases simply map the log levels defined within LibComponentLogger to something more friendly
|
|
*/
|
|
#define RKLogLevelOff lcl_vOff
|
|
#define RKLogLevelCritical lcl_vCritical
|
|
#define RKLogLevelError lcl_vError
|
|
#define RKLogLevelWarning lcl_vWarning
|
|
#define RKLogLevelInfo lcl_vInfo
|
|
#define RKLogLevelDebug lcl_vDebug
|
|
#define RKLogLevelTrace lcl_vTrace
|
|
|
|
/**
|
|
Alias the LibComponentLogger logging configuration method. Also ensures logging
|
|
is initialized for the framework.
|
|
|
|
Expects the name of the component and a log level.
|
|
|
|
Examples:
|
|
|
|
// Log debugging messages from the Network component
|
|
RKLogConfigureByName("RestKit/Network", RKLogLevelDebug);
|
|
|
|
// Log only critical messages from the Object Mapping component
|
|
RKLogConfigureByName("RestKit/ObjectMapping", RKLogLevelCritical);
|
|
*/
|
|
#define RKLogConfigureByName(name, level) \
|
|
RKLogInitialize(); \
|
|
lcl_configure_by_name(name, level);
|
|
|
|
/**
|
|
Alias for configuring the LibComponentLogger logging component for the App. This
|
|
enables the end-user of RestKit to leverage RKLog() to log messages inside of
|
|
their apps.
|
|
*/
|
|
#define RKLogSetAppLoggingLevel(level) \
|
|
RKLogInitialize(); \
|
|
lcl_configure_by_name("App", level);
|
|
|
|
/**
|
|
Temporarily changes the logging level for the specified component and executes the block. Any logging
|
|
statements executed within the body of the block against the specified component will log at the new
|
|
logging level. After the block has executed, the logging level is restored to its previous state.
|
|
*/
|
|
#define RKLogToComponentWithLevelWhileExecutingBlock(_component, _level, _block) \
|
|
do { \
|
|
int _currentLevel = _lcl_component_level[_component]; \
|
|
lcl_configure_by_component(_component, _level); \
|
|
@try { \
|
|
_block(); \
|
|
} \
|
|
@catch (NSException *exception) { \
|
|
@throw; \
|
|
} \
|
|
@finally { \
|
|
lcl_configure_by_component(_component, _currentLevel); \
|
|
} \
|
|
} while(false);
|
|
|
|
|
|
/**
|
|
Temporarily changes the logging level for the configured RKLogComponent and executes the block. Any logging
|
|
statements executed within the body of the block for the current logging component will log at the new
|
|
logging level. After the block has finished execution, the logging level is restored to its previous state.
|
|
*/
|
|
#define RKLogWithLevelWhileExecutingBlock(_level, _block) \
|
|
RKLogToComponentWithLevelWhileExecutingBlock(RKLogComponent, _level, _block)
|
|
|
|
|
|
/**
|
|
Temporarily turns off logging for the execution of the block.
|
|
After the block has finished execution, the logging level is restored to its previous state.
|
|
*/
|
|
#define RKLogSilenceWhileExecutingBlock(_block) \
|
|
RKLogToComponentWithLevelWhileExecutingBlock(RKLogComponent, RKLogLevelOff, _block)
|
|
|
|
|
|
/**
|
|
Set the Default Log Level
|
|
|
|
Based on the presence of the DEBUG flag, we default the logging for the RestKit parent component
|
|
to Info or Warning.
|
|
|
|
You can override this setting by defining RKLogLevelDefault as a pre-processor macro.
|
|
*/
|
|
#ifndef RKLogLevelDefault
|
|
#ifdef DEBUG
|
|
#define RKLogLevelDefault RKLogLevelInfo
|
|
#else
|
|
#define RKLogLevelDefault RKLogLevelWarning
|
|
#endif
|
|
#endif
|
|
|
|
/**
|
|
Initialize the logging environment
|
|
*/
|
|
void RKLogInitialize(void);
|
|
|
|
|
|
/**
|
|
Configure RestKit logging from environment variables.
|
|
(Use Option + Command + R to set Environment Variables prior to run.)
|
|
|
|
For example to configure the equivalent of setting the following in code:
|
|
RKLogConfigureByName("RestKit/Network", RKLogLevelTrace);
|
|
|
|
Define an environment variable named RKLogLevel.RestKit.Network and set its value to "Trace"
|
|
|
|
See lcl_config_components.h for configurable RestKit logging components.
|
|
|
|
Valid values are the following:
|
|
Default or 0
|
|
Critical or 1
|
|
Error or 2
|
|
Warning or 3
|
|
Info or 4
|
|
Debug or 5
|
|
Trace or 6
|
|
*/
|
|
void RKLogConfigureFromEnvironment(void);
|