ObjFW  Diff

Differences From Artifact [872efbe506]:

To Artifact [476d475e5f]:


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
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







+
+






-
+


+

-
+
-
-
+
-
-
-



+




+



+
+
+
+
+










-
-
-
-
+
+
+
-
-


 * Alternatively, it may be distributed under the terms of the GNU General
 * Public License, either version 2 or 3, which can be found in the file
 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * file.
 */

#include "config.h"

#include <string.h>

#import "OFConditionWaitFailedException.h"
#import "OFString.h"
#import "OFCondition.h"

@implementation OFConditionWaitFailedException
@synthesize condition = _condition;
@synthesize condition = _condition, errNo = _errNo;

+ (instancetype)exceptionWithCondition: (OFCondition *)condition
				 errNo: (int)errNo
{
	return [[[self alloc] initWithCondition: condition] autorelease];
	return [[[self alloc] initWithCondition: condition
}

					  errNo: errNo] autorelease];
- (instancetype)init
{
	return [self initWithCondition: nil];
}

- (instancetype)initWithCondition: (OFCondition *)condition
			    errNo: (int)errNo
{
	self = [super init];

	_condition = [condition retain];
	_errNo = errNo;

	return self;
}

- (instancetype)init
{
	OF_INVALID_INIT_METHOD
}

- (void)dealloc
{
	[_condition release];

	[super dealloc];
}

- (OFString *)description
{
	if (_condition != nil)
		return [OFString stringWithFormat:
		    @"Waiting for a condition of type %@ failed!",
		    _condition.class];
	return [OFString stringWithFormat:
	    @"Waiting for a condition of type %@ failed: %s",
	    _condition.class, strerror(_errNo)];
	else
		return @"Waiting for a condition failed!";
}
@end