فهرست منبع

Merge pull request #10459 from zmstone/0420-delete-old-code

0420 delete old code
Zaiming (Stone) Shi 2 سال پیش
والد
کامیت
4d60b0da1d
3فایلهای تغییر یافته به همراه3 افزوده شده و 87 حذف شده
  1. 1 1
      apps/emqx_dashboard/src/emqx_dashboard_desc_cache.erl
  2. 2 2
      scripts/merge-config.escript
  3. 0 84
      scripts/split-i18n-files.escript

+ 1 - 1
apps/emqx_dashboard/src/emqx_dashboard_desc_cache.erl

@@ -36,7 +36,7 @@ init() ->
     OtherLangDesc0 = filelib:wildcard("desc.*.hocon", WwwStaticDir),
     OtherLangDesc = lists:map(fun(F) -> filename:join([WwwStaticDir, F]) end, OtherLangDesc0),
     Files = [EngDesc | OtherLangDesc],
-    ?MODULE = ets:new(?MODULE, [named_table, public, set, {read_concurrency, true}]),
+    ok = emqx_utils_ets:new(?MODULE, [public, ordered_set, {read_concurrency, true}]),
     ok = lists:foreach(fun(F) -> load_desc(?MODULE, F) end, Files).
 
 %% @doc Load the description of the configuration items from the file.

+ 2 - 2
scripts/merge-config.escript

@@ -110,14 +110,14 @@ merge_desc_files_per_lang(Lang) ->
     BaseConf = <<"">>,
     Cfgs0 = get_all_desc_files(Lang),
     Conf = do_merge_desc_files_per_lang(BaseConf, Cfgs0),
-    OutputFile = case Lang of 
+    OutputFile = case Lang of
         "en" ->
             %% en desc will always be in the priv dir of emqx_dashboard
              "apps/emqx_dashboard/priv/desc.en.hocon";
         "zh" ->
             %% so far we inject zh desc as if it's extracted from dashboard package
             %% TODO: remove this when we have zh translation moved to dashboard package
-             "apps/emqx_dashboard/priv/www/static/desc.zh.hocon"
+            "apps/emqx_dashboard/priv/www/static/desc.zh.hocon"
     end,
     ok = filelib:ensure_dir(OutputFile),
     ok = file:write_file(OutputFile, Conf).

+ 0 - 84
scripts/split-i18n-files.escript

@@ -1,84 +0,0 @@
-#!/usr/bin/env escript
-
-%% This script is for one-time use.
-%% will be deleted after the migration is done.
-
--mode(compile).
-
-main([]) ->
-    %% we need to parse hocon
-    %% so we'll just add all compiled libs to path
-    code:add_pathsz(find_ebin_paths("_build/default/lib/*")),
-    Files = filelib:wildcard("rel/i18n/*.hocon"),
-    ok = lists:foreach(fun split_file/1, Files),
-    ok.
-
-find_ebin_paths(DirPattern) ->
-    LibDirs = filelib:wildcard(DirPattern),
-    lists:filtermap(fun add_ebin/1, LibDirs).
-
-add_ebin(Dir) ->
-    EbinDir = filename:join(Dir, "ebin"),
-    case filelib:is_dir(EbinDir) of
-        true -> {true, EbinDir};
-        false -> false
-    end.
-
-split_file(Path) ->
-    {ok, DescMap} = hocon:load(Path),
-    [{Module, Descs}] = maps:to_list(DescMap),
-    try
-        ok = split(Path, Module, <<"en">>, Descs),
-        ok = split(Path, Module, <<"zh">>, Descs)
-    catch
-        throw : already_done ->
-            ok
-    end.
-
-split(Path, Module, Lang, Fields) when is_map(Fields) ->
-    split(Path, Module, Lang, maps:to_list(Fields));
-split(Path, Module, Lang, Fields) when is_list(Fields) ->
-    Split = lists:map(fun({Name, Desc})-> do_split(Path, Name, Lang, Desc) end, Fields),
-    IoData = [Module, " {\n\n", Split, "}\n"],
-    %% assert it's a valid HOCON object
-    {ok, _} = hocon:binary(IoData),
-    %io:format(user, "~s", [IoData]).
-    WritePath = case Lang of
-                    <<"en">> ->
-                        Path;
-                    <<"zh">> ->
-                        rename(Path, "zh")
-                end,
-    ok = filelib:ensure_dir(WritePath),
-    ok = file:write_file(WritePath, IoData),
-    ok.
-
-rename(FilePath, Lang) ->
-    Dir = filename:dirname(FilePath),
-    BaseName = filename:basename(FilePath),
-    filename:join([Dir, Lang, BaseName]).
-
-do_split(_Path, _Name, _Lang, #{<<"desc">> := Desc}) when is_binary(Desc) ->
-    throw(already_done);
-do_split(Path, Name, Lang, #{<<"desc">> := Desc} = D) ->
-    try
-        Label = maps:get(<<"label">>, D, #{}),
-        DescL = maps:get(Lang, Desc),
-        LabelL = maps:get(Lang, Label, undefined),
-        [fmt([Name, ".desc:\n"], DescL),
-        fmt([Name, ".label:\n"], LabelL)
-        ]
-    catch
-        C : E : S->
-            erlang:raise(C, {Path, Name, E}, S)
-    end.
-
-
-tq() ->
-    "\"\"\"".
-
-fmt(_Key, undefined) ->
-    [];
-fmt(Key, Content) ->
-    [Key, tq(), Content, tq(), "\n\n"].
-