DataSource.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /*
  2. * This source file is part of libRocket, the HTML/CSS Interface Middleware
  3. *
  4. * For the latest information, see http://www.librocket.com
  5. *
  6. * Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in
  16. * all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. *
  26. */
  27. #ifndef ROCKETCONTROLSDATASOURCE_H
  28. #define ROCKETCONTROLSDATASOURCE_H
  29. #include "Header.h"
  30. #include "../Core/String.h"
  31. #include <list>
  32. #include <map>
  33. namespace Rocket {
  34. namespace Controls {
  35. class DataSourceListener;
  36. /**
  37. Generic object that provides a database-like interface for requesting rows from a table.
  38. @author Robert Curry
  39. */
  40. class ROCKETCONTROLS_API DataSource
  41. {
  42. public:
  43. DataSource(const Rocket::Core::String& name = "");
  44. virtual ~DataSource();
  45. const Rocket::Core::String& GetDataSourceName();
  46. static DataSource* GetDataSource(const Rocket::Core::String& data_source_name);
  47. /// Fetches the contents of one row of a table within the data source.
  48. /// @param[out] row The list of values in the table.
  49. /// @param[in] table The name of the table to query.
  50. /// @param[in] row_index The index of the desired row.
  51. /// @param[in] columns The list of desired columns within the row.
  52. virtual void GetRow(Rocket::Core::StringList& row, const Rocket::Core::String& table, int row_index, const Rocket::Core::StringList& columns) = 0;
  53. /// Fetches the number of rows within one of this data source's tables.
  54. /// @param[in] table The name of the table to query.
  55. /// @return The number of rows within the specified table.
  56. virtual int GetNumRows(const Rocket::Core::String& table) = 0;
  57. void AttachListener(DataSourceListener* listener);
  58. void DetachListener(DataSourceListener* listener);
  59. virtual void* GetScriptObject() const;
  60. static const Rocket::Core::String CHILD_SOURCE;
  61. static const Rocket::Core::String DEPTH;
  62. static const Rocket::Core::String NUM_CHILDREN;
  63. protected:
  64. /// Tells all attached listeners that one or more rows have been added to the data source.
  65. /// @param[in] table The name of the table to have rows added to it.
  66. /// @param[in] first_row_added The index of the first row added.
  67. /// @param[in] num_rows_added The number of rows added (including the first row).
  68. void NotifyRowAdd(const Rocket::Core::String& table, int first_row_added, int num_rows_added);
  69. /// Tells all attached listeners that one or more rows have been removed from the data source.
  70. /// @param[in] table The name of the table to have rows removed from it.
  71. /// @param[in] first_row_removed The index of the first row removed.
  72. /// @param[in] num_rows_removed The number of rows removed (including the first row).
  73. void NotifyRowRemove(const Rocket::Core::String& table, int first_row_removed, int num_rows_removed);
  74. /// Tells all attached listeners that one or more rows have been changed in the data source.
  75. /// @param[in] table The name of the table to have rows changed in it.
  76. /// @param[in] first_row_changed The index of the first row changed.
  77. /// @param[in] num_rows_changed The number of rows changed (including the first row).
  78. void NotifyRowChange(const Rocket::Core::String& table, int first_row_changed, int num_rows_changed);
  79. /// Tells all attached listeners that the row structure has completely changed in the data source.
  80. /// @param[in] table The name of the table to have rows changed in it.
  81. void NotifyRowChange(const Rocket::Core::String& table);
  82. /// Helper function for building a result set.
  83. typedef std::map< Rocket::Core::String, Rocket::Core::String > RowMap;
  84. void BuildRowEntries(Rocket::Core::StringList& row, const RowMap& row_map, const Rocket::Core::StringList& columns);
  85. private:
  86. Core::String name;
  87. typedef std::list< DataSourceListener* > ListenerList;
  88. ListenerList listeners;
  89. };
  90. }
  91. }
  92. #endif // ROCKETCONTROLSDATASOURCE_H