129 lines
4.4 KiB
Ruby
129 lines
4.4 KiB
Ruby
class S2geometry < Formula
|
|
desc "Computational geometry and spatial indexing on the sphere"
|
|
homepage "https://github.com/google/s2geometry"
|
|
url "https://github.com/google/s2geometry/archive/v0.10.0.tar.gz"
|
|
sha256 "1c17b04f1ea20ed09a67a83151ddd5d8529716f509dde49a8190618d70532a3d"
|
|
license "Apache-2.0"
|
|
revision 2
|
|
|
|
livecheck do
|
|
url :homepage
|
|
regex(/^v?(\d+(?:\.\d+)+)$/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_monterey: "6222e85b0e6e61d8cdb6d3d51e26d10b8bbfe9642c977f208f503c152db92243"
|
|
sha256 cellar: :any, arm64_big_sur: "9ff446cb91fa7a78525393564d051838840599f9d49240d22792815af975bee7"
|
|
sha256 cellar: :any, monterey: "def7fbb5bf4737cb1d9e44e58212b2231f947f06aad0713c5a14f6e2e479a3df"
|
|
sha256 cellar: :any, big_sur: "0432a5fdc0b4448ee3e1e7d65845924434f58a51770ce263952f8cd59cba90cb"
|
|
sha256 cellar: :any, catalina: "05fb72af1432e37b03bbfe97fec57083417a294782d0accaf69b5a6fe7d298c0"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "6b24429eb177024a38cd01deefcb56e5b698d379902f80ea62ab0f6aefe71997"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "abseil"
|
|
depends_on "glog"
|
|
depends_on "openssl@1.1"
|
|
|
|
on_linux do
|
|
depends_on "gcc"
|
|
end
|
|
|
|
fails_with gcc: "5" # C++17
|
|
|
|
def install
|
|
# Abseil is built with C++17 and s2geometry needs to use the same C++ standard.
|
|
inreplace "CMakeLists.txt", "set(CMAKE_CXX_STANDARD 11)", "set(CMAKE_CXX_STANDARD 17)"
|
|
|
|
ENV["OPENSSL_ROOT_DIR"] = Formula["openssl@1.1"].opt_prefix
|
|
|
|
args = std_cmake_args + %w[
|
|
-DWITH_GFLAGS=1
|
|
-DWITH_GLOG=1
|
|
]
|
|
|
|
system "cmake", "-S", ".", "-B", "build/shared", *args
|
|
system "cmake", "--build", "build/shared"
|
|
system "cmake", "--install", "build/shared"
|
|
|
|
system "cmake", "-S", ".", "-B", "build/static", *args,
|
|
"-DBUILD_SHARED_LIBS=OFF",
|
|
"-DOPENSSL_USE_STATIC_LIBS=TRUE"
|
|
system "cmake", "--build", "build/static"
|
|
lib.install "build/static/libs2.a"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include <cinttypes>
|
|
#include <cmath>
|
|
#include <cstdint>
|
|
#include <cstdio>
|
|
#include "s2/base/commandlineflags.h"
|
|
#include "s2/s2earth.h"
|
|
#include "absl/flags/flag.h"
|
|
#include "s2/s1chord_angle.h"
|
|
#include "s2/s2closest_point_query.h"
|
|
#include "s2/s2point_index.h"
|
|
|
|
S2_DEFINE_int32(num_index_points, 10000, "Number of points to index");
|
|
S2_DEFINE_int32(num_queries, 10000, "Number of queries");
|
|
S2_DEFINE_double(query_radius_km, 100, "Query radius in kilometers");
|
|
|
|
inline uint64 GetBits(int num_bits) {
|
|
S2_DCHECK_GE(num_bits, 0);
|
|
S2_DCHECK_LE(num_bits, 64);
|
|
static const int RAND_BITS = 31;
|
|
uint64 result = 0;
|
|
for (int bits = 0; bits < num_bits; bits += RAND_BITS) {
|
|
result = (result << RAND_BITS) + random();
|
|
}
|
|
if (num_bits < 64) { // Not legal to shift by full bitwidth of type
|
|
result &= ((1ULL << num_bits) - 1);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
double RandDouble() {
|
|
const int NUM_BITS = 53;
|
|
return ldexp(GetBits(NUM_BITS), -NUM_BITS);
|
|
}
|
|
|
|
double UniformDouble(double min, double limit) {
|
|
S2_DCHECK_LT(min, limit);
|
|
return min + RandDouble() * (limit - min);
|
|
}
|
|
|
|
S2Point RandomPoint() {
|
|
double x = UniformDouble(-1, 1);
|
|
double y = UniformDouble(-1, 1);
|
|
double z = UniformDouble(-1, 1);
|
|
return S2Point(x, y, z).Normalize();
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
S2PointIndex<int> index;
|
|
for (int i = 0; i < absl::GetFlag(FLAGS_num_index_points); ++i) {
|
|
index.Add(RandomPoint(), i);
|
|
}
|
|
|
|
S2ClosestPointQuery<int> query(&index);
|
|
query.mutable_options()->set_max_distance(S1Angle::Radians(
|
|
S2Earth::KmToRadians(absl::GetFlag(FLAGS_query_radius_km))));
|
|
|
|
int64_t num_found = 0;
|
|
for (int i = 0; i < absl::GetFlag(FLAGS_num_queries); ++i) {
|
|
S2ClosestPointQuery<int>::PointTarget target(RandomPoint());
|
|
num_found += query.FindClosestPoints(&target).size();
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cxx, "-std=c++11", "test.cpp", "-o", "test",
|
|
"-I#{Formula["openssl@1.1"].opt_include}",
|
|
"-L#{lib}", "-ls2"
|
|
system "./test"
|
|
end
|
|
end
|