Giter Site home page Giter Site logo

Access absolute output path about buck2 HOT 4 CLOSED

facebook avatar facebook commented on April 19, 2024
Access absolute output path

from buck2.

Comments (4)

dtolnay avatar dtolnay commented on April 19, 2024

Take a look at how rustdoc works. It also writes to an output directory.

https://github.com/facebookincubator/buck2/blob/485b689d9b124b1c670bb242caa4b2c687428971/prelude/rust/build.bzl#L132

from buck2.

ndmitchell avatar ndmitchell commented on April 19, 2024

Generally you would declare an output directory, and write it out.

output = ctx.actions.declare_output("protoc", dir=True)
cmd = cmd_args("protoc", "--cpp_out", output.as_output())

You will normally get an error about overlapping paths if you have defined that one output is in foo, and then you say the whole output is in . because the . output will overlap/contain the foo, so is no longer isolated from foo.

The above will given you a relative path, which I guess is probably fine (it will be relative to the root of the repo, which will also be the $PWD for the command). If you really need absolute, then use realpath in a shell script to convert, but I suspect relative is just fine.

If you have to do --cpp_out=something rather than just --cpp_out something, then the approach @dtolnay described is the way to do it.

from buck2.

teh avatar teh commented on April 19, 2024

With that approach I get an output directory. I'm using cxx_library_parameterized though which needs srcs, see ctx.attrs.srcs.extend(ccs) in the snippet below.

glob isn't available so I'm missing the link to go from a directory of files to a list of individual source artifacts. Is there anything to support that?

def proto_library_impl(ctx: "context") -> ["provider"]:
    headers = []
    ccs = []

    out = ctx.actions.declare_output("out", dir=True)
    ctx.attrs.headers.append(out)
    cmd = cmd_args(["protoc", "--cpp_out", out.as_output()])

    for s in ctx.attrs.srcs:
        name = paths.replace_extension(s.short_path, "")
        h = ctx.actions.declare_output(out.short_path + "/" + name + ".pb.h") # conflict warning 
        cc = ctx.actions.declare_output(out.short_path + "/" + name + ".pb.cc") # conflict warning
        cmd.hidden([h.as_output(), cc.as_output()])
        ccs.extend([cc])
        headers.extend([h])

    cmd.add(ctx.attrs.srcs)

    # replace sources because cxx_library_parameterized uses ctx.srcs
    ctx.actions.run(cmd, category="protoc", identifier = "compile", no_outputs_cleanup = True)
    ctx.attrs.srcs.clear()
    ctx.attrs.srcs.extend(ccs)

    # ... snip much more code to call cxx_library_parameterized

from buck2.

teh avatar teh commented on April 19, 2024

After a bit more of trial and error I landed on the following solution which relies on the fact that rule
outputs are generated in the same directory. This way I can declare non-conflicting
individual outputs and the out directory for protoc.

out = ctx.actions.declare_output('out')
cmd = cmd_args("protoc")
# ... snip
cmd.add("--cpp_out")
cmd.add(cmd_args(out.as_output()).parent())
cmd.add(ctx.attrs.srcs)

I don't know whether this is always true but works for now.

from buck2.

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.