summaryrefslogtreecommitdiffstats
path: root/xbmc/interfaces/legacy/Dictionary.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/interfaces/legacy/Dictionary.h')
-rw-r--r--xbmc/interfaces/legacy/Dictionary.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/xbmc/interfaces/legacy/Dictionary.h b/xbmc/interfaces/legacy/Dictionary.h
new file mode 100644
index 0000000..65a4db8
--- /dev/null
+++ b/xbmc/interfaces/legacy/Dictionary.h
@@ -0,0 +1,34 @@
+/*
+ * Copyright (C) 2005-2018 Team Kodi
+ * This file is part of Kodi - https://kodi.tv
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ * See LICENSES/README.md for more information.
+ */
+
+#pragma once
+
+#include "AddonString.h"
+
+#include <map>
+
+namespace XBMCAddon
+{
+ // This is a hack in order to handle int's as strings. The correct fix for
+ // this is to get rid of Alternative all together and make the codegenerator
+ // finally handle overloading correctly.
+ typedef String StringOrInt;
+
+ /**
+ * This is a bit of a hack for dynamically typed languages. In some
+ * cases python addon api calls handle dictionaries with variable
+ * value types. In this case we coerce all of these types into
+ * strings and then convert them back in the api. Yes, this is messy
+ * and maybe we should use the CVariant here. But for now the
+ * native api handles these calls by converting the string to the
+ * appropriate types.
+ */
+ template<class T> class Dictionary : public std::map<String,T> {};
+
+ typedef Dictionary<StringOrInt> Properties;
+}