2021-07-15 21:28:33 +02:00
|
|
|
defmodule Ejabberd.MixProject do
|
2015-04-04 17:42:12 +02:00
|
|
|
use Mix.Project
|
|
|
|
|
|
|
|
def project do
|
|
|
|
[app: :ejabberd,
|
2021-07-15 20:54:56 +02:00
|
|
|
version: version(),
|
2017-06-04 03:00:57 +02:00
|
|
|
description: description(),
|
2022-03-10 10:57:10 +01:00
|
|
|
elixir: elixir_required_version(),
|
2015-04-04 17:42:12 +02:00
|
|
|
elixirc_paths: ["lib"],
|
|
|
|
compile_path: ".",
|
2015-04-06 12:29:11 +02:00
|
|
|
compilers: [:asn1] ++ Mix.compilers,
|
2017-06-04 03:00:57 +02:00
|
|
|
erlc_options: erlc_options(),
|
2015-04-06 12:29:11 +02:00
|
|
|
erlc_paths: ["asn1", "src"],
|
2016-07-26 12:17:37 +02:00
|
|
|
# Elixir tests are starting the part of ejabberd they need
|
|
|
|
aliases: [test: "test --no-start"],
|
2021-07-15 21:28:33 +02:00
|
|
|
start_permanent: Mix.env() == :prod,
|
|
|
|
language: :erlang,
|
2021-07-15 21:25:01 +02:00
|
|
|
releases: releases(),
|
2017-06-04 03:00:57 +02:00
|
|
|
package: package(),
|
|
|
|
deps: deps()]
|
2015-04-04 17:42:12 +02:00
|
|
|
end
|
|
|
|
|
2021-07-15 20:54:56 +02:00
|
|
|
def version do
|
|
|
|
case config(:vsn) do
|
|
|
|
:false -> "0.0.0" # ./configure wasn't run: vars.config not created
|
|
|
|
'0.0' -> "0.0.0" # the full git repository wasn't downloaded
|
2021-12-08 16:22:24 +01:00
|
|
|
'latest.0' -> "0.0.0" # running 'docker-ejabberd/ecs/build.sh latest'
|
2021-07-26 16:36:21 +02:00
|
|
|
[_, _, ?., _, _] = x ->
|
2022-02-21 00:02:31 +01:00
|
|
|
head = String.replace(:erlang.list_to_binary(x), ~r/\.0+([0-9])/, ".\\1")
|
2021-07-26 16:36:21 +02:00
|
|
|
<<head::binary, ".0">>
|
2022-02-21 00:02:31 +01:00
|
|
|
vsn -> String.replace(:erlang.list_to_binary(vsn), ~r/\.0+([0-9])/, ".\\1")
|
2021-07-15 20:54:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-19 13:57:19 +02:00
|
|
|
def description do
|
2016-01-24 10:19:28 +01:00
|
|
|
"""
|
2019-09-30 10:10:44 +02:00
|
|
|
Robust, Ubiquitous and Massively Scalable Messaging Platform (XMPP, MQTT, SIP Server)
|
2016-01-24 10:19:28 +01:00
|
|
|
"""
|
|
|
|
end
|
|
|
|
|
2015-04-04 17:42:12 +02:00
|
|
|
def application do
|
|
|
|
[mod: {:ejabberd_app, []},
|
2021-07-15 21:07:22 +02:00
|
|
|
extra_applications: [:mix],
|
|
|
|
applications: [:idna, :inets, :kernel, :sasl, :ssl, :stdlib,
|
|
|
|
:base64url, :fast_tls, :fast_xml, :fast_yaml, :jiffy, :jose,
|
2022-07-27 11:47:16 +02:00
|
|
|
:p1_utils, :stringprep, :syntax_tools, :yconf],
|
2022-02-08 12:12:49 +01:00
|
|
|
included_applications: [:mnesia, :os_mon,
|
2022-02-18 21:48:26 +01:00
|
|
|
:cache_tab, :eimp, :mqtree, :p1_acme,
|
2021-07-15 21:07:22 +02:00
|
|
|
:p1_oauth2, :pkix, :xmpp]
|
2019-01-15 16:22:58 +01:00
|
|
|
++ cond_apps()]
|
2015-04-04 17:42:12 +02:00
|
|
|
end
|
2015-09-29 20:19:35 +02:00
|
|
|
|
2018-12-13 11:45:45 +01:00
|
|
|
defp if_version_above(ver, okResult) do
|
|
|
|
if :erlang.system_info(:otp_release) > ver do
|
|
|
|
okResult
|
|
|
|
else
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-03-03 11:18:07 +01:00
|
|
|
defp if_version_below(ver, okResult) do
|
|
|
|
if :erlang.system_info(:otp_release) < ver do
|
|
|
|
okResult
|
|
|
|
else
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-04-04 17:42:12 +02:00
|
|
|
defp erlc_options do
|
2015-09-07 17:35:58 +02:00
|
|
|
# Use our own includes + includes from all dependencies
|
2017-03-28 16:08:10 +02:00
|
|
|
includes = ["include"] ++ deps_include(["fast_xml", "xmpp", "p1_utils"])
|
2022-02-08 15:38:04 +01:00
|
|
|
result = [{:d, :ELIXIR_ENABLED}] ++
|
2020-03-03 11:18:07 +01:00
|
|
|
cond_options() ++
|
|
|
|
Enum.map(includes, fn (path) -> {:i, path} end) ++
|
|
|
|
if_version_above('20', [{:d, :DEPRECATED_GET_STACKTRACE}]) ++
|
2022-02-24 21:34:40 +01:00
|
|
|
if_version_above('20', [{:d, :HAVE_URI_STRING}]) ++
|
|
|
|
if_version_above('20', [{:d, :HAVE_ERL_ERROR}]) ++
|
2020-08-10 10:14:49 +02:00
|
|
|
if_version_below('21', [{:d, :USE_OLD_HTTP_URI}]) ++
|
2020-03-03 11:18:07 +01:00
|
|
|
if_version_below('22', [{:d, :LAGER}]) ++
|
2022-02-08 15:37:45 +01:00
|
|
|
if_version_below('21', [{:d, :NO_CUSTOMIZE_HOSTNAME_CHECK}]) ++
|
2020-08-10 10:14:49 +02:00
|
|
|
if_version_below('23', [{:d, :USE_OLD_CRYPTO_HMAC}]) ++
|
|
|
|
if_version_below('23', [{:d, :USE_OLD_PG2}]) ++
|
2021-03-04 15:30:06 +01:00
|
|
|
if_version_below('24', [{:d, :COMPILER_REPORTS_ONLY_LINES}]) ++
|
2022-02-24 21:34:40 +01:00
|
|
|
if_version_below('24', [{:d, :SYSTOOLS_APP_DEF_WITHOUT_OPTIONAL}])
|
2020-03-03 11:18:07 +01:00
|
|
|
defines = for {:d, value} <- result, do: {:d, value}
|
|
|
|
result ++ [{:d, :ALL_DEFS, defines}]
|
2017-10-24 12:02:52 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
defp cond_options do
|
2019-03-11 16:58:26 +01:00
|
|
|
for {:true, option} <- [{config(:sip), {:d, :SIP}},
|
|
|
|
{config(:stun), {:d, :STUN}},
|
2022-02-08 15:38:04 +01:00
|
|
|
{config(:debug), :debug_info},
|
|
|
|
{not config(:debug), {:debug_info, false}},
|
2022-02-08 14:14:00 +01:00
|
|
|
{config(:roster_gateway_workaround), {:d, :ROSTER_GATEWAY_WORKAROUND}},
|
2019-03-11 16:58:26 +01:00
|
|
|
{config(:new_sql_schema), {:d, :NEW_SQL_SCHEMA}}
|
|
|
|
], do:
|
2017-10-24 12:02:52 +02:00
|
|
|
option
|
2015-04-04 17:42:12 +02:00
|
|
|
end
|
2015-09-29 20:19:35 +02:00
|
|
|
|
2015-04-04 17:42:12 +02:00
|
|
|
defp deps do
|
2021-11-29 15:36:57 +01:00
|
|
|
[{:base64url, "~> 1.0"},
|
2017-12-28 14:43:13 +01:00
|
|
|
{:cache_tab, "~> 1.0"},
|
2021-03-09 17:25:23 +01:00
|
|
|
{:eimp, "~> 1.0"},
|
2022-05-12 16:26:55 +02:00
|
|
|
{:ex_doc, ">= 0.0.0", only: :dev},
|
2021-03-09 17:25:23 +01:00
|
|
|
{:fast_tls, "~> 1.1"},
|
|
|
|
{:fast_xml, "~> 1.1"},
|
|
|
|
{:fast_yaml, "~> 1.0"},
|
|
|
|
{:idna, "~> 6.0"},
|
2022-02-23 10:07:03 +01:00
|
|
|
{:jiffy, "~> 1.1.1"},
|
2021-11-17 13:22:34 +01:00
|
|
|
{:jose, "~> 1.11.1"},
|
2021-03-09 17:25:23 +01:00
|
|
|
{:mqtree, "~> 1.0"},
|
|
|
|
{:p1_acme, "~> 1.0"},
|
2021-03-24 23:03:08 +01:00
|
|
|
{:p1_oauth2, "~> 0.6"},
|
2021-03-09 17:25:23 +01:00
|
|
|
{:p1_utils, "~> 1.0"},
|
2018-12-06 10:18:43 +01:00
|
|
|
{:pkix, "~> 1.0"},
|
2021-07-26 16:06:43 +02:00
|
|
|
{:stringprep, ">= 1.0.26"},
|
2022-10-12 12:44:27 +02:00
|
|
|
{:xmpp, ">= 1.6.0"},
|
2021-03-09 17:25:23 +01:00
|
|
|
{:yconf, "~> 1.0"}]
|
2017-06-04 03:00:57 +02:00
|
|
|
++ cond_deps()
|
2015-09-29 20:19:35 +02:00
|
|
|
end
|
2015-09-29 20:18:49 +02:00
|
|
|
|
2016-12-06 17:54:21 +01:00
|
|
|
defp deps_include(deps) do
|
2019-04-25 13:31:08 +02:00
|
|
|
base = if Mix.Project.umbrella?() do
|
|
|
|
"../../deps"
|
|
|
|
else
|
|
|
|
case Mix.Project.deps_paths()[:ejabberd] do
|
|
|
|
nil -> "deps"
|
|
|
|
_ -> ".."
|
|
|
|
end
|
2017-02-17 16:26:39 +01:00
|
|
|
end
|
|
|
|
Enum.map(deps, fn dep -> base<>"/#{dep}/include" end)
|
2016-12-06 17:54:21 +01:00
|
|
|
end
|
|
|
|
|
2016-10-19 13:57:19 +02:00
|
|
|
defp cond_deps do
|
2021-03-24 23:03:08 +01:00
|
|
|
for {:true, dep} <- [{config(:pam), {:epam, "~> 1.0"}},
|
2021-05-27 16:55:59 +02:00
|
|
|
{config(:redis), {:eredis, "~> 1.2.0"}},
|
2022-02-08 14:00:57 +01:00
|
|
|
{config(:sip), {:esip, "~> 1.0"}},
|
2018-01-22 17:42:02 +01:00
|
|
|
{config(:zlib), {:ezlib, "~> 1.0"}},
|
2022-02-08 12:12:49 +01:00
|
|
|
{if_version_below('22', true), {:lager, "~> 3.9.1"}},
|
2022-01-04 21:22:11 +01:00
|
|
|
{config(:lua), {:luerl, "~> 1.0"}},
|
2022-09-15 10:18:49 +02:00
|
|
|
{config(:mysql), {:p1_mysql, "~> 1.0.20"}},
|
2022-02-08 14:00:57 +01:00
|
|
|
{config(:pgsql), {:p1_pgsql, "~> 1.1"}},
|
|
|
|
{config(:sqlite), {:sqlite3, "~> 1.1"}},
|
|
|
|
{config(:stun), {:stun, "~> 1.0"}}], do:
|
2016-10-19 13:57:19 +02:00
|
|
|
dep
|
|
|
|
end
|
|
|
|
|
|
|
|
defp cond_apps do
|
2022-02-21 00:34:02 +01:00
|
|
|
for {:true, app} <- [{config(:pam), :epam},
|
|
|
|
{config(:lua), :luerl},
|
|
|
|
{config(:redis), :eredis},
|
2022-02-08 12:12:49 +01:00
|
|
|
{if_version_below('22', true), :lager},
|
2016-10-19 13:57:19 +02:00
|
|
|
{config(:mysql), :p1_mysql},
|
2022-02-18 21:48:26 +01:00
|
|
|
{config(:sip), :esip},
|
2019-12-25 00:38:48 +01:00
|
|
|
{config(:odbc), :odbc},
|
2016-10-19 13:57:19 +02:00
|
|
|
{config(:pgsql), :p1_pgsql},
|
2021-07-15 21:07:22 +02:00
|
|
|
{config(:sqlite), :sqlite3}], do:
|
2016-10-19 13:57:19 +02:00
|
|
|
app
|
|
|
|
end
|
|
|
|
|
2017-06-13 11:02:30 +02:00
|
|
|
defp package do
|
2016-01-24 10:07:12 +01:00
|
|
|
[# These are the default files included in the package
|
2021-07-15 21:23:21 +02:00
|
|
|
files: ["include", "lib", "priv", "sql", "src",
|
2021-07-15 21:10:18 +02:00
|
|
|
"COPYING", "README.md",
|
2021-07-15 21:23:03 +02:00
|
|
|
"mix.exs", "rebar.config", "rebar.config.script", "vars.config"],
|
2016-01-24 10:07:12 +01:00
|
|
|
maintainers: ["ProcessOne"],
|
2022-05-12 16:30:58 +02:00
|
|
|
licenses: ["GPL-2.0-or-later"],
|
2016-01-24 10:07:12 +01:00
|
|
|
links: %{"Site" => "https://www.ejabberd.im",
|
|
|
|
"Documentation" => "http://docs.ejabberd.im",
|
2016-02-08 11:50:04 +01:00
|
|
|
"Source" => "https://github.com/processone/ejabberd",
|
|
|
|
"ProcessOne" => "http://www.process-one.net/"}]
|
2015-04-04 17:42:12 +02:00
|
|
|
end
|
2016-10-19 13:57:19 +02:00
|
|
|
|
2017-06-13 11:02:30 +02:00
|
|
|
defp vars do
|
2016-10-19 13:57:19 +02:00
|
|
|
case :file.consult("vars.config") do
|
|
|
|
{:ok,config} -> config
|
2019-01-02 13:02:08 +01:00
|
|
|
_ -> [zlib: true]
|
2016-10-19 13:57:19 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp config(key) do
|
2017-06-04 03:00:57 +02:00
|
|
|
case vars()[key] do
|
2016-10-19 13:57:19 +02:00
|
|
|
nil -> false
|
|
|
|
value -> value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-03-10 10:57:10 +01:00
|
|
|
defp elixir_required_version do
|
2022-04-08 18:26:07 +02:00
|
|
|
case {Map.get(System.get_env(), "RELIVE", "false"),
|
2022-03-10 10:57:10 +01:00
|
|
|
MapSet.member?(MapSet.new(System.argv()), "release")}
|
|
|
|
do
|
|
|
|
{"true", _} ->
|
|
|
|
case Version.match?(System.version(), "~> 1.11") do
|
|
|
|
false ->
|
|
|
|
IO.puts("ERROR: To use 'make relive', Elixir 1.11.0 or higher is required.")
|
|
|
|
_ -> :ok
|
|
|
|
end
|
|
|
|
"~> 1.11"
|
|
|
|
{_, true} ->
|
|
|
|
case Version.match?(System.version(), "~> 1.10") do
|
|
|
|
false ->
|
|
|
|
IO.puts("ERROR: To build releases, Elixir 1.10.0 or higher is required.")
|
|
|
|
_ -> :ok
|
|
|
|
end
|
|
|
|
case Version.match?(System.version(), "< 1.11.4")
|
|
|
|
and :erlang.system_info(:otp_release) > '23' do
|
|
|
|
true ->
|
|
|
|
IO.puts("ERROR: To build releases with Elixir lower than 1.11.4, Erlang/OTP lower than 24 is required.")
|
|
|
|
_ -> :ok
|
|
|
|
end
|
|
|
|
"~> 1.10"
|
|
|
|
_ ->
|
|
|
|
"~> 1.4"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-07-15 21:25:01 +02:00
|
|
|
defp releases do
|
|
|
|
maybe_tar = case Mix.env() do
|
|
|
|
:prod -> [:tar]
|
|
|
|
_ -> []
|
|
|
|
end
|
|
|
|
[
|
|
|
|
ejabberd: [
|
|
|
|
include_executables_for: [:unix],
|
|
|
|
# applications: [runtime_tools: :permanent]
|
|
|
|
steps: [©_extra_files/1, :assemble | maybe_tar]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
defp copy_extra_files(release) do
|
|
|
|
assigns = [
|
|
|
|
version: version(),
|
|
|
|
rootdir: config(:rootdir),
|
|
|
|
installuser: config(:installuser),
|
|
|
|
libdir: config(:libdir),
|
|
|
|
sysconfdir: config(:sysconfdir),
|
|
|
|
localstatedir: config(:localstatedir),
|
2022-04-25 12:46:48 +02:00
|
|
|
config_dir: config(:config_dir),
|
|
|
|
logs_dir: config(:logs_dir),
|
|
|
|
spool_dir: config(:spool_dir),
|
2021-07-15 21:25:01 +02:00
|
|
|
erl: config(:erl),
|
|
|
|
epmd: config(:epmd),
|
|
|
|
bindir: Path.join([config(:release_dir), "releases", version()]),
|
|
|
|
release_dir: config(:release_dir),
|
2022-01-04 15:55:24 +01:00
|
|
|
erts_dir: config(:erts_dir),
|
2021-07-15 21:25:01 +02:00
|
|
|
erts_vsn: "erts-#{release.erts_version}"
|
|
|
|
]
|
|
|
|
ro = "rel/overlays"
|
|
|
|
File.rm_rf(ro)
|
|
|
|
|
2021-07-16 11:19:51 +02:00
|
|
|
# Elixir lower than 1.12.0 don't have System.shell
|
|
|
|
execute = fn(command) ->
|
|
|
|
case function_exported?(System, :shell, 1) do
|
|
|
|
true ->
|
|
|
|
System.shell(command)
|
|
|
|
false ->
|
|
|
|
:os.cmd(to_charlist(command))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Mix/Elixir lower than 1.11.0 use config/releases.exs instead of runtime.exs
|
2022-03-10 10:57:10 +01:00
|
|
|
case Version.match?(System.version, "~> 1.11") do
|
2021-07-16 11:19:51 +02:00
|
|
|
true ->
|
|
|
|
:ok
|
|
|
|
false ->
|
|
|
|
execute.("cp config/runtime.exs config/releases.exs")
|
|
|
|
end
|
|
|
|
|
|
|
|
execute.("sed -e 's|{{\\(\[_a-z\]*\\)}}|<%= @\\1 %>|g' ejabberdctl.template > ejabberdctl.example1")
|
2021-07-15 21:25:01 +02:00
|
|
|
Mix.Generator.copy_template("ejabberdctl.example1", "ejabberdctl.example2", assigns)
|
2022-01-04 15:55:24 +01:00
|
|
|
execute.("sed -e 's|{{\\(\[_a-z\]*\\)}}|<%= @\\1 %>|g' ejabberdctl.example2> ejabberdctl.example2a")
|
|
|
|
Mix.Generator.copy_template("ejabberdctl.example2a", "ejabberdctl.example2b", assigns)
|
|
|
|
execute.("sed -e 's|{{\\(\[_a-z\]*\\)}}|<%= @\\1 %>|g' ejabberdctl.example2b > ejabberdctl.example3")
|
2022-03-10 16:29:32 +01:00
|
|
|
execute.("sed -e 's|^ERLANG_NODE=ejabberd@localhost|ERLANG_NODE=ejabberd|g' ejabberdctl.example3 > ejabberdctl.example4")
|
|
|
|
execute.("sed -e 's|^ERLANG_OPTS=\"|ERLANG_OPTS=\"-boot ../releases/#{release.version}/start_clean -boot_var RELEASE_LIB ../lib |' ejabberdctl.example4 > ejabberdctl.example5")
|
|
|
|
execute.("sed -e 's|^INSTALLUSER=|ERL_OPTIONS=\"-setcookie \\$\\(cat \"\\${SCRIPT_DIR%/*}/releases/COOKIE\")\"\\nINSTALLUSER=|g' ejabberdctl.example5 > ejabberdctl.example6")
|
|
|
|
Mix.Generator.copy_template("ejabberdctl.example6", "#{ro}/bin/ejabberdctl", assigns)
|
2021-07-15 21:25:01 +02:00
|
|
|
File.chmod("#{ro}/bin/ejabberdctl", 0o755)
|
|
|
|
|
|
|
|
File.rm("ejabberdctl.example1")
|
|
|
|
File.rm("ejabberdctl.example2")
|
2022-01-04 15:55:24 +01:00
|
|
|
File.rm("ejabberdctl.example2a")
|
|
|
|
File.rm("ejabberdctl.example2b")
|
2021-07-15 21:25:01 +02:00
|
|
|
File.rm("ejabberdctl.example3")
|
|
|
|
File.rm("ejabberdctl.example4")
|
|
|
|
File.rm("ejabberdctl.example5")
|
2022-03-10 16:29:32 +01:00
|
|
|
File.rm("ejabberdctl.example6")
|
2021-07-15 21:25:01 +02:00
|
|
|
|
|
|
|
suffix = case Mix.env() do
|
|
|
|
:dev ->
|
2022-04-25 12:46:48 +02:00
|
|
|
Mix.Generator.copy_file("test/ejabberd_SUITE_data/ca.pem", "#{ro}/conf/ca.pem")
|
|
|
|
Mix.Generator.copy_file("test/ejabberd_SUITE_data/cert.pem", "#{ro}/conf/cert.pem")
|
2021-07-15 21:25:01 +02:00
|
|
|
".example"
|
|
|
|
_ -> ""
|
|
|
|
end
|
|
|
|
|
2022-04-25 12:46:48 +02:00
|
|
|
Mix.Generator.copy_file("ejabberd.yml.example", "#{ro}/conf/ejabberd.yml#{suffix}")
|
|
|
|
Mix.Generator.copy_file("ejabberdctl.cfg.example", "#{ro}/conf/ejabberdctl.cfg#{suffix}")
|
|
|
|
Mix.Generator.copy_file("inetrc", "#{ro}/conf/inetrc")
|
2021-07-15 21:25:01 +02:00
|
|
|
|
|
|
|
Enum.each(File.ls!("sql"),
|
|
|
|
fn x ->
|
|
|
|
Mix.Generator.copy_file("sql/#{x}", "#{ro}/lib/ejabberd-#{release.version}/priv/sql/#{x}")
|
|
|
|
end)
|
|
|
|
|
2022-04-21 11:40:48 +02:00
|
|
|
File.cp_r!("include", "#{ro}/lib/ejabberd-#{release.version}/include")
|
|
|
|
for {name, details} <- Map.to_list(release.applications) do
|
|
|
|
{_, is_otp_app} = List.keyfind(details, :otp_app?, 0)
|
|
|
|
{_, vsn} = List.keyfind(details, :vsn, 0)
|
|
|
|
{_, path} = List.keyfind(details, :path, 0)
|
|
|
|
source_dir = case is_otp_app do
|
|
|
|
:true -> "#{path}/include"
|
|
|
|
:false -> "deps/#{name}/include"
|
|
|
|
end
|
|
|
|
target_dir = "#{ro}/lib/#{name}-#{vsn}/include"
|
|
|
|
File.exists?(source_dir)
|
|
|
|
&& File.mkdir_p(target_dir)
|
|
|
|
&& File.cp_r!(source_dir, target_dir)
|
|
|
|
end
|
|
|
|
|
2021-07-15 21:25:01 +02:00
|
|
|
case Mix.env() do
|
2021-07-16 11:19:51 +02:00
|
|
|
:dev -> execute.("REL_DIR_TEMP=$PWD/rel/overlays/ rel/setup-dev.sh")
|
2021-07-15 21:25:01 +02:00
|
|
|
_ -> :ok
|
|
|
|
end
|
|
|
|
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2015-04-04 17:42:12 +02:00
|
|
|
end
|
2015-04-06 12:29:11 +02:00
|
|
|
|
|
|
|
defmodule Mix.Tasks.Compile.Asn1 do
|
|
|
|
use Mix.Task
|
|
|
|
alias Mix.Compilers.Erlang
|
|
|
|
|
|
|
|
@recursive true
|
|
|
|
@manifest ".compile.asn1"
|
|
|
|
|
|
|
|
def run(args) do
|
|
|
|
{opts, _, _} = OptionParser.parse(args, switches: [force: :boolean])
|
|
|
|
|
|
|
|
project = Mix.Project.config
|
|
|
|
source_paths = project[:asn1_paths] || ["asn1"]
|
|
|
|
dest_paths = project[:asn1_target] || ["src"]
|
|
|
|
mappings = Enum.zip(source_paths, dest_paths)
|
|
|
|
options = project[:asn1_options] || []
|
|
|
|
|
2017-10-04 12:03:36 +02:00
|
|
|
force = case opts[:force] do
|
|
|
|
:true -> [force: true]
|
|
|
|
_ -> [force: false]
|
|
|
|
end
|
|
|
|
|
|
|
|
Erlang.compile(manifest(), mappings, :asn1, :erl, force, fn
|
2015-04-06 12:29:11 +02:00
|
|
|
input, output ->
|
|
|
|
options = options ++ [:noobj, outdir: Erlang.to_erl_file(Path.dirname(output))]
|
2015-04-06 12:39:21 +02:00
|
|
|
case :asn1ct.compile(Erlang.to_erl_file(input), options) do
|
|
|
|
:ok -> {:ok, :done}
|
2015-05-29 09:30:16 +02:00
|
|
|
error -> error
|
2015-04-06 12:39:21 +02:00
|
|
|
end
|
2015-04-06 12:29:11 +02:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2017-06-04 03:00:57 +02:00
|
|
|
def manifests, do: [manifest()]
|
2015-04-06 12:29:11 +02:00
|
|
|
defp manifest, do: Path.join(Mix.Project.manifest_path, @manifest)
|
|
|
|
|
|
|
|
def clean, do: Erlang.clean(manifest())
|
|
|
|
end
|