一般业务对象实践(以及异常错误-redux)

本文关键字:异常 错误 -redux 业务 对象 | 更新日期: 2023-09-27 17:48:53

最近,我发了一篇关于与我合作的开发人员没有正确使用try-catch块,并且不一致地使用try。。。在关键情况下捕获块,同时忽略异常错误。让我心痛不已。以下是他们这样做的数千段代码中的一个示例(一些被遗漏的代码并不特别重要:

public void AddLocations(BOLocation objBllLocations)
{
    try
    {
        dbManager.Open();
        if (objBllLocations.StateID != 0)
        {
             // about 20 Paramters added to dbManager here
        }
        else
        {
           // about 19 Paramters added here
        }
        dbManager.ExecuteNonQuery(CommandType.StoredProcedure, "ULOCATIONS.AddLocations");
    }
    catch (Exception ex)
    {
    }
    finally
    {
        dbManager.Dispose();
    }
}

在我看来,这绝对是在讨论,不会在出现潜在问题时通知用户。我知道很多人说OOP是邪恶的,添加多层会增加代码行的数量和程序的复杂性,从而可能导致代码维护问题。就我个人而言,我的大部分编程背景在这方面都采取了几乎相同的方法。下面我列出了在这种情况下我通常编码的基本结构,在我的职业生涯中,我已经在许多语言中这样做了,但这个特定的代码是用C#编写的。但下面的代码是我如何使用对象的一个很好的基本想法,它似乎对我有用,但由于这是一些相当智能的编程矿的一个好来源,我想知道我是否应该重新评估我使用了这么多年的技术。主要是因为,在接下来的几周里,我将深入研究外包开发人员提供的不太好的代码,并修改大量代码。我想尽可能把它做好。很抱歉代码引用太长。

// *******************************************************************************************
/// <summary>
/// Summary description for BaseBusinessObject
/// </summary>
/// <remarks>
/// Base Class allowing me to do basic function on a Busines Object
/// </remarks>
public class BaseBusinessObject : Object, System.Runtime.Serialization.ISerializable
{
    public enum DBCode
    {   DBUnknownError,
        DBNotSaved,
        DBOK
    }
    // private fields, public properties
    public int m_id = -1;
    public int ID { get { return m_id; } set { m_id = value; } }
    private int m_errorCode = 0;
    public int ErrorCode { get { return m_errorCode; } set { m_errorCode = value; } }
    private string m_errorMsg = "";
    public string ErrorMessage { get { return m_errorMsg; } set { m_errorMsg = value; } }
    private Exception m_LastException = null;
    public Exception LastException { get { return m_LastException; } set { m_LastException = value;} }
    //Constructors
    public BaseBusinessObject()
    {
        Initialize();
    }
    public BaseBusinessObject(int iID)
    {
        Initialize();
        FillByID(iID);
    }
    // methods
    protected void Initialize()
    {
        Clear();
        Object_OnInit();
        // Other Initializable code here
    }
    public void ClearErrors()
    {
        m_errorCode  = 0; m_errorMsg = ""; m_LastException = null;
    }
    void System.Runtime.Serialization.ISerializable.GetObjectData(
         System.Runtime.Serialization.SerializationInfo info, 
        System.Runtime.Serialization.StreamingContext context)
    {
      //Serialization code for Object must be implemented here
    }
    // overrideable methods
    protected virtual void Object_OnInit()     
    {
        // User can override to add additional initialization stuff. 
    }
    public virtual BaseBusinessObject FillByID(int iID)
    {
        throw new NotImplementedException("method FillByID Must be implemented");
    }
    public virtual void Clear()
    {
        throw new NotImplementedException("method Clear Must be implemented");
    }
    public virtual DBCode Save()
    {
        throw new NotImplementedException("method Save Must be implemented");
    }
}
// *******************************************************************************************
/// <summary>
/// Example Class that might be based off of a Base Business Object
/// </summary>
/// <remarks>
/// Class for holding all the information about a Customer
/// </remarks>
public class BLLCustomer : BaseBusinessObject
{
    // ***************************************
    // put field members here other than the ID
    private string m_name = "";
    public string Name { get { return m_name; } set { m_name = value; } }
    public override void Clear()
    {
        m_id = -1;
        m_name = "";
    }
    public override BaseBusinessObject FillByID(int iID)
    {
        Clear();
        try
        {
            // usually accessing a DataLayerObject, 
            //to select a database record
        }
        catch (Exception Ex)
        {
            Clear();
            LastException = Ex;
            // I can have many different exception, this is usually an enum
            ErrorCode = 3;
            ErrorMessage = "Customer couldn't be loaded";
        }
        return this;
    }
    public override DBCode Save()
    {
        DBCode ret = DBCode.DBUnknownError;
        try
        {
            // usually accessing a DataLayerObject, 
            //to save a database record
            ret = DBCode.DBOK;
        }
        catch (Exception Ex)
        {
            LastException = Ex;
            // I can have many different exception, this is usually an enum
            // i do not usually use just a General Exeption
            ErrorCode = 3;
            ErrorMessage = "some really weird error happened, customer not saved";
            ret = DBCode.DBNotSaved;
        }
        return ret;
    }
}
// *******************************************************************************************
// Example of how it's used on an asp page.. 
    protected void Page_Load(object sender, EventArgs e)
    {
        // Simplifying this a bit, normally, I'd use something like, 
        // using some sort of static "factory" method
        // BaseObject.NewBusinessObject(typeof(BLLCustomer)).FillByID(34);
        BLLCustomer cust = ((BLLCustomer)new BLLCustomer()).FillByID(34);
        if (cust.ErrorCode != 0)
        {
            // There was an error.. Error message is in 
            //cust.ErrorMessage
            // some sort of internal error code is in
            //cust.ErrorCode
            // Give the users some sort of message through and asp:Label.. 
            // probably based off of cust.ErrorMessage
            //log can be handled in the data, business layer... or whatever
            lab.ErrorText = cust.ErrorMessage;
        }
        else
        {
            // continue using the object, to fill in text boxes, 
            // literals or whatever. 
            this.labID = cust.ID.toString();
            this.labCompName = cust.Name;
        }
    }

最重要的是,我的问题是,我是不是用多层和继承的类使事情过于复杂了,还是我的旧概念仍然有效且稳定?现在有更好的方法来完成这些事情吗?我应该按照同事开发人员的建议,直接从asp.net页面代码背后的页面进行SQL调用吗(尽管最后一个解决方案让我觉得恶心),而不是通过业务对象和数据层(数据层没有显示,但基本上包含所有存储的proc调用)。是的,另一位开发人员确实问我,当你可以直接在*.aspx.cs代码隐藏页中键入你需要的东西,然后我就可以享受超过1k行代码隐藏的乐趣时,我为什么要努力分层呢。这里有什么建议?

一般业务对象实践(以及异常错误-redux)

您是否考虑过使用类似于ORM的NHibernate?重新发明轮子是没有意义的。

对我来说,这是一种代码气味:

BLLCustomer cust = ((BLLCustomer)new BLLCustomer()).FillByID(34);

括号太多!

我发现在C#这样的语言中使用活动记录模式总是以眼泪告终,因为它很难进行单元测试。

从代码的第一位到下一位的跳跃是巨大的。是否需要复杂的业务对象层将取决于所讨论的应用程序的大小。不过,至少我们的政策是在处理异常的地方记录异常。如何向用户展示取决于您,但拥有日志是至关重要的,这样开发人员就可以在必要时获得更多信息。

为什么不在Page_Load事件中捕获异常?一些您可能期望并知道如何处理的异常,其他异常应由全局异常处理程序处理。

我的经验法则是,只捕捉我可以处理的错误,或者给用户一些有用的东西,这样,如果他们再做任何事情,都可能对他们有用。我捕获数据库异常;而仅仅是在关于所使用的数据的错误上添加一些更多的信息;一般来说,处理错误的最好方法是在UI堆栈的顶部,而不是在任何地方捕捉错误。只要有一个页面来处理错误,并使用global.asax路由到它就可以处理几乎所有的情况。同时使用状态代码肯定是过时的。它是COM的残余。

是否可以使用抽象基类而不是具体类?这将强制在开发时实现方法,而不是运行时异常。

这里最好的评论是来自舞蹈,你应该只处理当时可以恢复的异常。抓住他人并重新思考是最好的方法(尽管我认为很少这样做)。此外,请确保它们已记录……:)

您的错误处理方式似乎已经过时了。只需创建一个新的exeption并从exeption中继承,这样至少可以获得调用堆栈。然后你应该用nlog或log4net之类的东西登录。今年是2008年,所以使用仿制药。你将不得不做更少的铸造方式。

我会像以前有人说的那样使用ORM。不要试图重新发明轮子。