-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMddLogCatHelper.m
200 lines (192 loc) · 5.26 KB
/
MddLogCatHelper.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
//
// MddLogCatHelper.m
// ChildrenLocation
//
// Created by szalarm on 16/2/19.
// Copyright © 2016年 szalarm. All rights reserved.
//
#import "MddLogCatHelper.h"
//默认标志
#define kCommonTagI @"info"
#define kCommonTagE @"err"
#define kCommonTagC @"crash"
//默认地址
#define kBaseDir @"res/mddlog/"
//引用文件
#import "FileHelper.h"
#import "DbDateHelper.h"
@interface MddLogCatHelper()
{
FileHelper * gFileHelper;
DbDateHelper *gDbDateHelper;
}
//文件路径
@property (nonatomic,copy) NSString * mFilePath;
@end
@implementation MddLogCatHelper
@synthesize mFilePath;
#pragma mark ctor
-(id) init
{
if(self=[super init])
{
if (gFileHelper==nil) {
gFileHelper=[FileHelper new];
}
//时间
if (gDbDateHelper==nil) {
gDbDateHelper=[DbDateHelper new];
}
//默认路径
self.mFilePath=[self todayPath];
//不存在就创建(这个只能建目录,不要文件)
//self.mFilePath=[self dataPath:self.mFilePath];
}
return self;
}
//写日志到文档文件xxx.txt
-(id) initWithLogDocPath:(NSString *) pPathFile
{
if (self=[super init]) {
if (gFileHelper==nil) {
gFileHelper=[FileHelper new];
}
//时间
if (gDbDateHelper==nil) {
gDbDateHelper=[DbDateHelper new];
}
self.mFilePath=[gFileHelper dirDoc:pPathFile];
//不存在就创建
//self.mFilePath=[self dataPath:self.mFilePath];
}
return self;
}
//写日志到文档文件doc/xxx.txt
-(id) initWithLogFullPath:(NSString *) pPathFile
{
if (self=[super init]) {
if (gFileHelper==nil) {
gFileHelper=[FileHelper new];
}
//时间
if (gDbDateHelper==nil) {
gDbDateHelper=[DbDateHelper new];
}
self.mFilePath=pPathFile;
//不存在就创建
self.mFilePath=[self dataPath:self.mFilePath];
}
return self;
}
#pragma mark func
//写入文件
-(void) WritelogCatWithCommonTagMsg:(NSString *)pMsg
{
[self WritelogCatWithTag:[self commonTag] mMsg:pMsg];
}
//写入文件
-(void) WritelogCatWithTag:(NSString *) pTag mMsg:(NSString *)pMsg
{
NSString * tAppendStr=[NSString stringWithFormat:@"tag:%@,date:%@\r\n msg:%@",pTag,[gDbDateHelper GetDateString],pMsg];
NSString * OldStr=[self ReadlogCatFromPath:self.mFilePath];
//第一次
if (OldStr==nil) {
OldStr=@"";
}
OldStr=[OldStr stringByAppendingString:tAppendStr];
[gFileHelper writeFileFullPath:self.mFilePath contentString:OldStr];
}
//错误
-(void) WritelogCatWithTagError:(NSString *) pTag mWithError:(NSError *)err
{
[self WritelogCatWithTag:pTag mMsg:[err description]];
}
//错误
-(void) WritelogCatWithTagError:(NSString *) pTag mWithNSException:(NSException *)err
{
[self WritelogCatWithTag:pTag mMsg:[err description]];
}
//读取日志
-(NSString *) ReadlogCatFromPath:(NSString *)pPath
{
return [gFileHelper readFileFullPath:pPath];
}
-(NSString *) ReadlogCatFromDocPath:(NSString *)pPath
{
return [gFileHelper readFileFullPath:[gFileHelper dirDoc:pPath]];
}
-(void) ClearDefLogCatFromPath
{
[self ClearlogCatFromFullPath:self.mFilePath];
}
-(void) ClearlogCatFromFullPath:(NSString *)pPath
{
[gFileHelper deleteFileWithFullPath:pPath];
//重新放一个进去
self.mFilePath=[self todayPath];
}
-(void) ClearlogCatFromDicPath:(NSString *)pDocPath
{
[self ClearlogCatFromFullPath:[gFileHelper dirDoc:pDocPath]];
}
#pragma mark common
//标志
-(NSString *) commonTag
{
return kCommonTagI;
}
-(NSString *)dataPath:(NSString *)pFilePath
{
NSError * error=nil;
BOOL bo = [[NSFileManager defaultManager] createDirectoryAtPath:pFilePath withIntermediateDirectories:YES attributes:nil error:&error];
// NSAssert(bo,@"创建目录失败");
if (bo) {
NSLog(@"创建目录成功");
}else
{
NSLog(@"创建目录失败%@",[error description]);
}
return pFilePath;
}
-(NSString *)todayPath
{
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd"];
NSString *strDate = [dateFormatter stringFromDate:[NSDate date]];
NSString * todayDir=[NSString stringWithFormat:@"%@.log",strDate];
NSString * tDocDir=[gFileHelper dirDoc:[self rootDir]];
//新建文件夹
tDocDir=[self dataPath:tDocDir];
//最终路径
NSString * rToDayDir=[NSString stringWithFormat:@"%@%@",[self rootDir],todayDir];
return [gFileHelper dirDoc:rToDayDir];
}
-(NSString *)todayRelationPath
{
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd"];
NSString *strDate = [dateFormatter stringFromDate:[NSDate date]];
NSString * todayDir=[NSString stringWithFormat:@"%@.log",strDate];
NSString * tDocDir=[gFileHelper dirDoc:[self rootDir]];
//新建文件夹
tDocDir=[self dataPath:tDocDir];
//最终路径
NSString * rToDayDir=[NSString stringWithFormat:@"%@%@",[self rootDir],todayDir];
return rToDayDir;
}
//根目录文件夹
-(NSString *)rootDir
{
return kBaseDir;
}
//默认路径
-(NSString *)defLogPath
{
return self.mFilePath;
}
//默认日志
-(NSString *)defReadlogCatFromPath
{
return [self ReadlogCatFromPath:[self defLogPath]];
}
@end