TraceAvCasterStore.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. /*\
  2. |*| Copyright 2015-2016 bill-auger <https://github.com/bill-auger/av-caster/issues>
  3. |*|
  4. |*| This file is part of the AvCaster program.
  5. |*|
  6. |*| AvCaster is free software: you can redistribute it and/or modify
  7. |*| it under the terms of the GNU General Public License version 3
  8. |*| as published by the Free Software Foundation.
  9. |*|
  10. |*| AvCaster is distributed in the hope that it will be useful,
  11. |*| but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. |*| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. |*| GNU General Public License for more details.
  14. |*|
  15. |*| You should have received a copy of the GNU General Public License
  16. |*| along with AvCaster. If not, see <http://www.gnu.org/licenses/>.
  17. \*/
  18. #ifndef _TRACEAVCASTERSTORE_H_
  19. #define _TRACEAVCASTERSTORE_H_
  20. #ifdef DEBUG_TRACE
  21. # include "Trace.h"
  22. /* persistence */
  23. # define DEBUG_TRACE_VERIFY_STORED_CONFIG \
  24. String not_found_msg = "stored config not found - restoring defaults" ; \
  25. String invalid_msg = "stored config invalid - restoring defaults" ; \
  26. String corrupt_msg = "stored config corrupt - pruning duplicated nodes" ; \
  27. String upgraded_msg = "upgrading config version from v" + String(stored_version) + \
  28. " to v" + String(CONFIG::CONFIG_VERSION) ; \
  29. String success_msg = "stored config parsed successfully v" + String(stored_version) ; \
  30. Trace::TraceConfig("looking for stored config at " + this->storageFile.getFullPathName()) ; \
  31. Trace::TraceConfig((!was_storage_found ) ? not_found_msg : \
  32. (!is_root_valid ) ? invalid_msg : \
  33. (!has_canonical_nodes) ? corrupt_msg : \
  34. (!do_versions_match ) ? upgraded_msg : success_msg) ;
  35. # define DEBUG_TRACE_VERIFY_PRESET \
  36. if (!this->config.isValid()) Trace::TraceError("invalid preset node") ; \
  37. else Trace::TraceMissingNode(this->config , CONFIG::NETWORK_ID) ;
  38. # define DEBUG_TRACE_SANITIZE_PRESETS \
  39. String npresets = String(this->presets.getNumChildren() - CONFIG::N_STATIC_PRESETS) ; \
  40. Trace::TraceConfig("found (" + npresets + ") user-defined presets") ;
  41. # define DEBUG_TRACE_VERIFY_MISSING_NODE \
  42. Trace::TraceMissingNode(config_store , a_node_id) ;
  43. # define DEBUG_TRACE_VERIFY_MISSING_PROPERTY \
  44. Trace::TraceMissingProperty(config_store , a_key , a_default_value) ;
  45. # define DEBUG_TRACE_SANITIZE_INT_PROPERTY \
  46. String relation = String(min_value) + " <= " + String(a_value) + " <= " + String(max_value) ; \
  47. String node_id = STRING(config_store.getType()) ; String property_id = STRING(a_key) ; \
  48. if (a_value < min_value || a_value > max_value) \
  49. Trace::TraceConfig("value (" + relation + ") out of range for '" + \
  50. node_id + "['" + property_id + "'] - removing" ) ;
  51. # define DEBUG_TRACE_FILTER_ROGUE_KEY \
  52. if (!persistent_keys.contains(property_id)) \
  53. Trace::TraceConfig("removing rogue property '" + String(property_id) + \
  54. "' from '" + STRING(parent_node.getType()) + "'") ;
  55. # define DEBUG_TRACE_FILTER_ROGUE_NODE \
  56. if (!persistent_node_ids.contains(node_id)) \
  57. Trace::TraceConfig("removing rogue node '" + String(node_id) + \
  58. "' from '" + STRING(parent_node.getType()) + "'") ;
  59. # define DEBUG_TRACE_DUMP_CONFIG_ROOT \
  60. DEBUG_TRACE_DUMP_CONFIG(this->root , "root" )
  61. # define DEBUG_TRACE_DUMP_CONFIG_PRESETS \
  62. DEBUG_TRACE_DUMP_CONFIG(this->presets , "presets" )
  63. # define DEBUG_TRACE_DUMP_CONFIG_VOLATILE \
  64. DEBUG_TRACE_DUMP_CONFIG(this->config , "volatile")
  65. # define DEBUG_TRACE_DUMP_CONFIG_NETWORK \
  66. DEBUG_TRACE_DUMP_CONFIG(this->network , "network" )
  67. # define DEBUG_TRACE_DUMP_CONFIG_CHATTERS \
  68. DEBUG_TRACE_DUMP_CONFIG(this->chatters , "chatters")
  69. # define DEBUG_TRACE_DUMP_CONFIG_CAMERAS \
  70. DEBUG_TRACE_DUMP_CONFIG(this->cameras , "cameras" )
  71. # define DEBUG_TRACE_DUMP_CONFIG_AUDIOS \
  72. DEBUG_TRACE_DUMP_CONFIG(this->audios , "audios" )
  73. # define DEBUG_TRACE_DUMP_CONFIG_ALL \
  74. DEBUG_TRACE_DUMP_CONFIG_ROOT \
  75. DEBUG_TRACE_DUMP_CONFIG_PRESETS \
  76. DEBUG_TRACE_DUMP_CONFIG_VOLATILE \
  77. DEBUG_TRACE_DUMP_CONFIG_NETWORK \
  78. DEBUG_TRACE_DUMP_CONFIG_CHATTERS \
  79. DEBUG_TRACE_DUMP_CONFIG_CAMERAS \
  80. DEBUG_TRACE_DUMP_CONFIG_AUDIOS
  81. # define DEBUG_TRACE_STORE_CONFIG \
  82. String file_path = this->storageFile.getFullPathName() ; \
  83. if (!this->root.isValid()) Trace::TraceError("stored config invalid - not storing") ; \
  84. else Trace::TraceConfig("storing config to " + file_path) ;
  85. /* maintenance */
  86. # define DEBUG_TRACE_LISTEN \
  87. String state = (should_listen) ? "started" : "stopped" ; \
  88. Trace::TraceConfig(state + " listening for model changes") ;
  89. # define DEBUG_TRACE_CONFIG_TREE_CHANGED Trace::TraceTreeChanged(a_node , a_key) ;
  90. # define DEBUG_TRACE_DETECT_CAPTURE_DEVICES \
  91. bool is_bogus_cam = cameras.getChild(0).getType() == Identifier("bogus-cam") ; \
  92. String n_devices = String((is_bogus_cam) ? 0 : \
  93. cameras.getNumChildren()) ; \
  94. Trace::TraceState("detected (" + n_devices + ") capture devices") ;
  95. # define DEBUG_TRACE_STORE_PRESET \
  96. bool is_new = ! preset_store.hasProperty(CONFIG::PRESET_NAME_ID) ; \
  97. String state = String((is_new) ? "creating" : "updating") + " storage for" ; \
  98. Trace::TraceConfig(state + " preset[" + String(preset_idx) + \
  99. "] '" + preset_name + "'") ;
  100. # define DEBUG_TRACE_RENAME_PRESET \
  101. Trace::TraceConfig("renaming preset[" + String(preset_idx) + \
  102. "] from '" + AvCaster::GetPresetName() + \
  103. "' to '" + preset_name + "'") ;
  104. # define DEBUG_TRACE_DELETE_PRESET \
  105. Trace::TraceConfig("deleting preset[" + String(preset_idx) + \
  106. "] '" + AvCaster::GetPresetName() + "'") ;
  107. # define DEBUG_TRACE_LOAD_PRESET \
  108. Trace::TraceConfig("loading preset[" + String(preset_idx) + "] '" + \
  109. STRING(preset_store[CONFIG::PRESET_NAME_ID]) + "'") ;
  110. # define DEBUG_TRACE_DEACTIVATE_CONTROL \
  111. String err = (AvCaster::IsInitialized) ? "error configuring media - " : "" ; \
  112. Trace::TraceConfig(err + "deactivating control toggle '" + STRING(a_key) + "'") ;
  113. # define DEBUG_TRACE_SET_PROPERTY \
  114. if (AvCaster::IsInitialized && AvCaster::DisabledFeatures.contains(a_key)) \
  115. Trace::TraceError("attempting to set disabled media key - ignoring") ;
  116. # define DEBUG_TRACE_SET_VALUE(a_node , a_key , a_value , postfix) \
  117. ValueTree a_parent_node = a_node.getParent() ; \
  118. String node_id = STRING(a_node.getType()) ; \
  119. String key = STRING(a_key ) ; \
  120. String err = (isKnownProperty(a_node , a_key)) ? "" : \
  121. (a_node != this->root && \
  122. a_node != this->config && \
  123. a_node != this->network && \
  124. a_parent_node != this->presets && \
  125. a_parent_node != this->chatters && \
  126. a_parent_node != this->cameras && \
  127. a_parent_node != this->audios ) ? "unknown node '" + node_id + "' " : \
  128. "unknown key '" + key + "' " ; \
  129. String change_msg = Trace::TraceSetValue(a_node , a_key , a_value) ; \
  130. if (AvCaster::IsInitialized && change_msg.isNotEmpty()) \
  131. if (!err.isEmpty()) Trace::TraceError (err + change_msg + postfix) ; \
  132. else Trace::TraceConfigVb( change_msg + postfix) ;
  133. # define DEBUG_TRACE_STORE_SET_VALUE \
  134. DEBUG_TRACE_SET_VALUE(a_node , a_key , a_value , "")
  135. # define DEBUG_TRACE_GUI_SET_VALUE \
  136. DEBUG_TRACE_SET_VALUE(a_node , a_key , a_value , " via GUI")
  137. # define DEBUG_TRACE_UPDATE_CHAT_NICKS_IN \
  138. String network_id = STRING(this->network[CONFIG::NETWORK_ID]) ; \
  139. Trace::TraceConfig("updating '" + network_id + "' n_nicks from (" + \
  140. String(getChatNicks().size()) + ") to (" + \
  141. String(active_nicks .size()) + ")" ) ; \
  142. DEBUG_TRACE_DUMP_CHAT_NICKS(network_id , active_nicks , "active_nicks IN") \
  143. DEBUG_TRACE_DUMP_CHAT_NICKS(network_id , getChatNicks() , "stored_nicks IN")
  144. # define DEBUG_TRACE_UPDATE_CHAT_NICKS_OUT \
  145. DEBUG_TRACE_DUMP_CHAT_NICKS(network_id , active_nicks , "active_nicks OUT") \
  146. DEBUG_TRACE_DUMP_CHAT_NICKS(network_id , getChatNicks() , "stored_nicks OUT")
  147. # define DEBUG_TRACE_ADD_CHAT_NICK \
  148. String nickidx = String(stored_nicks.indexOf(active_nick)) ; \
  149. String nnicks = String(stored_nicks.size() ) ; \
  150. Trace::TraceConfig("adding chatter (" + nickidx + "/" + nnicks + ") '" + \
  151. STRING(chatter_id) + "' (" + active_nick + ")" + " to '" + \
  152. String(network_id) + "' (" + network_id + ")" ) ;
  153. # define DEBUG_TRACE_REMOVE_CHAT_NICK \
  154. String nnicks = String(this->chatters.getNumChildren()) ; \
  155. String nickidx = String(chatter_idx ) ; \
  156. String userid = STRING(chatter_store.getType() ) ; \
  157. if (!active_nicks.contains(stored_nick)) \
  158. Trace::TraceConfig(String("removing chatter (") + nickidx + "/" + nnicks + ") '" + \
  159. userid + "' (" + stored_nick + ")" + " from '" + network_id + "'" ) ;
  160. # define DEBUG_TRACE_DUMP_CHAT_NICKS(networkid , nicks , label) nicks.sort(true) ; \
  161. Trace::TraceConfigVb("\tdumping (" + String(nicks.size()) + ") '" + \
  162. String(networkid) + "' " + label + "=[" + \
  163. nicks.joinIntoString(",") + "]" ) ;
  164. #else // DEBUG_TRACE
  165. # define DEBUG_TRACE_VERIFY_STORED_CONFIG ;
  166. # define DEBUG_TRACE_VERIFY_PRESET ;
  167. # define DEBUG_TRACE_SANITIZE_PRESETS ;
  168. # define DEBUG_TRACE_VERIFY_MISSING_NODE ;
  169. # define DEBUG_TRACE_VERIFY_MISSING_PROPERTY ;
  170. # define DEBUG_TRACE_SANITIZE_INT_PROPERTY ;
  171. # define DEBUG_TRACE_FILTER_ROGUE_KEY ;
  172. # define DEBUG_TRACE_FILTER_ROGUE_NODE ;
  173. # define DEBUG_TRACE_DUMP_CONFIG_ROOT ;
  174. # define DEBUG_TRACE_DUMP_CONFIG_PRESETS ;
  175. # define DEBUG_TRACE_DUMP_CONFIG_VOLATILE ;
  176. # define DEBUG_TRACE_DUMP_CONFIG_NETWORK ;
  177. # define DEBUG_TRACE_DUMP_CONFIG_CHATTERS ;
  178. # define DEBUG_TRACE_DUMP_CONFIG_CAMERAS ;
  179. # define DEBUG_TRACE_DUMP_CONFIG_AUDIOS ;
  180. # define DEBUG_TRACE_DUMP_CONFIG_ALL ;
  181. # define DEBUG_TRACE_STORE_CONFIG ;
  182. # define DEBUG_TRACE_LISTEN ;
  183. # define DEBUG_TRACE_CONFIG_TREE_CHANGED ;
  184. # define DEBUG_TRACE_DETECT_CAPTURE_DEVICES ;
  185. # define DEBUG_TRACE_STORE_PRESET ;
  186. # define DEBUG_TRACE_RENAME_PRESET ;
  187. # define DEBUG_TRACE_DELETE_PRESET ;
  188. # define DEBUG_TRACE_LOAD_PRESET ;
  189. # define DEBUG_TRACE_DEACTIVATE_CONTROL ;
  190. # define DEBUG_TRACE_STORE_SET_VALUE ;
  191. # define DEBUG_TRACE_GUI_SET_VALUE ;
  192. # define DEBUG_TRACE_UPDATE_CHAT_NICKS_IN ;
  193. # define DEBUG_TRACE_UPDATE_CHAT_NICKS_OUT ;
  194. # define DEBUG_TRACE_ADD_CHAT_NICK ;
  195. # define DEBUG_TRACE_REMOVE_CHAT_NICK ;
  196. # define DEBUG_TRACE_DUMP_CHAT_NICKS(chatters_store) ;
  197. #endif // DEBUG_TRACE
  198. #endif // _TRACEAVCASTERSTORE_H_