| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- #!/usr/bin/env escript
- %% This script reads up emqx.conf and split the sections
- %% and dump sections to separate files.
- %% Sections are grouped between CONFIG_SECTION_BGN and
- %% CONFIG_SECTION_END pairs
- %%
- %% NOTE: this feature is so far not used in opensource
- %% edition due to backward-compatibility reasons.
- -mode(compile).
- -define(APPS, ["emqx", "emqx_dashboard", "emqx_authz"]).
- main(_) ->
- {ok, BaseConf} = file:read_file("apps/emqx_conf/etc/emqx_conf.conf"),
- Cfgs = get_all_cfgs("apps/"),
- IsEnterprise = is_enterprise(),
- Enterprise =
- case IsEnterprise of
- false -> [];
- true -> [io_lib:nl(), "include emqx-enterprise.conf", io_lib:nl()]
- end,
- Conf = [
- merge(BaseConf, Cfgs),
- io_lib:nl(),
- Enterprise
- ],
- ok = file:write_file("apps/emqx_conf/etc/emqx.conf.all", Conf),
- case IsEnterprise of
- true ->
- EnterpriseCfgs = get_all_cfgs("lib-ee"),
- EnterpriseConf = merge("", EnterpriseCfgs),
- ok = file:write_file("apps/emqx_conf/etc/emqx-enterprise.conf.all", EnterpriseConf);
- false ->
- ok
- end.
- is_enterprise() ->
- Profile = os:getenv("PROFILE", "emqx"),
- nomatch =/= string:find(Profile, "enterprise").
- merge(BaseConf, Cfgs) ->
- lists:foldl(
- fun(CfgFile, Acc) ->
- case filelib:is_regular(CfgFile) of
- true ->
- {ok, Bin1} = file:read_file(CfgFile),
- case string:trim(Bin1, both) of
- <<>> -> Acc;
- Bin2 -> [Acc, io_lib:nl(), io_lib:nl(), Bin2]
- end;
- false ->
- Acc
- end
- end,
- BaseConf,
- Cfgs
- ).
- get_all_cfgs(Root) ->
- Apps0 = filelib:wildcard("*", Root) -- ["emqx_machine", "emqx_conf"],
- Apps1 = (Apps0 -- ?APPS) ++ lists:reverse(?APPS),
- Dirs = [filename:join([Root, App]) || App <- Apps1],
- lists:foldl(fun get_cfgs/2, [], Dirs).
- get_all_cfgs(Dir, Cfgs) ->
- Fun = fun(E, Acc) ->
- Path = filename:join([Dir, E]),
- get_cfgs(Path, Acc)
- end,
- lists:foldl(Fun, Cfgs, filelib:wildcard("*", Dir)).
- get_cfgs(Dir, Cfgs) ->
- case filelib:is_dir(Dir) of
- false ->
- Cfgs;
- _ ->
- Files = filelib:wildcard("*", Dir),
- case lists:member("etc", Files) of
- false ->
- try_enter_child(Dir, Files, Cfgs);
- true ->
- EtcDir = filename:join([Dir, "etc"]),
- %% the conf name must start with emqx
- %% because there are some other conf, and these conf don't start with emqx
- Confs = filelib:wildcard("emqx*.conf", EtcDir),
- NewCfgs = [filename:join([EtcDir, Name]) || Name <- Confs],
- try_enter_child(Dir, Files, NewCfgs ++ Cfgs)
- end
- end.
- try_enter_child(Dir, Files, Cfgs) ->
- case lists:member("src", Files) of
- false ->
- Cfgs;
- true ->
- get_all_cfgs(filename:join([Dir, "src"]), Cfgs)
- end.
|