12#include <zypp/base/LogTools.h>
13#include <zypp/base/NonCopyable.h>
16#include <zypp/PathInfo.h>
21#undef ZYPP_BASE_LOGGER_LOGGROUP
22#define ZYPP_BASE_LOGGER_LOGGROUP "zypp::plugin"
53 DBG <<
"+++++++++++++++ load " << pi << endl;
56 std::list<Pathname> entries;
59 WAR <<
"Plugin dir is not readable: " << pi << endl;
62 for_( it, entries.begin(), entries.end() )
74 WAR <<
"Plugin file is not executable: " << pi << endl;
78 WAR <<
"Plugin path is neither dir nor file: " << pi << endl;
80 DBG <<
"--------------- load " << pi << endl;
85 DBG <<
"+++++++++++++++ send " << frame_r << endl;
94 DBG <<
"--------------- send " << frame_r << endl;
97 const std::list<PluginScript>
scripts()
const
104 MIL <<
"Load plugin: " << pi_r << endl;
119 WAR <<
"Failed to load plugin " << pi_r << endl;
128 script_r.
send( frame_r );
140 WAR <<
"Bad plugin response from " << script_r <<
": " << ret << endl;
158 : _pimpl( new
Impl() )
165 {
return _pimpl->empty(); }
168 {
return _pimpl->size(); }
171 {
_pimpl->load( path_r ); }
174 {
_pimpl->send( frame_r ); }
Base class for Exception.
std::string asUserHistory() const
A single (multiline) string composed of asUserString and historyAsString.
PluginExecutor implementation.
PluginFrame doSend(PluginScript &script_r, const PluginFrame &frame_r)
void doLoad(const PathInfo &pi_r)
Launch a plugin sending PLUGINSTART message.
std::list< PluginScript > _scripts
const std::list< PluginScript > scripts() const
void send(const PluginFrame &frame_r)
void load(const Pathname &path_r)
Parallel execution of stateful PluginScripts.
RW_pointer< Impl > _pimpl
Implementation class.
void load(const Pathname &path_r)
Find and launch plugins sending PLUGINBEGIN.
size_t size() const
Number of open plugins.
PluginExecutor()
Default ctor: Empty plugin list.
void send(const PluginFrame &frame_r)
Send PluginFrame to all open plugins.
~PluginExecutor()
Dtor: Send PLUGINEND and close all plugins.
bool empty() const
Whether no plugins are waiting.
Command frame for communication with PluginScript.
static const std::string & ackCommand()
"ACK" command.
static const std::string & enomethodCommand()
"_ENOMETHOD" command.
const std::string & command() const
Return the frame command.
bool isEnomethodCommand() const
Convenience to identify an _ENOMETHOD command.
void setHeader(const std::string &key_r, const std::string &value_r=std::string())
Set header for key_r removing all other occurrences of key_r.
bool isAckCommand() const
Convenience to identify an ACK command.
Interface to plugin scripts using a Stomp inspired communication protocol.
PluginFrame receive() const
Receive a PluginFrame.
void send(const PluginFrame &frame_r) const
Send a PluginFrame.
int close()
Close any open connection.
void open()
Setup connection and execute script.
const Pathname & script() const
Return the script path if set.
bool isOpen() const
Whether we are connected to a script.
static ZConfig & instance()
Singleton ctor.
Wrapper class for stat/lstat.
const Pathname & path() const
Return current Pathname.
String related utilities and Regular expression matching.
boost::noncopyable NonCopyable
Ensure derived classes cannot be copied.
int readdir(std::list< std::string > &retlist_r, const Pathname &path_r, bool dots_r)
Return content of directory via retlist.
Easy-to use interface to the ZYPP dependency resolver.
std::ostream & operator<<(std::ostream &str, const SerialNumber &obj)
#define for_(IT, BEG, END)
Convenient for-loops using iterator.
#define ZYPP_CAUGHT(EXCPT)
Drops a logline telling the Exception was caught (in order to handle it).