class Kafka < Formula desc "Publish-subscribe messaging rethought as a distributed commit log" homepage "https://kafka.apache.org" url "http://mirrors.ibiblio.org/apache/kafka/0.10.0.0/kafka-0.10.0.0-src.tgz" mirror "https://archive.apache.org/dist/kafka/0.10.0.0/kafka-0.10.0.0-src.tgz" sha256 "ed2f8f83419846ff70ff2fc1cf366ac61e803d3960043075c9faecbb9dce140b" head "https://git-wip-us.apache.org/repos/asf/kafka.git", :branch => "trunk" bottle do cellar :any_skip_relocation sha256 "30498aa96a9c389b480dfcf1ca8c434171aa78450091b4a4962dc0c21fb53c07" => :el_capitan sha256 "1d8faddef401835986589fc13c443e2d779fefe87ff61803ff00cabf5aacf68e" => :yosemite sha256 "005c78fa50a6afaa96aaf30a8e62c21fc9f922c27471a7188f085bc05818694d" => :mavericks end depends_on "gradle" depends_on "zookeeper" depends_on :java => "1.7+" # Related to https://issues.apache.org/jira/browse/KAFKA-2034 # Since Kafka does not currently set the source or target compability version inside build.gradle # if you do not have Java 1.8 installed you cannot used the bottled version of Kafka pour_bottle? do reason "The bottle requires Java 1.8." satisfy { quiet_system("/usr/libexec/java_home --version 1.8 --failfast") } end def install ENV.java_cache system "gradle" system "gradle", "jar" data = var/"lib" inreplace "config/server.properties", "log.dirs=/tmp/kafka-logs", "log.dirs=#{data}/kafka-logs" inreplace "config/zookeeper.properties", "dataDir=/tmp/zookeeper", "dataDir=#{data}/zookeeper" # Workaround for conflicting slf4j-log4j12 jars (1.7.10 is preferred) rm_f "core/build/dependant-libs-2.10.5/slf4j-log4j12-1.7.6.jar" # remove Windows scripts rm_rf "bin/windows" libexec.install %w[clients core examples] prefix.install "bin" bin.env_script_all_files(libexec/"bin", Language::Java.java_home_env("1.7+")) Dir["#{bin}/*.sh"].each { |f| mv f, f.to_s.gsub(/.sh$/, "") } mv "config", "kafka" etc.install "kafka" libexec.install_symlink etc/"kafka" => "config" # create directory for kafka stdout+stderr output logs when run by launchd (var+"log/kafka").mkpath end plist_options :manual => "zookeeper-server-start #{HOMEBREW_PREFIX}/etc/kafka/zookeeper.properties; kafka-server-start #{HOMEBREW_PREFIX}/etc/kafka/server.properties" def plist; <<-EOS.undent Label #{plist_name} WorkingDirectory #{HOMEBREW_PREFIX} ProgramArguments #{opt_bin}/kafka-server-start #{etc}/kafka/server.properties RunAtLoad KeepAlive StandardErrorPath #{var}/log/kafka/kafka_output.log StandardOutPath #{var}/log/kafka/kafka_output.log EOS end test do ENV["LOG_DIR"] = "#{testpath}/kafkalog" (testpath/"kafka").mkpath cp "#{etc}/kafka/zookeeper.properties", testpath/"kafka" cp "#{etc}/kafka/server.properties", testpath/"kafka" inreplace "#{testpath}/kafka/zookeeper.properties", "#{var}/lib", testpath inreplace "#{testpath}/kafka/server.properties", "#{var}/lib", testpath begin fork do exec "#{bin}/zookeeper-server-start #{testpath}/kafka/zookeeper.properties >/dev/null" end sleep 5 fork do exec "#{bin}/kafka-server-start #{testpath}/kafka/server.properties >/dev/null" end sleep 5 @demo_pid = fork do exec "#{libexec}/examples/bin/java-producer-consumer-demo.sh > #{testpath}/kafka/demo.out 2>/dev/null" end sleep 5 ensure quiet_system "pkill", "-9", "-f", "#{testpath}/kafka/" end assert_match "Received message: ", IO.read("#{testpath}/kafka/demo.out") end end