473,395 Members | 1,791 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Circular Dependencies.

I have the following code (much simplified for this post). Note that
SessionKey uses DataAccess, and DataAccess requires SessionKey in it's
constructor.

Public Class SessionKey
Public IsValidSession as Boolean

Sub New(UserName, Password)
' Create session, including calls on DataAccess
' to validate username/password

IsValidSession = True
Dim DataAccess as New DataAccess(Me)

' Set IsValidSesion = False if usercode/password is invalid.

End Sub
End Class

Public Class DataAccess
Sub New(SessionKey)
If Not SessionKey.IsValidSession then
Throw New Exception ("Not a valid session!")
End If
End Sub

Function ExecuteSQL(SQL) As DataSet
'execute some SQL

End Function

End Class

It works great, but does this qualify as a circular dependency?
What's wrong with having a circular dependency in the first place?
Memory leaks? Performance problems? I understand that circular
dependencies can be a symptom of poorly designed class libraries, but
in this case, the class design seems fine. Should I take the time to
create a 3rd class that SessionKey and DataAccess inherit from?

Thanks,

Henry
Jul 21 '05 #1
1 2077
If you don't mind your class design, then it won't have a problem. Circular
dependencies can be a problem when the classes are in different assemblies.
Circular references used to be more a problem, but the GC handled them just
fine now. A recursive call might result in your classes if someone isn't
careful (suppose in one constructor, you call the other, and vice versa) --
however those will result in a stack overflow after taking full CPU for a
bit, so they'll be noticed when they happen.

-mike
MVP

"Henry Miller" <uw**@yahoo.com> wrote in message
news:49**************************@posting.google.c om...
I have the following code (much simplified for this post). Note that
SessionKey uses DataAccess, and DataAccess requires SessionKey in it's
constructor.

Public Class SessionKey
Public IsValidSession as Boolean

Sub New(UserName, Password)
' Create session, including calls on DataAccess
' to validate username/password

IsValidSession = True
Dim DataAccess as New DataAccess(Me)

' Set IsValidSesion = False if usercode/password is invalid.

End Sub
End Class

Public Class DataAccess
Sub New(SessionKey)
If Not SessionKey.IsValidSession then
Throw New Exception ("Not a valid session!")
End If
End Sub

Function ExecuteSQL(SQL) As DataSet
'execute some SQL

End Function

End Class

It works great, but does this qualify as a circular dependency?
What's wrong with having a circular dependency in the first place?
Memory leaks? Performance problems? I understand that circular
dependencies can be a symptom of poorly designed class libraries, but
in this case, the class design seems fine. Should I take the time to
create a 3rd class that SessionKey and DataAccess inherit from?

Thanks,

Henry

Jul 21 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

12
by: jinal jhaveri | last post by:
Hi All, I have one question regarding circular inheritance I have 3 files 1) A.py , having module A and some other modules 2) B.py having module B and some other modules 3) C.py having...
8
by: Tim Tyler | last post by:
Like C, Python seems to insist I declare functions before calling them - rather than, say, scanning to the end of the current script when it can't immediately find what function I'm referring to. ...
2
by: ernesto basc?n pantoja | last post by:
Hi everybody: I'm implementing a general C++ framework and I have a basic question about circular dependencies: I am creating a base class Object, my Object class has a method defined as:...
3
by: Keith F. | last post by:
Visual Studio doesn't allow circular references between projects. I have a situation where I need to allow 2 projects to reference each other. Is there any way to make Visual Studio allow this? ...
1
by: Henry Miller | last post by:
I have the following code (much simplified for this post). Note that SessionKey uses DataAccess, and DataAccess requires SessionKey in it's constructor. Public Class SessionKey Public...
7
by: barias | last post by:
Although circular dependencies are something developers should normally avoid, unfortunately they are very easy to create accidentally between classes in a VS project (i.e. circular compile-time...
8
by: nyhetsgrupper | last post by:
I have written a windows service and want to expose a web based user interface for this service. I then wrote a class library containing a ..net remoting server. The class library have a method...
5
by: =?Utf-8?B?Qm9i?= | last post by:
I have a table of dependencies and want to check to see if the dependencies cause a circular reference. Any sugesstions on how to do this using c#. Example, ID DependsOnID 1 2 1 ...
6
by: Mosfet | last post by:
Hi, I have two classes, let's call them class A and class B with mutual dependencies as shown below and where implementation is inside .h (no cpp) #include "classB.h" class A {
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.