Tagged Questions
The circular-reference tag has no wiki summary.
68
votes
9answers
2k views
How did Microsoft create assemblies that have circular references?
In the .NET BCL there are circular references between:
System.dll and System.Xml.dll
System.dll and System.Configuration.dll
System.Xml.dll and System.Configuration.dll
Here's a screenshot from ...
16
votes
4answers
6k views
I have a circular reference. How can I create a weak reference in Objective-C?
I have an object of class Row that needs to release numerous objects of the class Block. Every Block currently has a property that retains an instance variable of class Row. Every Row contains an ...
13
votes
2answers
367 views
Is it possible to create circular references in Clojure?
Ignoring native interop and transients, is it possible to create any data structures in Clojure that contain direct circular references ?
It would seem that immutable data structures can only ever ...
12
votes
6answers
4k views
Json and Circular Reference Exception
I have an object which has a circular reference to another object. Given the relationship between these objects this is the right design.
To Illustrate
Machine => Customer => Machine
As is ...
11
votes
4answers
255 views
Any nice tools for untying knots in Haskell?
I've a data structure with several different types of internal circular linking, making it infinite in the sense of say the cycle command. Are there any interesting modules for collapsing such ...
10
votes
3answers
336 views
Using print_r and var_dump with circular reference
I'm using the MVC framework Symfony, and it seems a lot of the built-in objects I want to debug have circular references. This makes it impossible to print the variables with print_r() or var_dump() ...
9
votes
4answers
226 views
How to perform a sorting according to rules but with repetition of items to solve circular references?
To explain in a clearer way my question I will start by explaining the real-life case I am facing.
I am building a physical panel with many words on it that can be selectively lit, in order to ...
9
votes
5answers
8k views
How to serialize DOM node to JSON?
I want to serialize DOM node or even whole window to JSON.
For example:
>> serialize(document)
-> {
"URL": "http://stackoverflow.com/posts/2303713",
"body": {
...
9
votes
3answers
2k views
javascript, circular references and memory leaks
From what I recall of a not too distant past, Javascript interpreters suffered from memory leaking issues when faced with circular references.
Is it still the case in the latest browsers? (e.g. ...
8
votes
1answer
195 views
How to fix procedure circular reference?
I'm new in the Delphi programming scene and i have trouble calling a procedure in a procedure in my console application.
My simple application is for a item inventory running through a telnet server ...
8
votes
3answers
146 views
Can jQuery.data cause a memory leak?
Would the following piece of code create a memory leak.
According to the jQuery documentation use of the data function avoids memory leaks. It would be useful to confirm whether the following is ...
8
votes
3answers
289 views
How to deal with circular references?
If I have those two projects:
MyCompany.ERP.Billing
MyCompany.ERP.Financial
Billing asks/sends information to Financial and vice-versa. Both are too big so I don't want to put them in a single ...
8
votes
4answers
590 views
.NET Assembly References going all circular on me
Update: Last night, I decided that this is just too much work to change the folder where some reports are saved. My work-around here is to rename the folder, run the batch job I need done, and then ...
8
votes
2answers
558 views
How and when to appropriately use weakref in Python
I have some code where instances of classes have parent<->child references to each other, e.g.:
class Node(object):
def __init__(self):
self.parent = None
self.children = {}
def ...
7
votes
6answers
1k views
getting around circular references in Delphi
Is there a way of getting around circular unit references in Delphi?
Maybe a newer version of delphi or some magic hack or something?
My delphi project has 100 000+ lines of code mostly based on ...
7
votes
8answers
2k views
What solutions are there for circular references?
When using reference counting, what are possible solutions/techniques to deal with circular references?
The most well-known solution is using weak references, however many articels about the subject ...
6
votes
4answers
97 views
Garbage collector and circular reference
Consider these two classes:
public class A
{
B b;
public A(B b) { this.b = b; }
}
public class B
{
A a;
public B() { this.a = new A(this); }
}
If I have classes designed like ...
6
votes
2answers
174 views
How to declare an immutable graph with circular references?
I want to declare a graph of all states where the edges represent contiguous states. I think what I am trying to do might be called "tying the knot" (not sure about that though). It's not working ...
6
votes
4answers
254 views
Are circular references ever necessary?
I've inherited a Visual Studio Solution that contains numerous circular references between Projects.
Is there ever a situation where this is remotely acceptable?
Just trying to confirm my suspicion ...
5
votes
2answers
337 views
Is It possible to perform serialization with circular references?
So, my entity class (written in C#) follows a parent child model where every child object must have a Parent property in which it keeps reference of its Parent.
This Parent property causes issues in ...
5
votes
3answers
1k views
Garbage collection in Perl
Unlike Java, Perl uses reference count for garbage collection. I have tried searching some previous questions which speak about C++ RAII and smart pointers and Java GC but have not understood how Perl ...
5
votes
8answers
4k views
How to avoid circular unit reference?
Imagine the following two classes of a chess game:
TChessBoard = class
private
FBoard : array [1..8, 1..8] of TChessPiece;
...
end;
TChessPiece = class abstract
public
procedure GetMoveTargets ...
4
votes
3answers
122 views
Is there a way to test circular reference in JavaScript?
I'm making a game, and I've come across a problem... When I try to save, JSON fails and reports that circular reference is being made somewhere. I don't think it actually is, I can't see it, so is ...
4
votes
1answer
84 views
What's the best design for this problem with IoC and Circular Reference
I'll try to explain in the simple way.
I have a solution (c# 4.0) that contain 4 projects
Framework
DAL
Domain
WebApplication
So my question is:
Framework is the right place to configure my ...
4
votes
1answer
165 views
scala: circular reference while creating object?
I accidentally ran into a situation like this (the example is simplified to isolate the problem):
abstract class Element(val other: Element)
case object First extends Element(Second)
case object ...
4
votes
1answer
203 views
Endless loop in a code sample on serialization
Have a look at the following code from here.
It's about preserving circular references in a datacontract (object model, object graph, domain model) when serializing in wcf.
class ...
4
votes
1answer
94 views
Are there any static analysis tools that can help detect shared_ptr<> circular references?
Are there any static analysis tools that can help detect shared_ptr<> circular references?
Even if such a tool couldn't detect complicated cases, it would still be useful for eliminating the ...
4
votes
2answers
285 views
POJO with other POJO references
I am working on a API to access data stored in a system. The system contains things like people, appointments and procedures associated with those appointments. My application will strictly be ...
4
votes
1answer
213 views
Encountering self recursive assembly references in the .NET framework
I was writing some C# code recursively walking the referenced assemblies of a base assembly, building up a directed acyclic graph of these references to do a topological sort. I'm doing this by means ...
3
votes
2answers
75 views
in_array on objects with circular references
I'm building an array of objects. I need this array to only contain once instance of a given object, having multiple references to the same object should throw an exception. I'm using the following ...
3
votes
6answers
112 views
Why can't structs contain nullable circular references?
I understand why structs can't contain circular references which lead to logical memory problems, but why doesn't a nullable reference circumvent this limitation? For example:
struct Foo
{
Foo? ...
3
votes
2answers
262 views
Nesting Views within Views in backbone js
I'm working with backbone.js building some complex view relationships, and I'm wondering if there are any problems from a javascript performance standpoint of doing something that looks like this:
...
3
votes
1answer
65 views
Proper care and safety when dealing with Python traceback objects from sys.exc_info()
I'm aware that the sys.exc_info documentation says to take care when dealing with traceback objects, but am still uncertain of how safe or unsafe some cases are. Additionally, the documentation says ...
3
votes
3answers
642 views
How to solve circular reference in json serializer caused by Many TO Many hibernate bidirectional mapping?
I am trying to serialize POJO to JSON but stuck in circular reference problem. I know how to handle one to many and reverse relationships using the @JsonBackReference and @JsonManagedReference.
My ...
3
votes
2answers
578 views
Objective-C: Child-parent type circular references, leaking?
How does one avoid memory leaks in a relationship like this?
@class Node;
@interface Node : NSObject {
Node *parent;
Node *child;
id object;
}
-(id)initWithObject:(id)anObject;
-(id)object;
...
3
votes
1answer
192 views
Delphi: How to move a class out of a unit;avoid circular references
Question: i want to split two classes out to their own file, while avoiding circular references.
i have a unit with some classes (and some enumerations and constants). Anyone will recognize Click ...
3
votes
4answers
375 views
Circular References in Database Design - Should they be avoided?
I am currently developing a database via MS Access 2003 and got stuck at a circular reference problem. Basically, it comes down to the following relationship triangle (it is a simplified form of my ...
3
votes
1answer
487 views
.net dottrace memory profiling usage questions - Filter Circular References
I use DotTrace as memory profiler. I wonder how it can filter circular incoming references?
As for the scenarios that I want to see who the hell holds reference to my object and keep it alive, those ...
3
votes
2answers
326 views
Is there a way to detect and debug circular references when using StructureMap?
Lately I've been using a larger number of smaller objects, because they are simpler and easier to reuse. Most of the time there isn't any problem injecting these objects into one another using ...
3
votes
4answers
984 views
What is the scale of PHP's circular reference problem and should I worry about it?
If I am using a tree structure of nodes similar to the code below, do I have to worry about the circular reference?
I have read that PHP uses a memory allocation mechanism which can make life very ...
2
votes
0answers
51 views
WcfTestClient.exe not able to handle circular reference?
I'm working on a wcf project. Some of my services return objects that contain circular references. The serialization of these objects is handled through setting IsReference to true on DataContract ...
2
votes
2answers
113 views
Mysterious scheme procedure for cycling through lists
There is this procedure giving me trouble:
(define (pro lst)
(define (inner l)
(if (null? (mcdr l))
(set-mcdr! l lst)
(inner (mcdr l))))
(inner lst)
lst)
Using (mlist 1 2 ...
2
votes
2answers
158 views
How to manage circular references in delphi units?
I am using the BeforSignup in the AfterSignup unit in order to be able to call the email variable from within AfterSignup code, finally i enbcountred a problem because i want to make a button which ...
2
votes
1answer
68 views
How to serialize a EF POCO auto-generated object to avoid circular references?
I'm using a library (Telerik) for ASP.NET MVC 3.
I've a problem with all functionnalities which needs to return by AJAX some data:
I'm using EF4 to connect my database, and I've(and need) navigation ...
2
votes
3answers
97 views
Disposing of objects with circular references
My design is as follows:
__main__ references a
a references b
b references a
a is created and then disposed of from __main__
Thus a and b have circular references. However upon del a I would ...
2
votes
1answer
43 views
Will passing a reference to the very object you're using .bind on cause a circular reference
I have a jQuery object, and I'm using .bind() method to assign an event to that object. However I'm also passing a reference to the object itself to the bind method as well like so:
$( document ...
2
votes
1answer
354 views
Best solution for EF 4.1 + MVC + JSON circular reference exception?
I'm using EF 4.1 Database First approach, with T4 template generating my POCO classes in separate assembly. I have repositories for fetching data, and service layer which is used for communication ...
2
votes
3answers
85 views
How can I get all parents' parents as columns for child object in circularly referenced table?
I have a table with columns like
entityID, entityName, parentID
How can i write a query to return all the levels of parents for an entity as to return something like
childentityname, ...
2
votes
2answers
316 views
Serialization Circular exception caused by self-referencing Read-only property
When trying to return an object from a JSON asp.net 3.5SP1 WebService (not WCF, classic asp.net WebService with scriptservice attribute), I have an "A circular reference was detected while serializing ...
2
votes
2answers
537 views
Implementing Bi-Directional relationships in MongoEngine
I'm building a Django application that uses MongoDB and MongoEngine to store data. To present a simplified and version of my problem, say I want to have two classes: User and Page. Each page should ...