homebrew-core/Formula/opensearch.rb

102 lines
3.8 KiB
Ruby

class Opensearch < Formula
desc "Open source distributed and RESTful search engine"
homepage "https://github.com/opensearch-project/OpenSearch"
url "https://github.com/opensearch-project/OpenSearch/archive/1.2.4.tar.gz"
sha256 "d4d2483bcaa6c0397fc40dcb66ef6ef0f77b17a3f0e318590914a4563c36b076"
license "Apache-2.0"
bottle do
sha256 cellar: :any_skip_relocation, big_sur: "6018dd7491405ca252d1a2ca72a077990d0efb8057d656199c432f5c78b95e49"
sha256 cellar: :any_skip_relocation, catalina: "859c3140be49c6ed70d1e9f39e8459cbecbdd7bb6f92983f47f9abff931996f7"
sha256 cellar: :any_skip_relocation, x86_64_linux: "676d21142a860442b4c5c12f50b22aaa7e34c72df5e59ef437d6bb01a2c35c83"
end
depends_on "gradle@6" => :build
depends_on "openjdk"
def install
system "gradle", ":distribution:archives:no-jdk-darwin-tar:assemble"
mkdir "tar" do
# Extract the package to the tar directory
system "tar", "--strip-components=1", "-xf",
Dir["../distribution/archives/no-jdk-darwin-tar/build/distributions/opensearch-*.tar.gz"].first
# Install into package directory
libexec.install "bin", "lib", "modules"
# Set up Opensearch for local development:
inreplace "config/opensearch.yml" do |s|
# 1. Give the cluster a unique name
s.gsub!(/#\s*cluster\.name: .*/, "cluster.name: opensearch_homebrew")
# 2. Configure paths
s.sub!(%r{#\s*path\.data: /path/to.+$}, "path.data: #{var}/lib/opensearch/")
s.sub!(%r{#\s*path\.logs: /path/to.+$}, "path.logs: #{var}/log/opensearch/")
end
inreplace "config/jvm.options", %r{logs/gc.log}, "#{var}/log/opensearch/gc.log"
# add placeholder to avoid removal of empty directory
touch "config/jvm.options.d/.keepme"
# Move config files into etc
(etc/"opensearch").install Dir["config/*"]
end
inreplace libexec/"bin/opensearch-env",
"if [ -z \"$OPENSEARCH_PATH_CONF\" ]; then OPENSEARCH_PATH_CONF=\"$OPENSEARCH_HOME\"/config; fi",
"if [ -z \"$OPENSEARCH_PATH_CONF\" ]; then OPENSEARCH_PATH_CONF=\"#{etc}/opensearch\"; fi"
bin.install libexec/"bin/opensearch",
libexec/"bin/opensearch-keystore",
libexec/"bin/opensearch-plugin",
libexec/"bin/opensearch-shard"
bin.env_script_all_files(libexec/"bin", JAVA_HOME: Formula["openjdk"].opt_prefix)
end
def post_install
# Make sure runtime directories exist
(var/"lib/opensearch").mkpath
(var/"log/opensearch").mkpath
ln_s etc/"opensearch", libexec/"config" unless (libexec/"config").exist?
(var/"opensearch/plugins").mkpath
ln_s var/"opensearch/plugins", libexec/"plugins" unless (libexec/"plugins").exist?
# fix test not being able to create keystore because of sandbox permissions
system bin/"opensearch-keystore", "create" unless (etc/"opensearch/opensearch.keystore").exist?
end
def caveats
<<~EOS
Data: #{var}/lib/opensearch/
Logs: #{var}/log/opensearch/opensearch_homebrew.log
Plugins: #{var}/opensearch/plugins/
Config: #{etc}/opensearch/
EOS
end
plist_options manual: "opensearch"
service do
run opt_bin/"opensearch"
working_dir var
log_path var/"log/opensearch.log"
error_log_path var/"log/opensearch.log"
end
test do
port = free_port
(testpath/"data").mkdir
(testpath/"logs").mkdir
fork do
exec bin/"opensearch", "-Ehttp.port=#{port}",
"-Epath.data=#{testpath}/data",
"-Epath.logs=#{testpath}/logs"
end
sleep 20
output = shell_output("curl -s -XGET localhost:#{port}/")
assert_equal "opensearch", JSON.parse(output)["version"]["distribution"]
system "#{bin}/opensearch-plugin", "list"
end
end