This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
regexdispatcher: fix plugin data handling in combination with pluginp…
…rocess
- Loading branch information
Showing
6 changed files
with
74 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
-- | ||
-- @file | ||
-- | ||
-- @brief PluginProcess Haskell bindings | ||
-- | ||
-- @copyright BSD License (see LICENSE.md or https://www.libelektra.org) | ||
-- | ||
module Elektra.PluginProcess ( | ||
elektraPluginProcessGetData, | ||
elektraPluginProcessSetData | ||
) where | ||
|
||
{#import Elektra.Plugin#} | ||
{#import Elektra.Invoke#} | ||
|
||
import Foreign.Ptr (Ptr) | ||
|
||
#include <kdbpluginprocess.h> | ||
|
||
-- *** | ||
-- PLUGINPROCESS METHODS | ||
-- *** | ||
|
||
elektraPluginProcessSetData :: PluginData d => Plugin -> d -> IO () | ||
elektraPluginProcessSetData p = store (elektraPluginProcessSetDataRaw p) | ||
{#fun unsafe elektraPluginProcessSetData as elektraPluginProcessSetDataRaw {`Plugin', `Ptr ()'} -> `()' #} | ||
|
||
elektraPluginProcessGetData :: PluginData d => Plugin -> IO (Maybe d) | ||
elektraPluginProcessGetData p = retrieve <$> elektraPluginProcessGetDataRaw p | ||
{#fun unsafe elektraPluginProcessGetData as elektraPluginProcessGetDataRaw {`Plugin'} -> `Ptr ()' #} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters