homebrew-core/Formula/zookeeper.rb

129 lines
4.3 KiB
Ruby

class Zookeeper < Formula
desc "Centralized server for distributed coordination of services"
homepage "https://zookeeper.apache.org/"
url "https://www.apache.org/dyn/closer.lua?path=zookeeper/zookeeper-3.6.2/apache-zookeeper-3.6.2.tar.gz"
mirror "https://archive.apache.org/dist/zookeeper/zookeeper-3.6.2/apache-zookeeper-3.6.2.tar.gz"
sha256 "62d9e865a7b1da5e906ff39ebf40cfa1880303c04b4cf38e2c88d328bc2bcd6f"
license "Apache-2.0"
revision 1
head "https://gitbox.apache.org/repos/asf/zookeeper.git"
bottle do
sha256 cellar: :any, big_sur: "5ff355365ea58279fd5702e194f45871779548d7b9a044e271e91f8824ed018f"
sha256 cellar: :any, catalina: "418667fe02a90fc96ea22a9331c0f39639041c77a8d9f7c9b07535a100102564"
sha256 cellar: :any, mojave: "ea6c5aa3aa78b6ef735bd28c31bdb8097981cecf641afbcdab2dfcd6f4094c02"
sha256 cellar: :any, high_sierra: "a6022a25669efa984068971483c90eb50fa9fe17d9d34f8d5554621ebe2f439f"
end
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "cppunit" => :build
depends_on "libtool" => :build
depends_on "maven" => :build
depends_on "pkg-config" => :build
depends_on "openjdk"
depends_on "openssl@1.1"
def default_zk_env
<<~EOS
[ -z "$ZOOCFGDIR" ] && export ZOOCFGDIR="#{etc}/zookeeper"
EOS
end
def default_log4j_properties
<<~EOS
log4j.rootCategory=WARN, zklog
log4j.appender.zklog = org.apache.log4j.RollingFileAppender
log4j.appender.zklog.File = #{var}/log/zookeeper/zookeeper.log
log4j.appender.zklog.Append = true
log4j.appender.zklog.layout = org.apache.log4j.PatternLayout
log4j.appender.zklog.layout.ConversionPattern = %d{yyyy-MM-dd HH:mm:ss} %c{1} [%p] %m%n
EOS
end
def install
system "mvn", "install", "-Pfull-build", "-DskipTests"
system "tar", "-xf", "zookeeper-assembly/target/apache-zookeeper-#{version}-bin.tar.gz"
binpfx = "apache-zookeeper-#{version}-bin"
libexec.install binpfx+"/bin", binpfx+"/lib", "zookeeper-contrib"
rm_f Dir["build-bin/bin/*.cmd"]
system "tar", "-xf", "zookeeper-assembly/target/apache-zookeeper-#{version}-lib.tar.gz"
libpfx = "apache-zookeeper-#{version}-lib"
include.install Dir[libpfx+"/usr/include/*"]
lib.install Dir[libpfx+"/usr/lib/*"]
bin.mkpath
(etc/"zookeeper").mkpath
(var/"log/zookeeper").mkpath
(var/"run/zookeeper/data").mkpath
Pathname.glob("#{libexec}/bin/*.sh") do |path|
next if path == libexec+"bin/zkEnv.sh"
script_name = path.basename
bin_name = path.basename ".sh"
(bin+bin_name).write <<~EOS
#!/bin/bash
export JAVA_HOME="${JAVA_HOME:-#{Formula["openjdk"].opt_prefix}}"
. "#{etc}/zookeeper/defaults"
exec "#{libexec}/bin/#{script_name}" "$@"
EOS
end
inreplace "conf/zoo_sample.cfg",
/^dataDir=.*/, "dataDir=#{var}/run/zookeeper/data"
cp "conf/zoo_sample.cfg", "conf/zoo.cfg"
(etc/"zookeeper").install ["conf/zoo.cfg", "conf/zoo_sample.cfg"]
end
def post_install
defaults = etc/"zookeeper/defaults"
defaults.write(default_zk_env) unless defaults.exist?
log4j_properties = etc/"zookeeper/log4j.properties"
log4j_properties.write(default_log4j_properties) unless log4j_properties.exist?
end
plist_options manual: "zkServer start"
def plist
<<~EOS
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>EnvironmentVariables</key>
<dict>
<key>SERVER_JVMFLAGS</key>
<string>-Dapple.awt.UIElement=true</string>
</dict>
<key>KeepAlive</key>
<dict>
<key>SuccessfulExit</key>
<false/>
</dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>ProgramArguments</key>
<array>
<string>#{opt_bin}/zkServer</string>
<string>start-foreground</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>WorkingDirectory</key>
<string>#{var}</string>
</dict>
</plist>
EOS
end
test do
output = shell_output("#{bin}/zkServer -h 2>&1")
assert_match "Using config: #{etc}/zookeeper/zoo.cfg", output
end
end