Page MenuHomePhabricator

[blob] Use `FetchContent_Declare` to pull in `glog`
AbandonedPublic

Authored by atul on Jul 25 2022, 11:21 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Jun 29, 3:06 PM
Unknown Object (File)
Sat, Jun 29, 5:56 AM
Unknown Object (File)
Wed, Jun 26, 6:59 PM
Unknown Object (File)
Wed, Jun 26, 4:59 PM
Unknown Object (File)
Wed, Jun 26, 6:11 AM
Unknown Object (File)
Wed, Jun 26, 6:11 AM
Unknown Object (File)
Wed, Jun 26, 6:11 AM
Unknown Object (File)
Wed, Jun 26, 6:05 AM

Details

Summary

Right now we handle dependencies for services in a very weird way that depends on various shell scripts and assumes a Docker environment built atop the base-image.

This diff uses the CMake FetchContent_Declare functionality to pull in the correct version of glog (as described in services/base-image/docker/install_glog.sh) without depending on a shell script/base image.

In my opinion it makes way more sense for each service to handle required dependencies rather than assuming there's some "base image" that magically takes care of things.

The coupling of services builds with assumption of Docker environment leads to CMake projects that aren't portable... making it impossible to get things to work directly on dev machines. IMO the right level of abstraction for handling dependencies is the build system (in this case CMake).

Test Plan

Blob CI continues to work.

Diff Detail

Repository
rCOMM Comm
Branch
master
Lint
No Lint Coverage
Unit
No Test Coverage

Event Timeline

Harbormaster returned this revision to the author for changes because remote builds failed.Jul 25 2022, 11:23 AM
Harbormaster failed remote builds in B10819: Diff 14882!

remove extraneous include

atul requested review of this revision.Jul 25 2022, 11:36 AM
ashoat added a reviewer: jon. ashoat added 1 blocking reviewer(s): karol.Jul 25 2022, 11:50 AM
ashoat added a subscriber: jon.

@jon and @karol should definitely take a look. @jon should be reviewing all CMake diffs and @karol wrote the blob service

This also overlaps with: https://phab.comm.dev/D4490

services/blob/CMakeLists.txt
24

I would much rather attempt to find the package through find_package then fall back to this logic

How about tunnelbroker ad backup? I think we should have a consistent way of installing this in every service.
Separately, if glog's used in all of them, why don't we install it in the base image and just use the installed version in the child images instead force the children to install/pull it (which essentially leads to wasting time when building child images for the first time)?

This revision now requires changes to proceed.Jul 26 2022, 4:05 AM
In D4624#132971, @karol wrote:

How about tunnelbroker ad backup? I think we should have a consistent way of installing this in every service.

I agree, was going to just start with blob service to narrow the scope initially and get one service to be "portable." Hopefully after getting it to work for one service the rest would be trivial.

I could update this diff to use the new approach for all services, and then remove the install_glog.sh script altogether?

Separately, if glog's used in all of them, why don't we install it in the base image and just use the installed version in the child images instead force the children to install/pull it (which essentially leads to wasting time when building child images for the first time)?

We can do both! We can install it in the base image so we can benefit from caching there and avoid having to fetch/build dependencies for every child image for the Docker use case.

We can also conditionally FetchContent so we can get the child services to run in non-Docker contexts (eg macOS/other distros/etc)