-
Notifications
You must be signed in to change notification settings - Fork 28
/
CDLCDylinker.m
44 lines (32 loc) · 1012 Bytes
/
CDLCDylinker.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
// -*- mode: ObjC -*-
// This file is part of class-dump, a utility for examining the Objective-C segment of Mach-O files.
// Copyright (C) 1997-2019 Steve Nygard.
#import "CDLCDylinker.h"
@implementation CDLCDylinker
{
struct dylinker_command _dylinkerCommand;
NSString *_name;
}
- (id)initWithDataCursor:(CDMachOFileDataCursor *)cursor;
{
if ((self = [super initWithDataCursor:cursor])) {
_dylinkerCommand.cmd = [cursor readInt32];
_dylinkerCommand.cmdsize = [cursor readInt32];
_dylinkerCommand.name.offset = [cursor readInt32];
NSUInteger length = _dylinkerCommand.cmdsize - sizeof(_dylinkerCommand);
//NSLog(@"expected length: %u", length);
_name = [cursor readStringOfLength:length encoding:NSASCIIStringEncoding];
//NSLog(@"name: %@", name);
}
return self;
}
#pragma mark -
- (uint32_t)cmd;
{
return _dylinkerCommand.cmd;
}
- (uint32_t)cmdsize;
{
return _dylinkerCommand.cmdsize;
}
@end