MSSQLLogData.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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 OpenSimulator 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 log4net;
  30. using OpenSim.Framework;
  31. namespace OpenSim.Data.MSSQL
  32. {
  33. /// <summary>
  34. /// An interface to the log database for MSSQL
  35. /// </summary>
  36. internal class MSSQLLogData : ILogDataPlugin
  37. {
  38. private const string _migrationStore = "LogStore";
  39. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  40. /// <summary>
  41. /// The database manager
  42. /// </summary>
  43. public MSSQLManager database;
  44. [Obsolete("Cannot be default-initialized!")]
  45. public void Initialise()
  46. {
  47. m_log.Info("[LOG DB]: " + Name + " cannot be default-initialized!");
  48. throw new PluginNotInitialisedException (Name);
  49. }
  50. /// <summary>
  51. /// Artificial constructor called when the plugin is loaded
  52. /// </summary>
  53. public void Initialise(string connect)
  54. {
  55. if (!string.IsNullOrEmpty(connect))
  56. {
  57. database = new MSSQLManager(connect);
  58. }
  59. else
  60. {
  61. // TODO: do something with the connect string
  62. IniFile gridDataMSSqlFile = new IniFile("mssql_connection.ini");
  63. string settingDataSource = gridDataMSSqlFile.ParseFileReadValue("data_source");
  64. string settingInitialCatalog = gridDataMSSqlFile.ParseFileReadValue("initial_catalog");
  65. string settingPersistSecurityInfo = gridDataMSSqlFile.ParseFileReadValue("persist_security_info");
  66. string settingUserId = gridDataMSSqlFile.ParseFileReadValue("user_id");
  67. string settingPassword = gridDataMSSqlFile.ParseFileReadValue("password");
  68. database =
  69. new MSSQLManager(settingDataSource, settingInitialCatalog, settingPersistSecurityInfo, settingUserId,
  70. settingPassword);
  71. }
  72. //Updating mechanisme
  73. database.CheckMigration(_migrationStore);
  74. }
  75. /// <summary>
  76. /// Saves a log item to the database
  77. /// </summary>
  78. /// <param name="serverDaemon">The daemon triggering the event</param>
  79. /// <param name="target">The target of the action (region / agent UUID, etc)</param>
  80. /// <param name="methodCall">The method call where the problem occured</param>
  81. /// <param name="arguments">The arguments passed to the method</param>
  82. /// <param name="priority">How critical is this?</param>
  83. /// <param name="logMessage">The message to log</param>
  84. public void saveLog(string serverDaemon, string target, string methodCall, string arguments, int priority,
  85. string logMessage)
  86. {
  87. string sql = "INSERT INTO logs ([target], [server], [method], [arguments], [priority], [message]) VALUES ";
  88. sql += "(@target, @server, @method, @arguments, @priority, @message);";
  89. using (AutoClosingSqlCommand command = database.Query(sql))
  90. {
  91. command.Parameters.Add(database.CreateParameter("server", serverDaemon));
  92. command.Parameters.Add(database.CreateParameter("target",target));
  93. command.Parameters.Add(database.CreateParameter("method", methodCall));
  94. command.Parameters.Add(database.CreateParameter("arguments", arguments));
  95. command.Parameters.Add(database.CreateParameter("priority", priority.ToString()));
  96. command.Parameters.Add(database.CreateParameter("message", logMessage));
  97. try
  98. {
  99. command.ExecuteNonQuery();
  100. }
  101. catch (Exception e)
  102. {
  103. //Are we not in a loop here
  104. m_log.Error("[LOG DB] Error logging : " + e.Message);
  105. }
  106. }
  107. }
  108. /// <summary>
  109. /// Returns the name of this DB provider
  110. /// </summary>
  111. /// <returns>A string containing the DB provider name</returns>
  112. public string Name
  113. {
  114. get { return "MSSQL Logdata Interface"; }
  115. }
  116. /// <summary>
  117. /// Closes the database provider
  118. /// </summary>
  119. public void Dispose()
  120. {
  121. database = null;
  122. }
  123. /// <summary>
  124. /// Returns the version of this DB provider
  125. /// </summary>
  126. /// <returns>A string containing the provider version</returns>
  127. public string Version
  128. {
  129. get { return "0.1"; }
  130. }
  131. }
  132. }