/platform/statistics/src/com/intellij/internal/statistic/eventLog/validator/persistence/EventLogTestWhitelistPersistence.java

http://github.com/JetBrains/intellij-community · Java · 150 lines · 131 code · 18 blank · 1 comment · 8 complexity · 2436d6f93642dbc9a299dcbe1b20fce0 MD5 · raw file

  1. // Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
  2. package com.intellij.internal.statistic.eventLog.validator.persistence;
  3. import com.google.gson.Gson;
  4. import com.google.gson.GsonBuilder;
  5. import com.intellij.internal.statistic.eventLog.whitelist.LocalWhitelistGroup;
  6. import com.intellij.internal.statistic.service.fus.EventLogWhitelistParseException;
  7. import com.intellij.internal.statistic.service.fus.FUStatisticsWhiteListGroupsService;
  8. import com.intellij.internal.statistic.service.fus.FUStatisticsWhiteListGroupsService.WLGroup;
  9. import com.intellij.internal.statistic.service.fus.FUStatisticsWhiteListGroupsService.WLGroups;
  10. import com.intellij.internal.statistic.service.fus.FUStatisticsWhiteListGroupsService.WLRule;
  11. import com.intellij.internal.statistic.service.fus.FUStatisticsWhiteListGroupsService.WLVersion;
  12. import com.intellij.openapi.diagnostic.Logger;
  13. import com.intellij.openapi.util.io.FileUtil;
  14. import com.intellij.openapi.util.text.StringUtil;
  15. import com.intellij.util.containers.ContainerUtil;
  16. import org.jetbrains.annotations.NotNull;
  17. import org.jetbrains.annotations.Nullable;
  18. import java.io.File;
  19. import java.io.IOException;
  20. import java.util.*;
  21. public class EventLogTestWhitelistPersistence extends BaseEventLogWhitelistPersistence {
  22. private static final Logger LOG =
  23. Logger.getInstance(EventLogTestWhitelistPersistence.class);
  24. public static final String TEST_RULE = "{util#fus_test_mode}";
  25. public static final String TEST_WHITE_LIST_DATA_FILE = "test-white-list.json";
  26. @NotNull
  27. private final String myRecorderId;
  28. public EventLogTestWhitelistPersistence(@NotNull String recorderId) {
  29. myRecorderId = recorderId;
  30. }
  31. @Override
  32. @Nullable
  33. public String getCachedWhitelist() {
  34. try {
  35. final File file = getWhitelistFile();
  36. if (file.exists()) {
  37. return FileUtil.loadFile(file);
  38. }
  39. }
  40. catch (IOException e) {
  41. LOG.error(e);
  42. }
  43. return null;
  44. }
  45. public void cleanup() {
  46. try {
  47. FileUtil.delete(getWhitelistFile());
  48. }
  49. catch (IOException e) {
  50. LOG.error(e);
  51. }
  52. }
  53. @NotNull
  54. public static WLGroup createGroupWithCustomRules(@NotNull String groupId, @NotNull String rules) {
  55. final String content =
  56. "{\"id\":\"" + groupId + "\"," +
  57. "\"versions\":[ {\"from\" : \"1\"}]," +
  58. "\"rules\":" + rules + "}";
  59. return new GsonBuilder().create().fromJson(content, WLGroup.class);
  60. }
  61. public static void addTestGroup(@NotNull String recorderId, @NotNull LocalWhitelistGroup group) throws IOException {
  62. String groupId = group.getGroupId();
  63. WLGroup whitelistGroup = group.getUseCustomRules()
  64. ? createGroupWithCustomRules(groupId, group.getCustomRules())
  65. : createTestGroup(groupId, Collections.emptySet());
  66. addNewGroup(recorderId, whitelistGroup);
  67. }
  68. private static void addNewGroup(@NotNull String recorderId,
  69. @NotNull WLGroup group) throws IOException {
  70. final EventLogTestWhitelistPersistence persistence = new EventLogTestWhitelistPersistence(recorderId);
  71. final WLGroups whitelist = loadTestWhitelist(persistence);
  72. saveNewGroup(group, whitelist, persistence.getWhitelistFile());
  73. }
  74. public static void saveNewGroup(@NotNull WLGroup group,
  75. @NotNull WLGroups whitelist,
  76. @NotNull File file) throws IOException {
  77. whitelist.groups.stream().
  78. filter(g -> StringUtil.equals(g.id, group.id)).findFirst().
  79. ifPresent(whitelist.groups::remove);
  80. whitelist.groups.add(group);
  81. Gson gson = new GsonBuilder().setPrettyPrinting().create();
  82. FileUtil.writeToFile(file, gson.toJson(whitelist));
  83. }
  84. @NotNull
  85. public static WLGroups loadTestWhitelist(@NotNull BaseEventLogWhitelistPersistence persistence) {
  86. final String existing = persistence.getCachedWhitelist();
  87. if (StringUtil.isNotEmpty(existing)) {
  88. try {
  89. return FUStatisticsWhiteListGroupsService.parseWhiteListContent(existing);
  90. }
  91. catch (EventLogWhitelistParseException e) {
  92. LOG.warn("Failed parsing test whitelist", e);
  93. }
  94. }
  95. return new WLGroups();
  96. }
  97. @NotNull
  98. public static WLGroup createTestGroup(@NotNull String groupId, @NotNull Set<String> eventData) {
  99. final WLGroup group = new WLGroup();
  100. group.id = groupId;
  101. if (group.versions != null) {
  102. group.versions.add(new WLVersion("1", null));
  103. }
  104. final WLRule rule = new WLRule();
  105. rule.event_id = ContainerUtil.newHashSet(TEST_RULE);
  106. final Map<String, Set<String>> dataRules = new HashMap<>();
  107. for (String datum : eventData) {
  108. dataRules.put(datum, ContainerUtil.newHashSet(TEST_RULE));
  109. }
  110. rule.event_data = dataRules;
  111. group.rules = rule;
  112. return group;
  113. }
  114. @NotNull
  115. public File getWhitelistFile() throws IOException {
  116. return getDefaultWhitelistFile(myRecorderId, TEST_WHITE_LIST_DATA_FILE);
  117. }
  118. public void updateTestGroups(@NotNull List<LocalWhitelistGroup> groups) throws IOException {
  119. WLGroups whitelist = new WLGroups();
  120. for (LocalWhitelistGroup group : groups) {
  121. String groupId = group.getGroupId();
  122. if (group.getUseCustomRules()) {
  123. whitelist.groups.add(createGroupWithCustomRules(groupId, group.getCustomRules()));
  124. }
  125. else {
  126. whitelist.groups.add(createTestGroup(groupId, Collections.emptySet()));
  127. }
  128. }
  129. Gson gson = new GsonBuilder().setPrettyPrinting().create();
  130. FileUtil.writeToFile(getWhitelistFile(), gson.toJson(whitelist));
  131. }
  132. }