// ======================================================================== // Copyright 2007 - Volian Enterprises, Inc. All rights reserved. // Volian Enterprises - Proprietary Information - DO NOT COPY OR DISTRIBUTE // ------------------------------------------------------------------------ // $Workfile: $ $Revision: $ // $Author: $ $Date: $ // // $History: $ // ======================================================================== using System; using System.Data; using System.Data.SqlClient; using Csla; using Csla.Data; using System.Configuration; using System.IO; using System.ComponentModel; using System.Collections.Generic; namespace VEPROMS.CSLA.Library { public delegate void DocumentAuditInfoEvent(object sender); /// /// DocumentAuditInfo Generated by MyGeneration using the CSLA Object Mapping template /// [Serializable()] [TypeConverter(typeof(DocumentAuditInfoConverter))] public partial class DocumentAuditInfo : ReadOnlyBase, IDisposable { public event DocumentAuditInfoEvent Changed; private void OnChange() { if (Changed != null) Changed(this); } #region Log4Net private static readonly log4net.ILog _MyLog = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); #endregion #region Collection private static List _CacheList = new List(); protected static void AddToCache(DocumentAuditInfo documentAuditInfo) { if (!_CacheList.Contains(documentAuditInfo)) _CacheList.Add(documentAuditInfo); // In AddToCache } protected static void RemoveFromCache(DocumentAuditInfo documentAuditInfo) { while (_CacheList.Contains(documentAuditInfo)) _CacheList.Remove(documentAuditInfo); // In RemoveFromCache } private static Dictionary> _CacheByPrimaryKey = new Dictionary>(); private static void ConvertListToDictionary() { while (_CacheList.Count > 0) // Move DocumentAuditInfo(s) from temporary _CacheList to _CacheByPrimaryKey { DocumentAuditInfo tmp = _CacheList[0]; // Get the first DocumentAuditInfo string pKey = tmp.AuditID.ToString(); if (!_CacheByPrimaryKey.ContainsKey(pKey)) { _CacheByPrimaryKey[pKey] = new List(); // Add new list for PrimaryKey } _CacheByPrimaryKey[pKey].Add(tmp); // Add to Primary Key list _CacheList.RemoveAt(0); // Remove the first DocumentAuditInfo } } internal static void AddList(DocumentAuditInfoList lst) { foreach (DocumentAuditInfo item in lst) AddToCache(item); } protected static DocumentAuditInfo GetCachedByPrimaryKey(long auditID) { ConvertListToDictionary(); string key = auditID.ToString(); if (_CacheByPrimaryKey.ContainsKey(key)) return _CacheByPrimaryKey[key][0]; return null; } #endregion #region Business Methods private string _ErrorMessage = string.Empty; public string ErrorMessage { get { return _ErrorMessage; } } protected DocumentAudit _Editable; private IVEHasBrokenRules HasBrokenRules { get { IVEHasBrokenRules hasBrokenRules = null; if (_Editable != null) hasBrokenRules = _Editable.HasBrokenRules; return hasBrokenRules; } } private long _AuditID; [System.ComponentModel.DataObjectField(true, true)] public long AuditID { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] get { return _AuditID; } } private int _DocID; public int DocID { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] get { return _DocID; } } private string _LibTitle = string.Empty; public string LibTitle { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] get { return _LibTitle; } } private byte[] _DocContent; public byte[] DocContent { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] get { return _DocContent; } } private string _DocAscii = string.Empty; public string DocAscii { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] get { return _DocAscii; } } private string _Config = string.Empty; public string Config { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] get { return _Config; } } private DateTime _DTS = new DateTime(); public DateTime DTS { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] get { return _DTS; } } private string _UserID = string.Empty; public string UserID { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] get { return _UserID; } } private string _FileExtension = string.Empty; public string FileExtension { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] get { return _FileExtension; } } private int _DeleteStatus; public int DeleteStatus { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] get { return _DeleteStatus; } } // CSLATODO: Replace base DocumentAuditInfo.ToString function as necessary /// /// Overrides Base ToString /// /// A string representation of current DocumentAuditInfo //public override string ToString() //{ // return base.ToString(); //} // CSLATODO: Check DocumentAuditInfo.GetIdValue to assure that the ID returned is unique /// /// Overrides Base GetIdValue - Used internally by CSLA to determine equality /// /// A Unique ID for the current DocumentAuditInfo protected override object GetIdValue() { return MyDocumentAuditInfoUnique; // Absolutely Unique ID } #endregion #region Factory Methods private static int _DocumentAuditInfoUnique = 0; private static int DocumentAuditInfoUnique { get { return ++_DocumentAuditInfoUnique; } } private int _MyDocumentAuditInfoUnique = DocumentAuditInfoUnique; public int MyDocumentAuditInfoUnique // Absolutely Unique ID - Info { get { return _MyDocumentAuditInfoUnique; } } protected DocumentAuditInfo() {/* require use of factory methods */ AddToCache(this); } private bool _Disposed = false; private static int _CountCreated = 0; private static int _CountDisposed = 0; private static int _CountFinalized = 0; private static int IncrementCountCreated { get { return ++_CountCreated; } } private int _CountWhenCreated = IncrementCountCreated; public static int CountCreated { get { return _CountCreated; } } public static int CountNotDisposed { get { return _CountCreated - _CountDisposed; } } public static int CountNotFinalized { get { return _CountCreated - _CountFinalized; } } ~DocumentAuditInfo() { _CountFinalized++; } public void Dispose() { if (_Disposed) return; _CountDisposed++; _Disposed = true; RemoveFromCache(this); if (!_CacheByPrimaryKey.ContainsKey(AuditID.ToString())) return; List listDocumentAuditInfo = _CacheByPrimaryKey[AuditID.ToString()]; // Get the list of items while (listDocumentAuditInfo.Contains(this)) listDocumentAuditInfo.Remove(this); // Remove the item from the list if (listDocumentAuditInfo.Count == 0) // If there are no items left in the list _CacheByPrimaryKey.Remove(AuditID.ToString()); // remove the list } public virtual DocumentAudit Get() { return _Editable = DocumentAudit.Get(_AuditID); } public static void Refresh(DocumentAudit tmp) { string key = tmp.AuditID.ToString(); ConvertListToDictionary(); if (_CacheByPrimaryKey.ContainsKey(key)) foreach (DocumentAuditInfo tmpInfo in _CacheByPrimaryKey[key]) tmpInfo.RefreshFields(tmp); } protected virtual void RefreshFields(DocumentAudit tmp) { _DocID = tmp.DocID; _LibTitle = tmp.LibTitle; _DocContent = tmp.DocContent; _DocAscii = tmp.DocAscii; _Config = tmp.Config; _DTS = tmp.DTS; _UserID = tmp.UserID; _FileExtension = tmp.FileExtension; _DeleteStatus = tmp.DeleteStatus; _DocumentAuditInfoExtension.Refresh(this); OnChange();// raise an event } public static DocumentAuditInfo Get(long auditID) { //if (!CanGetObject()) // throw new System.Security.SecurityException("User not authorized to view a DocumentAudit"); try { DocumentAuditInfo tmp = GetCachedByPrimaryKey(auditID); if (tmp == null) { tmp = DataPortal.Fetch(new PKCriteria(auditID)); AddToCache(tmp); } if (tmp.ErrorMessage == "No Record Found") { tmp.Dispose(); // Clean-up DocumentAuditInfo tmp = null; } return tmp; } catch (Exception ex) { throw new DbCslaException("Error on DocumentAuditInfo.Get", ex); } } #endregion #region Data Access Portal internal DocumentAuditInfo(SafeDataReader dr) { if (_MyLog.IsDebugEnabled) _MyLog.DebugFormat("[{0}] DocumentAuditInfo.Constructor", GetHashCode()); try { ReadData(dr); } catch (Exception ex) { if (_MyLog.IsErrorEnabled) _MyLog.Error("DocumentAuditInfo.Constructor", ex); throw new DbCslaException("DocumentAuditInfo.Constructor", ex); } } [Serializable()] protected class PKCriteria { private long _AuditID; public long AuditID { get { return _AuditID; } } public PKCriteria(long auditID) { _AuditID = auditID; } } private void ReadData(SafeDataReader dr) { if (_MyLog.IsDebugEnabled) _MyLog.DebugFormat("[{0}] DocumentAuditInfo.ReadData", GetHashCode()); try { _AuditID = dr.GetInt64("AuditID"); _DocID = dr.GetInt32("DocID"); _LibTitle = dr.GetString("LibTitle"); _DocContent = (byte[])dr.GetValue("DocContent"); _DocAscii = dr.GetString("DocAscii"); _Config = dr.GetString("Config"); _DTS = dr.GetDateTime("DTS"); _UserID = dr.GetString("UserID"); _FileExtension = dr.GetString("FileExtension"); _DeleteStatus = dr.GetInt32("DeleteStatus"); } catch (Exception ex) { if (_MyLog.IsErrorEnabled) _MyLog.Error("DocumentAuditInfo.ReadData", ex); _ErrorMessage = ex.Message; throw new DbCslaException("DocumentAuditInfo.ReadData", ex); } } private void DataPortal_Fetch(PKCriteria criteria) { if (_MyLog.IsDebugEnabled) _MyLog.DebugFormat("[{0}] DocumentAuditInfo.DataPortal_Fetch", GetHashCode()); try { using (SqlConnection cn = Database.VEPROMS_SqlConnection) { ApplicationContext.LocalContext["cn"] = cn; using (SqlCommand cm = cn.CreateCommand()) { cm.CommandType = CommandType.StoredProcedure; cm.CommandText = "getDocumentAudit"; cm.Parameters.AddWithValue("@AuditID", criteria.AuditID); cm.CommandTimeout = Database.DefaultTimeout; using (SafeDataReader dr = new SafeDataReader(cm.ExecuteReader())) { if (!dr.Read()) { _ErrorMessage = "No Record Found"; return; } ReadData(dr); } } // removing of item only needed for local data portal if (ApplicationContext.ExecutionLocation == ApplicationContext.ExecutionLocations.Client) ApplicationContext.LocalContext.Remove("cn"); } } catch (Exception ex) { if (_MyLog.IsErrorEnabled) _MyLog.Error("DocumentAuditInfo.DataPortal_Fetch", ex); _ErrorMessage = ex.Message; throw new DbCslaException("DocumentAuditInfo.DataPortal_Fetch", ex); } } #endregion // Standard Refresh #region extension DocumentAuditInfoExtension _DocumentAuditInfoExtension = new DocumentAuditInfoExtension(); [Serializable()] partial class DocumentAuditInfoExtension : extensionBase { } [Serializable()] class extensionBase { // Default Refresh public virtual void Refresh(DocumentAuditInfo tmp) { } } #endregion } // Class #region Converter internal class DocumentAuditInfoConverter : ExpandableObjectConverter { public override object ConvertTo(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destType) { if (destType == typeof(string) && value is DocumentAuditInfo) { // Return the ToString value return ((DocumentAuditInfo)value).ToString(); } return base.ConvertTo(context, culture, value, destType); } } #endregion } // Namespace