forked from progrmr/SDK_Utilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GMObject.m
67 lines (56 loc) · 1.67 KB
/
GMObject.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
//
// GMObject.m
// NextSprinter
//
// Created by Gary Morris on 8/23/11.
// Copyright 2011 Gary A. Morris. All rights reserved.
//
// This file is part of SDK_Utilities.repo
//
// This is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This file 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this file. If not, see <http://www.gnu.org/licenses/>.
//
#import "GMObject.h"
#import "Utilities.h"
@implementation GMObject
#ifdef DEBUG
static unsigned nAllocated = 0;
+(id)allocWithZone:(NSZone*)zone
{
id result = [super allocWithZone:zone];
DLog(@"+++ %08x #%d %@", (uint32_t)result, ++nAllocated, self);
((GMObject*)result)->myRetainCount = 1;
return result;
}
-(void)dealloc {
DLog(@"--- %08x #%d %@", (uint32_t)self, nAllocated--, self);
[super dealloc];
}
-(id)autorelease
{
// doesn't change retain count, just queues a future retain operation
DLog(@"%08x %u %@", (uint32_t)self, myRetainCount, self);
return [super autorelease];
}
-(oneway void)release
{
DLog(@" %08x %u %@", (uint32_t)self, --myRetainCount, self);
[super release];
}
-(id)retain
{
DLog(@" %08x %u %@", (uint32_t)self, ++myRetainCount, self);
return [super retain];
}
#endif
@end