From: Yordan Karadzhov <ykaradzhov@vmware.com>
To: rostedt@goodmis.org
Cc: linux-trace-devel@vger.kernel.org, y.karadz@gmail.com,
Yordan Karadzhov <ykaradzhov@vmware.com>
Subject: [PATCH 3/5] kernel-shark: Add logic for the plugins search path
Date: Tue, 23 Apr 2019 16:27:39 +0300 [thread overview]
Message-ID: <20190423132741.17864-4-ykaradzhov@vmware.com> (raw)
In-Reply-To: <20190423132741.17864-1-ykaradzhov@vmware.com>
If the application has not been started from its installation location
and the the directory
app_file_path + "../../kernel-shark/lib"
exists, all build-in plugins will be loaded from this directory. In any
other case all build-in plugins will be loaded from
_INSTALL_PREFIX/lib/kshark/plugins/
Suggested-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Signed-off-by: Yordan Karadzhov <ykaradzhov@vmware.com>
---
kernel-shark/src/KsUtils.cpp | 40 ++++++++++++++++++-------
kernel-shark/src/KsUtils.hpp | 2 ++
kernel-shark/src/plugins/CMakeLists.txt | 2 +-
3 files changed, 32 insertions(+), 12 deletions(-)
diff --git a/kernel-shark/src/KsUtils.cpp b/kernel-shark/src/KsUtils.cpp
index 8c42206..f62e53a 100644
--- a/kernel-shark/src/KsUtils.cpp
+++ b/kernel-shark/src/KsUtils.cpp
@@ -544,13 +544,12 @@ void KsPluginManager::_parsePluginList()
*/
void KsPluginManager::registerFromList(kshark_context *kshark_ctx)
{
- auto lamRegBuiltIn = [&kshark_ctx](const QString &plugin)
+ auto lamRegBuiltIn = [&kshark_ctx, this](const QString &plugin)
{
char *lib;
int n;
- n = asprintf(&lib, "%s/lib/plugin-%s.so",
- KS_DIR, plugin.toStdString().c_str());
+ lib = _pluginLibFromName(plugin, n);
if (n <= 0)
return;
@@ -579,13 +578,12 @@ void KsPluginManager::registerFromList(kshark_context *kshark_ctx)
*/
void KsPluginManager::unregisterFromList(kshark_context *kshark_ctx)
{
- auto lamUregBuiltIn = [&kshark_ctx](const QString &plugin)
+ auto lamUregBuiltIn = [&kshark_ctx, this](const QString &plugin)
{
char *lib;
int n;
- n = asprintf(&lib, "%s/lib/plugin-%s.so",
- KS_DIR, plugin.toStdString().c_str());
+ lib = _pluginLibFromName(plugin, n);
if (n <= 0)
return;
@@ -608,6 +606,28 @@ void KsPluginManager::unregisterFromList(kshark_context *kshark_ctx)
lamUregUser);
}
+char *KsPluginManager::_pluginLibFromName(const QString &plugin, int &n)
+{
+ QString execPath = QCoreApplication::applicationFilePath();
+ QString path = QFileInfo(execPath).path();
+ std::string pluginStr = plugin.toStdString();
+ char *lib;
+ QDir dir;
+
+ dir.setCurrent(path);
+ if (!KsUtils::isInstalled() && dir.cd("../../kernel-shark/lib")) {
+ std::string pathStr = dir.path().toStdString();
+
+ n = asprintf(&lib, "%s/plugin-%s.so",
+ pathStr.c_str(), pluginStr.c_str());
+ } else {
+ n = asprintf(&lib, "%s/lib/kshark/plugins/plugin-%s.so",
+ _INSTALL_PREFIX, pluginStr.c_str());
+ }
+
+ return lib;
+}
+
/**
* @brief Register a Plugin.
*
@@ -629,8 +649,7 @@ void KsPluginManager::registerPlugin(const QString &plugin)
* The argument is the name of the plugin. From the
* name get the library .so file.
*/
- n = asprintf(&lib, "%s/lib/plugin-%s.so",
- KS_DIR, plugin.toStdString().c_str());
+ lib = _pluginLibFromName(plugin, n);
if (n > 0) {
kshark_register_plugin(kshark_ctx, lib);
_registeredKsPlugins[i] = true;
@@ -691,8 +710,7 @@ void KsPluginManager::unregisterPlugin(const QString &plugin)
* The argument is the name of the plugin. From the
* name get the library .so file.
*/
- n = asprintf(&lib, "%s/lib/plugin-%s.so", KS_DIR,
- plugin.toStdString().c_str());
+ lib = _pluginLibFromName(plugin, n);
if (n > 0) {
kshark_unregister_plugin(kshark_ctx, lib);
_registeredKsPlugins[i] = false;
@@ -700,7 +718,7 @@ void KsPluginManager::unregisterPlugin(const QString &plugin)
}
return;
- } else if (plugin.contains("/lib/plugin-" +
+ } else if (plugin.contains("/lib/plugin-" +
_ksPluginList[i], Qt::CaseInsensitive)) {
/*
* The argument is the name of the library .so file.
diff --git a/kernel-shark/src/KsUtils.hpp b/kernel-shark/src/KsUtils.hpp
index 7b80b21..1c87271 100644
--- a/kernel-shark/src/KsUtils.hpp
+++ b/kernel-shark/src/KsUtils.hpp
@@ -241,6 +241,8 @@ signals:
private:
void _parsePluginList();
+ char *_pluginLibFromName(const QString &plugin, int &n);
+
template <class T>
void _forEachInList(const QStringList &pl,
const QVector<bool> ®,
diff --git a/kernel-shark/src/plugins/CMakeLists.txt b/kernel-shark/src/plugins/CMakeLists.txt
index 6098275..64cf98d 100644
--- a/kernel-shark/src/plugins/CMakeLists.txt
+++ b/kernel-shark/src/plugins/CMakeLists.txt
@@ -29,6 +29,6 @@ BUILD_PLUGIN(NAME missed_events
list(APPEND PLUGIN_LIST "missed_events default") # This plugin will be loaded by default
install(TARGETS sched_events missed_events
- LIBRARY DESTINATION ${_INSTALL_PREFIX}/lib/kshark/)
+ LIBRARY DESTINATION ${_INSTALL_PREFIX}/lib/kshark/plugins/)
set(PLUGINS ${PLUGIN_LIST} PARENT_SCOPE)
--
2.20.1
next prev parent reply other threads:[~2019-04-23 13:28 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-23 13:27 [PATCH 0/5] Modifications needed for KS 1.0 Yordan Karadzhov
2019-04-23 13:27 ` [PATCH 1/5] kernel-shark: Add INSTALL PREFIX to the Cmake-generated header file Yordan Karadzhov
2019-04-23 13:27 ` [PATCH 2/5] kernel-shark: Add logic for the initial path of Open-File dialogs Yordan Karadzhov
2019-04-23 13:27 ` Yordan Karadzhov [this message]
2019-04-23 13:27 ` [PATCH 4/5] kernel-shark: Remove the definition of KS_DIR Yordan Karadzhov
2019-04-23 13:27 ` [PATCH 5/5] kernel-shark: Remember the paths used by the Open-File dialogs Yordan Karadzhov
2019-05-02 8:42 ` [PATCH 0/5] Modifications needed for KS 1.0 Slavomir Kaslev
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190423132741.17864-4-ykaradzhov@vmware.com \
--to=ykaradzhov@vmware.com \
--cc=linux-trace-devel@vger.kernel.org \
--cc=rostedt@goodmis.org \
--cc=y.karadz@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).