-
-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use upstream facil.io #143
base: zig-master
Are you sure you want to change the base?
Conversation
Hi & thanks for your work. |
8bd129d
to
39c4936
Compare
39c4936
to
2b0ec01
Compare
Hi, thank you for making this library. I hadn't seen that commit, so thanks for sharing that. I'm curious: what are the benefits of folding the facil.io source into this repo over referencing it as a dependency? I hadn't looked too deeply into the differences between the two source trees, so I'm not sure how much patching had been done between the facil.io repo and this one, other than the addition of the Why I became interested in facil.io as a dependency was because I was looking for a way to set default headers for particular mime types when serving files through the public folder. I was looking into implementing this feature in facil.io when I saw that Zap wasn't depending on the source repo directly. My use case is that I use Zap to start a simple static server as part of local development, like |
Hi, Pre-zig-package manager I used to have facil.io as git submodule and had a zig.build that would apply my patches to facil.io. After that, I maintained a fork of it. You can see it in the .zon file of above's commit. I won't go into details as you can check out the fork & commit history. Note that some were bugfixes like for cookies and sendFile64. Eventually, co-versioning, co-tagging, co-releasing etc. became too much of a burden (especially when just making tiny, quick changes) to me given that I never have enough time, so I decided to just swallow facil.io; it's not like it's been changing much. Now, to your problem: as far as I recall, facil.io does not set your headers to max-age (I could be wrong though wrt sendfile2), but rather sets caching headers to 1 hour. So, you could fork zap and change the max age from 1 hour to sth different 😄 - or, what I would recommend: write a tiny request handler that just takes the request's path, adds a prefix to it, and calls zap.request.sendfile on it, with your custom cache-control headers. My |
BTW: Likely, when facil.io 0.8 comes out (and is probably more active), it will make much more sense to depend on it via the build system. |
FYI: in facil.io 0.8.x, the This is one of the breaking changes in the new version. |
This PR updates the project to reference the facil.io source as an upstream dependency, rather than an in-source copy.
I noticed in #140 that you're gearing up for a facil.io update and thought that this might make the transition easier, since you no longer have to worry about keeping the source tree in sync with that of facil.io. This method of depending on/building upstream C sources was inspired by the projects in the All Your Codebase org (see e.g. the zstd build.zig).
I originally based this branch off master, then noticed that I would have to do some repeated refactorings already present in your
zig-master
branch (as I'm using Zig0.14.0-dev.1911+3bf89f55c
currently), so I merged it into this branch. This PR still points atmaster
, but feel free to change the base as you see fit.Summary of changes:
./facil.io
(where the in-source copy had previously lived)./facil.io
have been deleted, except forbuild.zig
,build.zig.zon
, andsrc/facil_zig.c
(flake.lock
andflake.nix
are untouched, but I'm not using Nix currently so I didn't feel like I could evaluate whether those should stick around or not)0.7.x
tagb.allocator
instead ofstd.heap.page_allocator
in the facil.io module's build.zig