unity.scopes.ScopeBase
Base class for a scope implementation. More...
#include <unity/scopes/ScopeBase.h>
Inheritance diagram for unity::scopes::ScopeBase: src="https://assets.ubuntu.com/v1/bf4862d8-classunity_1_1scopes_1_1_scope_base__inherit__graph.png" border="0" alt="Inheritance graph"/>
Public Member Functions | |
virtual void | start (std::string const &scope_id) |
Called by the scopes runtime after the create function completes. More... | |
virtual void | stop () |
Called by the scopes runtime when the scope should shut down. More... | |
virtual void | run () |
Called by the scopes runtime after it has called start() to hand a thread of control to the scope. More... | |
virtual SearchQueryBase::UPtr | search (CannedQuery const &query, SearchMetadata const &metadata)=0 |
Called by the scopes runtime when a scope needs to instantiate a query. More... | |
virtual ActivationQueryBase::UPtr | activate (Result const &result, ActionMetadata const &metadata) |
Called by the scopes runtime when a scope needs to respond to a result activation request. More... | |
virtual ActivationQueryBase::UPtr | perform_action (Result const &result, ActionMetadata const &metadata, std::string const &widget_id, std::string const &action_id) |
Invoked when a scope is requested to handle a preview action. More... | |
virtual PreviewQueryBase::UPtr | preview (Result const &result, ActionMetadata const &metadata)=0 |
Invoked when a scope is requested to create a preview for a particular result. More... | |
virtual std::string | scope_directory () const final |
Returns the directory that stores the scope's configuration files and shared library. More... | |
virtual std::string | cache_directory () const final |
Returns a directory that is (exclusively) writable for the scope. More... | |
virtual std::string | app_directory () const final |
Returns a directory that is shared with an app in the same click package. More... | |
virtual std::string | tmp_directory () const final |
Returns a tmp directory that is (exclusively) writable for the scope. More... | |
virtual unity::scopes::RegistryProxy | registry () const final |
Returns the proxy to the registry. More... | |
virtual VariantMap | settings () const final |
Returns a dictionary with the scope's current settings. More... | |
virtual ChildScopeList | find_child_scopes () const |
Returns a defaulted list of child scopes aggregated by this scope. More... | |
virtual ChildScopeList | child_scopes () const final |
Returns the current list of child scopes aggregated by this scope. More... | |
virtual ActivationQueryBase::UPtr | activate_result_action (Result const &result, ActionMetadata const &metadata, std::string const &action_id) |
Invoked when a scope is requested to handle a result in-card action. More... | |
Static Public Member Functions | |
static void | runtime_version (int &v_major, int &v_minor, int &v_micro) noexcept |
Returns the version information for the scopes API that the scope was linked with. | |
Detailed Description
Base class for a scope implementation.
Scopes are accessed by the scopes runtime as a shared library (one library per scope). Each scope must implement a class that derives from ScopeBase, for example:
<span class="preprocessor">#include <unity/scopes/ScopeBase.h></span> <span class="keyword">class </span>MyScope : <span class="keyword">public</span> <a class="code" href="index.html">unity::scopes::ScopeBase</a> { <span class="keyword">public</span>: MyScope(); <span class="keyword">virtual</span> ~MyScope(); <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="#ac25f3f326e2cf25de2f2eca18de5926c">start</a>(std::string <span class="keyword">const</span>& scope_id); <span class="comment">// Optional</span> <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="#a80c5fec9e985dbb315d780ef2a56bfbf">stop</a>(); <span class="comment">// Optional</span> <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="#a386e99b98318a70f25db84bbe11c0292">run</a>(); <span class="comment">// Optional</span> <span class="comment">// ...</span> };
In addition, the library must provide two functions with "C" linkage:
- a create function that must return a pointer to the derived instance
- a destroy function that is passed the pointer returned by the create function
Typically, the create and destroy functions will simply call new
and delete
, respectively. If the create function throws an exception, the destroy function will not be called. If the create function returns NULL, the destroy function will be called with NULL as its argument.
Rather than hard-coding the names of the functions, use the UNITY_SCOPE_CREATE_FUNCTION and UNITY_SCOPE_DESTROY_FUNCTION macros, for example:
<a class="code" href="index.html">unity::scopes::ScopeBase</a>* UNITY_SCOPE_CREATE_FUNCTION() { <span class="keywordflow">return</span> <span class="keyword">new</span> MyScope; } <span class="keywordtype">void</span> UNITY_SCOPE_DESTROY_FUNCTION(unity::scopes::ScopeBase* scope) { <span class="keyword">delete</span> scope; }
After the scopes runtime has obtained a pointer to the class instance from the create function, it calls start(), which allows the scope to intialize itself. This is followed by a call to run(). The call to run() is made by a separate thread; its only purpose is to pass a thread of control to the scope, for example, to run an event loop. When the scope should complete its activities, the runtime calls stop(). The calls to the create function, start(), stop(), and the destroy function) are made by the same thread.
The scope implementation, if it does not return from run(), is expected to return from run() in response to a call to stop() in a timely manner.
Member Function Documentation
|
virtual |
Called by the scopes runtime when a scope needs to respond to a result activation request.
This method must return an instance that is derived from ActivationQueryBase
. The implementation of this method must return in a timely manner, that is, it should perform only minimal initialization that is guaranteed to complete quickly. The call to activate() is made by an arbitrary thread. The default implementation returns an instance of ActivationQueryBase that responds with ActivationResponse::Status::NotHandled.
- Parameters
-
result The result that should be activated. metadata additional data sent by the client.
- Returns
- The activation instance.
|
virtual |
Invoked when a scope is requested to handle a result in-card action.
This method must return an instance that is derived from ActivationQueryBase
. The implementation of this method must return in a timely manner, that is, it should perform only minimal initialization that is guaranteed to complete quickly. The call to activate_result_action() is made by an arbitrary thread. The default implementation returns an instance of ActivationQueryBase that responds with ActivationResponse::Status::NotHandled.
- Parameters
-
result The result whose action was activated. metadata Additional data sent by the client. action_id The identifier of the action that was activated.
- Returns
- The activation instance.
|
finalvirtual |
Returns a directory that is shared with an app in the same click package.
If a scope and an app share a single click package, this directory and the files in it are writable by the app, and read-only to the scope. This allows the app to write information into the filesystem that can be read by the scope (but not vice versa).
- Note
- The app directory is available only after this ScopeBase is instantiated; do not call this method from the constructor!
- Returns
- The root directory of a filesystem sub-tree that the scope shares with an application installed from the same click-package.
- Exceptions
-
LogicException if called from the constructor of this instance.
|
finalvirtual |
Returns a directory that is (exclusively) writable for the scope.
This directory allows scopes to store persistent information, such as cached content or similar.
- Note
- The cache directory is available only after this ScopeBase is instantiated; do not call this method from the constructor!
- Returns
- The root directory of a filesystem sub-tree that is writable for the scope.
- Exceptions
-
LogicException if called from the constructor of this instance.
|
finalvirtual |
Returns the current list of child scopes aggregated by this scope.
An aggregator should respect the "enabled" states of each child scope, returning results only for the child scopes that are enabled.
- Returns
- The list of child scopes aggregated by this scope.
|
virtual |
Returns a defaulted list of child scopes aggregated by this scope.
The scope author must ensure that the list returned by this method contains all scopes that this aggregator may collect results from. The "enabled" state for each child returned should be set to a default value (i.e. whether the child is enabled or disabled by default when newly discovered).
The default behaviour of this method is to simply return all available scopes on the system in enabled state. This translates to: "Any scope may potentially be aggregated by this scope".
- Note
- Only aggregator scopes should implement this method.
- Returns
- The list of child scopes aggregated by this scope.
|
virtual |
Invoked when a scope is requested to handle a preview action.
This method must return an instance that is derived from ActivationQueryBase
. The implementation of this method must return in a timely manner, that is, it should perform only minimal initialization that is guaranteed to complete quickly. The call to activate() is made by an arbitrary thread. The default implementation returns an instance of ActivationQueryBase that responds with ActivationResponse::Status::NotHandled.
- Parameters
-
result The result that was previewed. metadata Additional data sent by client. widget_id The identifier of the 'actions' widget of the activated action. action_id The identifier of the action that was activated.
- Returns
- The activation instance.
|
pure virtual |
Invoked when a scope is requested to create a preview for a particular result.
This method must return an instance that is derived from PreviewQueryBase
. The implementation of this method must return in a timely manner, that is, it should perform only minimal initialization that is guaranteed to complete quickly. The call to activate() is made by an arbitrary thread.
- Parameters
-
result The result that should be previewed. metadata Additional data sent by the client.
- Returns
- The preview instance.
Implemented in unity::scopes::qt::QScopeBaseAPI.
|
finalvirtual |
Returns the proxy to the registry.
- Note
- The registry proxy is available only after this ScopeBase is instantiated; do not call this method from the constructor!
- Returns
- The proxy to the registry.
- Exceptions
-
LogicException if called from the constructor of this instance.
|
virtual |
Called by the scopes runtime after it has called start() to hand a thread of control to the scope.
run() passes a thread of control to the scope to do with as it sees fit, for example, to run an event loop. During finalization, the scopes runtime joins with the thread that called run(). This means that, if the scope implementation does not return from run(), it is expected to arrange for run() to complete in a timely manner in response to a call to stop(). Failure to do so will cause deadlock during finalization.
If run() throws an exception, the runtime handles the exception and calls stop() in response.
|
finalvirtual |
Returns the directory that stores the scope's configuration files and shared library.
- Note
- The scope directory is available only after this ScopeBase is instantiated; do not call this method from the constructor!
- Returns
- The scope's configuration directory.
- Exceptions
-
LogicException if called from the constructor of this instance.
|
pure virtual |
Called by the scopes runtime when a scope needs to instantiate a query.
This method must return an instance that is derived from QueryBase
. The implementation of this method must return in a timely manner, that is, it should perform only minimal initialization that is guaranteed to complete quickly. The call to search() is made by an arbitrary thread.
- Parameters
-
query The query string to be executed by the returned object instance. metadata additional data sent by the client.
- Returns
- The query instance.
Implemented in unity::scopes::qt::QScopeBaseAPI.
|
finalvirtual |
Returns a dictionary with the scope's current settings.
Instead of storing the return value, it is preferable to call settings() each time your implementation requires a settings value. This ensures that, if a user changes settings while the scope is running, the new settings take effect with the next query.
- Note
- The settings are available only after this ScopeBase is instantiated; do not call this method from the constructor!
- Returns
- The scope's current settings.
- Exceptions
-
LogicException if called from the constructor of this instance. ResourceException if settings database file is corrupted. FileException if settings database file is not readable.
|
virtual |
Called by the scopes runtime after the create function completes.
If start() throws an exception, stop() will not be called.
The call to start() is made by the same thread that calls the create function.
- Parameters
-
scope_id The name of the scope as defined by the scope's configuration file.
Reimplemented in unity::scopes::qt::QScopeBaseAPI.
|
virtual |
Called by the scopes runtime when the scope should shut down.
A scope should deallocate as many resources as possible when stop() is called, for example, deallocate any caches and close network connections. In addition, if the scope implements run() and did not return from run(), it must return from run() in response to the call to stop().
Exceptions from stop() are ignored.
The call to stop() is made by the same thread that calls the create function and start().
Reimplemented in unity::scopes::qt::QScopeBaseAPI.
|
finalvirtual |
Returns a tmp directory that is (exclusively) writable for the scope.
This directory is periodically cleaned of unused files. The exact amount of time may vary, but is on the order of a few hours. The directory is also cleaned during reboot.
- Note
- The tmp directory is available only after this ScopeBase is instantiated; do not call this method from the constructor!
- Returns
- A directory for temporary files.
- Exceptions
-
LogicException if called from the constructor of this instance.