21#undef ZYPP_BASE_LOGGER_LOGGROUP
22#define ZYPP_BASE_LOGGER_LOGGROUP "zypp::plugin"
57 DBG <<
"+++++++++++++++ load " << pi << endl;
60 std::list<Pathname> entries;
63 WAR <<
"Plugin dir is not readable: " << pi << endl;
66 for_( it, entries.begin(), entries.end() )
78 WAR <<
"Plugin file is not executable: " << pi << endl;
82 WAR <<
"Plugin path is neither dir nor file: " << pi << endl;
84 DBG <<
"--------------- load " << pi << endl;
89 DBG <<
"+++++++++++++++ send " << frame_r << endl;
98 DBG <<
"--------------- send " << frame_r << endl;
108 MIL <<
"Load plugin: " << pi_r << endl;
123 WAR <<
"Failed to load plugin " << pi_r << endl;
132 script_r.
send( frame_r );
144 WAR <<
"Bad plugin response from " << script_r <<
": " << ret << endl;
169 {
return _pimpl->empty(); }
172 {
return _pimpl->size(); }
175 {
_pimpl->load( path_r ); }
178 {
_pimpl->send( frame_r ); }
Base class for Exception.
std::string asUserHistory() const
A single (multiline) string composed of asUserString and historyAsString.
PluginExecutor implementation.
Impl & operator=(Impl &&)=delete
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
Impl & operator=(const Impl &)=delete
Impl(const Impl &)=delete
const std::list< PluginScript > scripts() const
void send(const PluginFrame &frame_r)
void load(const Pathname &path_r)
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).