Class: CZMQ::FFI::Zproc
- Inherits:
-
Object
- Object
- CZMQ::FFI::Zproc
- Defined in:
- lib/czmq-ffi-gen/czmq/ffi/zproc.rb
Overview
This class is 100% generated using zproject.
process configuration and status
Defined Under Namespace
Classes: DestroyedError
Class Method Summary collapse
- .__new ⇒ Object
- .create_finalizer_for(ptr) ⇒ Proc
-
.new ⇒ CZMQ::Zproc
Create a new zproc.
-
.test(verbose) ⇒ void
Self test of this class.
Instance Method Summary collapse
-
#__ptr ⇒ ::FFI::Pointer
(also: #to_ptr)
Return internal pointer.
-
#__ptr_give_ref ⇒ ::FFI::MemoryPointer
Nullify internal pointer and return pointer pointer.
-
#__undef_finalizer ⇒ void
Undefines the finalizer for this object.
-
#actor ⇒ ::FFI::Pointer
return internal actor, usefull for the polling if process died.
-
#args ⇒ Zlist
Return command line arguments (the first item is the executable) or NULL if not set.
-
#destroy ⇒ void
Destroy zproc, wait until process ends.
-
#initialize(ptr, finalize = true) ⇒ Zproc
constructor
Attaches the pointer ptr to this instance and defines a finalizer for it if necessary.
-
#kill(signal) ⇒ void
send a signal to the subprocess.
- #null? ⇒ Boolean
-
#pid ⇒ Integer
PID of the process.
-
#returncode ⇒ Integer
process exit code.
-
#run ⇒ Integer
Starts the process, return just before execve/CreateProcess.
-
#running ⇒ Boolean
return true if process is running, false if not yet started or finished.
-
#set_args(arguments) ⇒ void
Setup the command line arguments, the first item must be an (absolute) filename to run.
-
#set_argsx(arguments, *args) ⇒ void
Setup the command line arguments, the first item must be an (absolute) filename to run.
-
#set_env(arguments) ⇒ void
Setup the environment variables for the process.
-
#set_stderr(socket) ⇒ void
Connects process stderr with a writable (‘@’, bind) zeromq socket.
-
#set_stdin(socket) ⇒ void
Connects process stdin with a readable (‘>’, connect) zeromq socket.
-
#set_stdout(socket) ⇒ void
Connects process stdout with a writable (‘@’, bind) zeromq socket.
-
#set_verbose(verbose) ⇒ void
set verbose mode.
-
#stderr ⇒ ::FFI::Pointer
Return subprocess stderr readable socket.
-
#stdin ⇒ ::FFI::Pointer
Return subprocess stdin writable socket.
-
#stdout ⇒ ::FFI::Pointer
Return subprocess stdout readable socket.
-
#wait(hang) ⇒ Integer
wait or poll process status, return return code.
Constructor Details
#initialize(ptr, finalize = true) ⇒ Zproc
Attaches the pointer ptr to this instance and defines a finalizer for it if necessary.
24 25 26 27 28 29 30 31 32 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 24 def initialize(ptr, finalize = true) @ptr = ptr if @ptr.null? @ptr = nil # Remove null pointers so we don't have to test for them. elsif finalize @finalizer = self.class.create_finalizer_for @ptr ObjectSpace.define_finalizer self, @finalizer end end |
Class Method Details
.__new ⇒ Object
18 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 18 alias :__new :new |
.create_finalizer_for(ptr) ⇒ Proc
35 36 37 38 39 40 41 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 35 def self.create_finalizer_for(ptr) Proc.new do ptr_ptr = ::FFI::MemoryPointer.new :pointer ptr_ptr.write_pointer ptr ::CZMQ::FFI.zproc_destroy ptr_ptr end end |
Instance Method Details
#__ptr ⇒ ::FFI::Pointer Also known as: to_ptr
Return internal pointer
48 49 50 51 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 48 def __ptr raise DestroyedError unless @ptr @ptr end |
#__ptr_give_ref ⇒ ::FFI::MemoryPointer
This detaches the current instance from the native object and thus makes it unusable.
Nullify internal pointer and return pointer pointer.
59 60 61 62 63 64 65 66 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 59 def __ptr_give_ref raise DestroyedError unless @ptr ptr_ptr = ::FFI::MemoryPointer.new :pointer ptr_ptr.write_pointer @ptr __undef_finalizer if @finalizer @ptr = nil ptr_ptr end |
#__undef_finalizer ⇒ void
Only use this if you need to and can guarantee that the native object will be freed by other means.
This method returns an undefined value.
Undefines the finalizer for this object.
71 72 73 74 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 71 def __undef_finalizer ObjectSpace.undefine_finalizer self @finalizer = nil end |
#actor ⇒ ::FFI::Pointer
return internal actor, usefull for the polling if process died
272 273 274 275 276 277 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 272 def actor() raise DestroyedError unless @ptr self_p = @ptr result = ::CZMQ::FFI.zproc_actor(self_p) result end |
#args ⇒ Zlist
Return command line arguments (the first item is the executable) or NULL if not set.
99 100 101 102 103 104 105 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 99 def args() raise DestroyedError unless @ptr self_p = @ptr result = ::CZMQ::FFI.zproc_args(self_p) result = Zlist.__new result, true result end |
#destroy ⇒ void
This method returns an undefined value.
Destroy zproc, wait until process ends.
88 89 90 91 92 93 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 88 def destroy() return unless @ptr self_p = __ptr_give_ref result = ::CZMQ::FFI.zproc_destroy(self_p) result end |
#kill(signal) ⇒ void
This method returns an undefined value.
send a signal to the subprocess
283 284 285 286 287 288 289 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 283 def kill(signal) raise DestroyedError unless @ptr self_p = @ptr signal = Integer(signal) result = ::CZMQ::FFI.zproc_kill(self_p, signal) result end |
#null? ⇒ Boolean
43 44 45 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 43 def null? !@ptr or @ptr.null? end |
#pid ⇒ Integer
PID of the process
240 241 242 243 244 245 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 240 def pid() raise DestroyedError unless @ptr self_p = @ptr result = ::CZMQ::FFI.zproc_pid(self_p) result end |
#returncode ⇒ Integer
process exit code
230 231 232 233 234 235 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 230 def returncode() raise DestroyedError unless @ptr self_p = @ptr result = ::CZMQ::FFI.zproc_returncode(self_p) result end |
#run ⇒ Integer
Starts the process, return just before execve/CreateProcess.
220 221 222 223 224 225 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 220 def run() raise DestroyedError unless @ptr self_p = @ptr result = ::CZMQ::FFI.zproc_run(self_p) result end |
#running ⇒ Boolean
return true if process is running, false if not yet started or finished
250 251 252 253 254 255 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 250 def running() raise DestroyedError unless @ptr self_p = @ptr result = ::CZMQ::FFI.zproc_running(self_p) result end |
#set_args(arguments) ⇒ void
This method returns an undefined value.
Setup the command line arguments, the first item must be an (absolute) filename to run.
112 113 114 115 116 117 118 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 112 def set_args(arguments) raise DestroyedError unless @ptr self_p = @ptr arguments = arguments.__ptr_give_ref result = ::CZMQ::FFI.zproc_set_args(self_p, arguments) result end |
#set_argsx(arguments, *args) ⇒ void
This method returns an undefined value.
Setup the command line arguments, the first item must be an (absolute) filename to run. Variadic function, must be NULL terminated.
126 127 128 129 130 131 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 126 def set_argsx(arguments, *args) raise DestroyedError unless @ptr self_p = @ptr result = ::CZMQ::FFI.zproc_set_argsx(self_p, arguments, *args) result end |
#set_env(arguments) ⇒ void
This method returns an undefined value.
Setup the environment variables for the process.
137 138 139 140 141 142 143 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 137 def set_env(arguments) raise DestroyedError unless @ptr self_p = @ptr arguments = arguments.__ptr_give_ref result = ::CZMQ::FFI.zproc_set_env(self_p, arguments) result end |
#set_stderr(socket) ⇒ void
This method returns an undefined value.
Connects process stderr with a writable (‘@’, bind) zeromq socket. If socket argument is NULL, zproc creates own managed pair of inproc sockets. The readable one is then accessbile via zproc_stderr method.
177 178 179 180 181 182 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 177 def set_stderr(socket) raise DestroyedError unless @ptr self_p = @ptr result = ::CZMQ::FFI.zproc_set_stderr(self_p, socket) result end |
#set_stdin(socket) ⇒ void
This method returns an undefined value.
Connects process stdin with a readable (‘>’, connect) zeromq socket. If socket argument is NULL, zproc creates own managed pair of inproc sockets. The writable one is then accessbile via zproc_stdin method.
151 152 153 154 155 156 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 151 def set_stdin(socket) raise DestroyedError unless @ptr self_p = @ptr result = ::CZMQ::FFI.zproc_set_stdin(self_p, socket) result end |
#set_stdout(socket) ⇒ void
This method returns an undefined value.
Connects process stdout with a writable (‘@’, bind) zeromq socket. If socket argument is NULL, zproc creates own managed pair of inproc sockets. The readable one is then accessbile via zproc_stdout method.
164 165 166 167 168 169 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 164 def set_stdout(socket) raise DestroyedError unless @ptr self_p = @ptr result = ::CZMQ::FFI.zproc_set_stdout(self_p, socket) result end |
#set_verbose(verbose) ⇒ void
This method returns an undefined value.
set verbose mode
295 296 297 298 299 300 301 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 295 def set_verbose(verbose) raise DestroyedError unless @ptr self_p = @ptr verbose = !(0==verbose||!verbose) # boolean result = ::CZMQ::FFI.zproc_set_verbose(self_p, verbose) result end |
#stderr ⇒ ::FFI::Pointer
Return subprocess stderr readable socket. NULL for not initialized or external sockets.
210 211 212 213 214 215 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 210 def stderr() raise DestroyedError unless @ptr self_p = @ptr result = ::CZMQ::FFI.zproc_stderr(self_p) result end |
#stdin ⇒ ::FFI::Pointer
Return subprocess stdin writable socket. NULL for not initialized or external sockets.
188 189 190 191 192 193 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 188 def stdin() raise DestroyedError unless @ptr self_p = @ptr result = ::CZMQ::FFI.zproc_stdin(self_p) result end |
#stdout ⇒ ::FFI::Pointer
Return subprocess stdout readable socket. NULL for not initialized or external sockets.
199 200 201 202 203 204 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 199 def stdout() raise DestroyedError unless @ptr self_p = @ptr result = ::CZMQ::FFI.zproc_stdout(self_p) result end |
#wait(hang) ⇒ Integer
wait or poll process status, return return code
261 262 263 264 265 266 267 |
# File 'lib/czmq-ffi-gen/czmq/ffi/zproc.rb', line 261 def wait(hang) raise DestroyedError unless @ptr self_p = @ptr hang = !(0==hang||!hang) # boolean result = ::CZMQ::FFI.zproc_wait(self_p, hang) result end |