/*
* Copyright (c) 2008-2024 Jonathan Schleifer <js@nil.im>
*
* All rights reserved.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License version 3.0 only,
* as published by the Free Software Foundation.
*
* This program 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
* version 3.0 for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* version 3.0 along with this program. If not, see
* <https://www.gnu.org/licenses/>.
*/
#import "OFObject.h"
@class OFString;
#ifndef OF_WINDOWS
# include <dlfcn.h>
typedef void *OFPluginHandle;
#else
# include <windows.h>
typedef HMODULE OFPluginHandle;
#endif
OF_ASSUME_NONNULL_BEGIN
/**
* @class OFPlugin OFPlugin.h ObjFW/OFPlugin.h
*
* @brief A class representing a loaded plugin (shared library).
*
*/
OF_SUBCLASSING_RESTRICTED
@interface OFPlugin: OFObject
{
OFPluginHandle _handle;
}
/**
* @brief Returns the plugin path for a plugin with the specified name.
*
* E.g. on ELF systems, it appends `.so`, while on macOS and iOS, it checks if
* there is a `.bundle` and if so uses the plugin contained in it, but
* otherwise falls back to appending `.dylib`.
*
* This can also be prefixed by a directory.
*
* @param name The name to return the plugin path for
* @return The plugin path
*/
+ (OFString *)pathForName: (OFString *)name;
/**
* @brief Creates a new OFPlugin by loading the plugin with the specified path.
*
* @param path The path to the plugin file. The suffix is appended
* automatically.
* @return An new, autoreleased OFPlugin
* @throw OFLoadPluginFailedException The plugin could not be loaded
*/
+ (instancetype)pluginWithPath: (OFString *)path;
/**
* @brief Initializes an already allocated OFPlugin by loading the plugin with
* the specified path.
*
* @param path The path to the plugin file. The suffix is appended
* automatically.
* @return An initialized OFPlugin
* @throw OFLoadPluginFailedException The plugin could not be loaded
*/
- (instancetype)initWithPath: (OFString *)path;
/**
* @brief Returns the address for the specified symbol, or `nil` if not found.
*
* @param symbol The symbol to return the address for
* @return The address for the specified symbol, or `nil` if not found
*/
- (nullable void *)addressForSymbol: (OFString *)symbol;
@end
OF_ASSUME_NONNULL_END