Multi diag tools
Public Member Functions | Static Public Member Functions | List of all members
Mdt::DeployUtils::LibraryName Class Reference

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.
 
LibraryNameoperator= (const LibraryName &)=default
 Copy assign to this library name from a other.
 
 LibraryName (LibraryName &&)=default
 Move construct a library name from a other.
 
LibraryNameoperator= (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...
 

Detailed Description

Representation of a shared library name.

Definition at line 36 of file LibraryName.h.

Constructor & Destructor Documentation

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.

Member Function Documentation

QString Mdt::DeployUtils::LibraryName::extension ( ) const
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.

QString Mdt::DeployUtils::LibraryName::fullName ( ) const
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:

  • Qt5Core.dll : not debug, this method returns false
  • Qt5Cored.dll: debug, this method returns true

Definition at line 57 of file LibraryName.cpp.

QString Mdt::DeployUtils::LibraryName::name ( ) const
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.

OperatingSystem Mdt::DeployUtils::LibraryName::operatingSystem ( const QString &  fullName)
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.

QString Mdt::DeployUtils::LibraryName::prefix ( ) const
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.


The documentation for this class was generated from the following files: