Multi diag tools
|
Representation of a shared library name. More...
#include <LibraryName.h>
Public Member Functions | |
LibraryName ()=default | |
Construct a null library name. | |
LibraryName (const QString &fullName) | |
Construct a library name from a name. More... | |
LibraryName (const LibraryName &)=default | |
Copy construct a library name from a other. | |
LibraryName & | operator= (const LibraryName &)=default |
Copy assign to this library name from a other. | |
LibraryName (LibraryName &&)=default | |
Move construct a library name from a other. | |
LibraryName & | operator= (LibraryName &&)=default |
Move assign to this library name from a other. | |
bool | isNull () const |
Check is this library name is null. | |
QString | prefix () const |
Get library name prefix. More... | |
QString | name () const |
Get library name. More... | |
bool | hasNameDebugSuffix () const |
Check a debug suffix is present in the name. More... | |
QString | extension () const |
Get library name extension. More... | |
LibraryVersion | version () const |
Get library version. | |
QString | fullName () const |
Get library full name. More... | |
QString | toFullNameLinux () const |
Get the full library name for Linux platform. More... | |
Static Public Member Functions | |
static OperatingSystem | operatingSystem (const QString &fullName) |
Deduce the operating system of a library from its file name. More... | |
Representation of a shared library name.
Definition at line 36 of file LibraryName.h.
Mdt::DeployUtils::LibraryName::LibraryName | ( | const QString & | fullName | ) |
Construct a library name from a name.
fullName can be passed without any prefix, extension, version. Example: Qt5Core A more platform specific name can also be passed, for example libQt5Core.so A versionned version can also be passed, for example libQt5Core.so.5 , libQt5Core.so.5.5 , libQt5Core.so.5.5.1
Definition at line 32 of file LibraryName.cpp.
|
inline |
Get library name extension.
Returns the extension if it was set. For versionned so names, only 'so' is returned.
Definition at line 115 of file LibraryName.h.
|
inline |
Get library full name.
Returns the library name as it was set.
Definition at line 131 of file LibraryName.h.
bool Mdt::DeployUtils::LibraryName::hasNameDebugSuffix | ( | ) | const |
Check a debug suffix is present in the name.
This has only sense for dll (Windows), when the convention of suffixing 'd' or 'D' to the name is used.
For example:
Definition at line 57 of file LibraryName.cpp.
|
inline |
Get library name.
Returns the library name without any prefix or extension or version. For example, if this library name was constructed with libQt5Core.so.5.5.1 this method returns Qt5Core
Definition at line 93 of file LibraryName.h.
|
static |
Deduce the operating system of a library from its file name.
Will use the file extension of fullName to deduce the library operating system.
Definition at line 78 of file LibraryName.cpp.
|
inline |
Get library name prefix.
Returns the library name prefix if it was set.
Definition at line 82 of file LibraryName.h.
QString Mdt::DeployUtils::LibraryName::toFullNameLinux | ( | ) | const |
Get the full library name for Linux platform.
Returns the lib prefix, name, .so extension, and the version if available
Definition at line 67 of file LibraryName.cpp.