Artifact c859a62a4519839503aa5f69d7aa186c9bb17ed33e23608ee6ed34e1ef47809b:
- File
src/exceptions/OFChangeFileOwnerFailedException.m
— part of check-in
[e1e7ffa903]
at
2011-09-22 23:25:42
on branch trunk
— Exceptions are now autoreleased.
This is safe as an "exception loop" can't happen, since if allocating
an exception fails, it throws an OFAllocFailedException which is
preallocated and can always be thrown.So, the worst case would be that an autorelease of an exception fails,
triggering an OFOutOfMemoryException for which there is no memory,
resulting in an OFAllocFailedException to be thrown. (user: js, size: 2379) [annotate] [blame] [check-ins using]
/* * Copyright (c) 2008, 2009, 2010, 2011 * Jonathan Schleifer <js@webkeks.org> * * All rights reserved. * * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE.QPL included in * the packaging of this file. * * 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" #import "OFChangeFileOwnerFailedException.h" #import "OFString.h" #import "OFNotImplementedException.h" #import "common.h" #ifndef _WIN32 @implementation OFChangeFileOwnerFailedException + exceptionWithClass: (Class)class_ path: (OFString*)path owner: (OFString*)owner group: (OFString*)group { return [[[self alloc] initWithClass: class_ path: path owner: owner group: group] autorelease]; } - initWithClass: (Class)class_ { Class c = isa; [self release]; @throw [OFNotImplementedException exceptionWithClass: c selector: _cmd]; } - initWithClass: (Class)class_ path: (OFString*)path_ owner: (OFString*)owner_ group: (OFString*)group_ { self = [super initWithClass: class_]; @try { path = [path_ copy]; owner = [owner_ copy]; group = [group_ copy]; errNo = GET_ERRNO; } @catch (id e) { [self release]; @throw e; } return self; } - (void)dealloc { [path release]; [owner release]; [group release]; [super dealloc]; } - (OFString*)description { if (description != nil) return description; if (group == nil) description = [[OFString alloc] initWithFormat: @"Failed to change owner for file %@ to %@ in class %@! " ERRFMT, path, owner, inClass, ERRPARAM]; else if (owner == nil) description = [[OFString alloc] initWithFormat: @"Failed to change group for file %@ to %@ in class %@! " ERRFMT, path, group, inClass, ERRPARAM]; else description = [[OFString alloc] initWithFormat: @"Failed to change owner for file %@ to %@:%@ in class %@! " ERRFMT, path, owner, group, inClass, ERRPARAM]; return description; } - (int)errNo { return errNo; } - (OFString*)path { return path; } - (OFString*)owner { return owner; } - (OFString*)group { return group; } @end #endif