GithubHelp home page GithubHelp logo

Comments (10)

korydraughn avatar korydraughn commented on September 26, 2024 1

I see. I missed the line where you mentioned that that code may appear in core.py.

from irods_rule_engine_plugin_python.

jaguc avatar jaguc commented on September 26, 2024

and still not working

from irods_rule_engine_plugin_python.

trel avatar trel commented on September 26, 2024

Hi @jaguc - is this a blocker in any way for you?

from irods_rule_engine_plugin_python.

d-w-moore avatar d-w-moore commented on September 26, 2024

Although it may be beside the point, the subprocess module can perform the same function, including trapping the output of stdout and stderr.

from irods_rule_engine_plugin_python.

trel avatar trel commented on September 26, 2024

@d-w-moore Can you share an example here as a workaround?

from irods_rule_engine_plugin_python.

d-w-moore avatar d-w-moore commented on September 26, 2024

Sure, a rough example fashioned as a rule - and usage of same - might appear in the core.py:

import subprocess
  
def msiExecCmd_ish(args, dummy_callback, dummy_rei):
    command = ['/var/lib/irods/msiExecCmd_bin/'+args[0]] + args[1].split()
    p = subprocess.Popen( command, stdout=subprocess.PIPE, stderr=subprocess.PIPE )
    (out,err) = p.communicate()
    args[2] = out
    args[3] = err

def use_it(arg,callback,rei):
    ret = callback.msiExecCmd_ish("hello",#program
                                  "a b",  #args
                                  "","")
    callback.writeLine("stdout is",ret['arguments'][2])  # print returned stdout
    callback.writeLine("stderr is",ret['arguments'][3])  # print returned stderr

Although if using this through a py_remote call, it may be necessary to contrive the return of stderr and stdout either through the iRODS Rule language, or if that's not installed, by use of TCP/IP sockets.

from irods_rule_engine_plugin_python.

korydraughn avatar korydraughn commented on September 26, 2024

Why do you need to call msiExecCmd_ish through the callback parameter?
Can't it just be called directly?

from irods_rule_engine_plugin_python.

d-w-moore avatar d-w-moore commented on September 26, 2024

Why do you need to call msiExecCmd_ish through the callback parameter? Can't it just be called directly?

You don't really need to, but if the idea is to have a rule/msvc analog to msiExecCmd that is remote-callable from another arbitrary iRODS server, this might be how to do it.

from irods_rule_engine_plugin_python.

jaguc avatar jaguc commented on September 26, 2024

Hi @jaguc - is this a blocker in any way for you?

Hi @trel actually not. I was trying things and I was wondering why was not working, so I ended here and I saw that @d-w-moore had the same issue, so I posted that was still open

from irods_rule_engine_plugin_python.

trel avatar trel commented on September 26, 2024

@jaguc yes, it's still open. no activity on it so far, other than this thread. thanks for the follow up.

from irods_rule_engine_plugin_python.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.