emqx_rule_engine_app.erl 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. %%--------------------------------------------------------------------
  2. %% Copyright (c) 2020-2024 EMQ Technologies Co., Ltd. All Rights Reserved.
  3. %%
  4. %% Licensed under the Apache License, Version 2.0 (the "License");
  5. %% you may not use this file except in compliance with the License.
  6. %% You may obtain a copy of the License at
  7. %%
  8. %% http://www.apache.org/licenses/LICENSE-2.0
  9. %%
  10. %% Unless required by applicable law or agreed to in writing, software
  11. %% distributed under the License is distributed on an "AS IS" BASIS,
  12. %% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. %% See the License for the specific language governing permissions and
  14. %% limitations under the License.
  15. %%--------------------------------------------------------------------
  16. -module(emqx_rule_engine_app).
  17. -include("rule_engine.hrl").
  18. -behaviour(application).
  19. -export([start/2]).
  20. -export([stop/1]).
  21. start(_Type, _Args) ->
  22. _ = ets:new(?RULE_TAB, [named_table, public, ordered_set, {read_concurrency, true}]),
  23. _ = ets:new(?RULE_TOPIC_INDEX, [named_table, public, ordered_set, {read_concurrency, true}]),
  24. ok = emqx_rule_events:reload(),
  25. SupRet = emqx_rule_engine_sup:start_link(),
  26. ok = emqx_rule_engine:load_rules(),
  27. RulePath = [RuleEngine | _] = ?KEY_PATH,
  28. emqx_conf:add_handler(RulePath ++ ['?'], emqx_rule_engine),
  29. emqx_conf:add_handler([RuleEngine], emqx_rule_engine),
  30. emqx_rule_engine_cli:load(),
  31. SupRet.
  32. stop(_State) ->
  33. emqx_rule_engine_cli:unload(),
  34. RulePath = [RuleEngine | _] = ?KEY_PATH,
  35. emqx_conf:remove_handler(RulePath ++ ['?']),
  36. emqx_conf:remove_handler([RuleEngine]),
  37. ok = emqx_rule_events:unload(),
  38. ok.