MSSQLLogData.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSim Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. using System;
  28. using System.Reflection;
  29. using System.Collections.Generic;
  30. using System.Data;
  31. using log4net;
  32. using Mono.Addins;
  33. using OpenSim.Framework;
  34. // Only one attribute per assembly. See: *GridData.cs
  35. // [assembly : Addin]
  36. // [assembly : AddinDependency("OpenSim.Data", "0.5")]
  37. namespace OpenSim.Data.MSSQL
  38. {
  39. /// <summary>
  40. /// An interface to the log database for MSSQL
  41. /// </summary>
  42. [Extension("/OpenSim/GridLogData")]
  43. internal class MSSQLLogData : ILogDataPlugin
  44. {
  45. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  46. /// <summary>
  47. /// The database manager
  48. /// </summary>
  49. public MSSQLManager database;
  50. public void Initialise()
  51. {
  52. m_log.Info("[MSSQLLogData]: " + Name + " cannot be default-initialized!");
  53. throw new PluginNotInitialisedException (Name);
  54. }
  55. /// <summary>
  56. /// Artificial constructor called when the plugin is loaded
  57. /// </summary>
  58. public void Initialise(string connect)
  59. {
  60. // TODO: do something with the connect string
  61. IniFile gridDataMSSqlFile = new IniFile("mssql_connection.ini");
  62. string settingDataSource = gridDataMSSqlFile.ParseFileReadValue("data_source");
  63. string settingInitialCatalog = gridDataMSSqlFile.ParseFileReadValue("initial_catalog");
  64. string settingPersistSecurityInfo = gridDataMSSqlFile.ParseFileReadValue("persist_security_info");
  65. string settingUserId = gridDataMSSqlFile.ParseFileReadValue("user_id");
  66. string settingPassword = gridDataMSSqlFile.ParseFileReadValue("password");
  67. database =
  68. new MSSQLManager(settingDataSource, settingInitialCatalog, settingPersistSecurityInfo, settingUserId,
  69. settingPassword);
  70. using (IDbCommand cmd = database.Query("select top 1 * from logs", new Dictionary<string, string>()))
  71. {
  72. try
  73. {
  74. cmd.ExecuteNonQuery();
  75. }
  76. catch
  77. {
  78. database.ExecuteResourceSql("Mssql-logs.sql");
  79. }
  80. }
  81. }
  82. /// <summary>
  83. /// Saves a log item to the database
  84. /// </summary>
  85. /// <param name="serverDaemon">The daemon triggering the event</param>
  86. /// <param name="target">The target of the action (region / agent UUID, etc)</param>
  87. /// <param name="methodCall">The method call where the problem occured</param>
  88. /// <param name="arguments">The arguments passed to the method</param>
  89. /// <param name="priority">How critical is this?</param>
  90. /// <param name="logMessage">The message to log</param>
  91. public void saveLog(string serverDaemon, string target, string methodCall, string arguments, int priority,
  92. string logMessage)
  93. {
  94. try
  95. {
  96. database.insertLogRow(serverDaemon, target, methodCall, arguments, priority, logMessage);
  97. }
  98. catch
  99. {
  100. // it didn't log, don't worry about it
  101. }
  102. }
  103. /// <summary>
  104. /// Returns the name of this DB provider
  105. /// </summary>
  106. /// <returns>A string containing the DB provider name</returns>
  107. public string Name
  108. {
  109. get { return "MSSQL Logdata Interface"; }
  110. }
  111. /// <summary>
  112. /// Closes the database provider
  113. /// </summary>
  114. public void Dispose()
  115. {
  116. // Do nothing.
  117. }
  118. /// <summary>
  119. /// Returns the version of this DB provider
  120. /// </summary>
  121. /// <returns>A string containing the provider version</returns>
  122. public string Version
  123. {
  124. get { return "0.1"; }
  125. }
  126. }
  127. }