active questions tagged oop - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T23:23:34Zhttp://stackoverflow.com/feeds/tag/oophttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1813643/how-do-you-name-your-reference-implementations-of-an-interface2How do you name your "reference" implementations of an interface?Malax2009-11-28T20:10:09Z2009-11-28T21:12:57Z
<p>Hi StackOverflow!</p>
<p>My question is rather simple and the title states it perfectly: How do you name your "reference" or "basic" implementations of an interface? I saw some naming conventions:</p>
<ul>
<li>FooBarImpl</li>
<li>DefaultFooBar</li>
<li>BasicFooBar</li>
</ul>
<p>What do you use? What are the pros and cons? And where do you put those "reference" implementations? Currently i create an .impl package where the implementations go. More complex implementations which may contain multiple classes go into a .impl.complex package, where "complex" is a short name describing the implementation.</p>
<p>Thank you,
Malax</p>
http://stackoverflow.com/questions/1812472/in-a-php-project-how-do-you-organize-and-access-your-helper-objects2In a PHP project, how do you organize and access your helper objects?Pekka Gaiser2009-11-28T12:56:47Z2009-11-28T16:25:22Z
<p>How do you organize and manage your helper objects like the database engine, user notification, error handling and so on in a PHP based, object oriented project?</p>
<p>Say I have a large PHP CMS.
The CMS is organized in various classes. A few examples:</p>
<ul>
<li>the database object</li>
<li>user management</li>
<li>an API to create/modify/delete items</li>
<li>a messaging object to display messages to the end user</li>
<li>a context handler that takes you to the right page</li>
<li>a navigation bar class that shows buttons</li>
</ul>
<p>etc.</p>
<p>I am dealing with the eternal question, how to best make these objects accessible to each part of the system that needs it.</p>
<p>my first apporach, many years ago was to have a $application global that contained initialized instances of these classes.</p>
<pre><code>global $application;
$application->messageHandler->addMessage("Item successfully inserted");
</code></pre>
<p>I then changed over to the Singleton pattern and a factory function:</p>
<pre><code>$mh =&factory("messageHandler");
$mh->addMessage("Item successfully inserted");
</code></pre>
<p>but I'm not happy with that either. Unit tests and encapsulation become more and more important to me, and in my understanding the logic behind globals/singletons destroys the basic idea of OOP.</p>
<p>Then there is of course the possibility of giving each object a number of pointers to the helper objects it needs, probably the very cleanest, resurce-saving and testing-friendly way but I have doubts about the maintainability of this in the long run. </p>
<p>Most PHP frameworks I have looked into use either the singleton pattern, or functions that access the initialized objects. Both fine approaches, but as I said I'm happy with neither. </p>
<p>I would like to broaden my horizon of what is possible here and what others have done. I am looking for examples, additional ideas and pointers towards resources that discuss this from a long-term, real-world perspective. Keywords to search for are also much appreciated, I am sure this question has been asked on SO more than once.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1812818/overriding-analogclock-in-android0Overriding AnalogClock in Androidvorik2009-11-28T15:38:11Z2009-11-28T15:51:27Z
<p>Hi all,</p>
<p>I want to create an AnalogClock that can display a preset time, given as a parameter.</p>
<p>And I want to draw between the background and the hands. I want to paint the area between the minute-hand and location of the hour-hand at a preset future time. This is to let the user see how much time remains for the current activity.</p>
<p>I thought that I could take the AnalogClock object and extend that. However, when I create a new function that is essentially a copy of one of the old ones, I get errors on the com.android.internal.R.styleable.AnalogClock* objects: "com.android.internal.R cannot be resolved"</p>
<p>How can I import these objects? I've read something about declare-styleable, but I cannot figure out how to apply that to my situation. (Sorry, I'm really a Java n00b)</p>
<p>For instance, the internal objects refer to several graphical things, such as dials, hour_hand and minute_hands.</p>
<p>Here's my code: <a href="http://pastie.org/713276" rel="nofollow">http://pastie.org/713276</a></p>
<p>Any help is very much appreciated, I am stuck after hours of Google.</p>
<p>Thanks,</p>
<p>Ger.</p>
http://stackoverflow.com/questions/1805510/what-is-method-dispatch3What is Method Dispatch?ProfK2009-11-26T20:26:29Z2009-11-28T06:23:06Z
<p>What is Method Dispatch? I can find several concrete examples, but an abstract definition of method dispatch eludes me. Anyone care to venture theirs?</p>
http://stackoverflow.com/questions/1809914/oo-javascript-constructor-pattern-neo-classical-vs-prototypal7OO Javascript constructor pattern: neo-classical vs prototypalCheeso2009-11-27T17:38:43Z2009-11-27T23:38:16Z
<p>I watched <a href="http://google-code-updates.blogspot.com/2009/03/doug-crockford-javascript-good-parts.html" rel="nofollow">a talk by Douglas Crockford on the good parts in Javascript</a> and my eyes
were opened. At one point he said, something like, "Javascript is the only language where good programmers believe they can use it effectively, without learning it." Then I realized, <em>I am that guy.</em> </p>
<p>In that talk, he made some statements that for me, were pretty surprising and insightful. For example, JavaScript is the most important programming language on the planet. Or it is the most popular language on the planet. And, that it is broken in many serious ways. </p>
<p>The most surprising statement he made, for me, was "new is dangerous". He doesn't use it any more. He doesn't use <code>this</code> either. </p>
<p>He presented an interesting pattern for a constructor in Javascript, one that allows for private and public member variables, and relies on neither <code>new</code>, nor <code>this</code>. It looks like this: </p>
<pre><code>// neo-classical constructor
var container = function(initialParam) {
var instance = {}; // empty object
// private members
var privateField_Value = 0;
var privateField_Name = "default";
var privateMethod_M1 = function (a,b,c) {
// arbitrary
};
// initialParam is optional
if (typeof initialParam !== "undefined") {
privateField_Name= initialParam;
}
// public members
instance.publicMethod = function(a, b, c) {
// because of closures,
// can call private methods or
// access private fields here.
};
instance.setValue = function(v) {
privateField_Value = v;
};
instance.toString = function(){
return "container(v='" + privateField_Value + "', n='" + privateField_Name + "')";
};
return instance;
}
// usage
var a = container("Wallaby");
WScript.echo(a.toString());
a.setValue(42);
WScript.echo(a.toString());
var b = container();
WScript.echo(b.toString());
</code></pre>
<p><strong>EDIT</strong>: code updated to switch to lowercase class name.</p>
<p>This pattern has evolved from <a href="http://www.crockford.com/javascript/private.html" rel="nofollow">Crockford's earlier usage models</a>.</p>
<p><em>Question:</em> Do you use this kind of constructor pattern? Do you find it understandable? Do you have a better one?</p>
http://stackoverflow.com/questions/1810556/oo-javascript-good-way-to-combine-prototypal-inheritance-with-private-vars1OO Javascript: good way to combine prototypal inheritance with private vars.Cheeso2009-11-27T20:37:21Z2009-11-27T22:49:08Z
<p>In <a href="http://stackoverflow.com/questions/1809914/oo-javascript-constructor-pattern-neo-classical-vs-prototypal">OO Javascript constructor pattern: neo-classical vs prototypal</a>, I learned that constructors using prototypal inheritance can be 10x faster (or more) than constructors using the so-called <code>neo-classical</code> pattern with closures as proposed by Crockford in his "Good Parts" book and presentations. </p>
<p>For that reason it seems like preferring prototypal inheritance seems like the right thing, in general. </p>
<p><strong>Question</strong> Is there a way to combine prototypal inheritance with the module pattern to allow private variables when necessary? </p>
<p>What I am thinking is:</p>
<pre><code>// makeClass method - By John Resig (MIT Licensed)
function makeClass(){
return function(args){
if ( this instanceof arguments.callee ) {
if ( typeof this.init == "function" )
this.init.apply( this, args.callee ? args : arguments );
} else
return new arguments.callee( arguments );
};
}
// =======================================================
var User = makeClass();
// convention; define an init method and attach to the prototype
User.prototype.init = function(first, last){
this.name = first + " " + last;
};
User.prototype.doWork = function (a,b,c) {/* ... */ };
User.prototype.method2= (function (a,b,c) {
// this code is run once per class
return function(a,b,c) {
// this code gets run with each call into the method
var _v2 = 0;
function inc() {
_v2++;
}
var dummy = function(a,b,c) {
/* ... */
inc();
WScript.echo("doOtherWork(" + this.name + ") v2= " + _v2);
return _v2;
};
var x = dummy(a,b,c);
this.method2 = dummy; // replace self
return x;
};
})();
</code></pre>
<p>That isn't quite right. But it illustrates the point. </p>
<p>Is there a way to do this and is it worth it? </p>
http://stackoverflow.com/questions/1705995/object-oriented-module-definition-for-networking-devices-topology0Object Oriented module/definition for networking devices/topology ?Abhinav2009-11-10T06:28:17Z2009-11-27T22:00:02Z
<p>Is there any module/definition available for a class/schema for representing the topology, connection, access details etc of networking devices ? The intent is to use this for automation, and to manage routers/servers as objects rather than as tcl keyed lists/arrays which gets unwieldy.</p>
http://stackoverflow.com/questions/1807575/multithreaded-java-server-allowing-one-thread-to-access-another-one0Multithreaded Java server: allowing one thread to access another onelukem002009-11-27T09:07:40Z2009-11-27T14:55:30Z
<p>Hopefully the code itself explains the issue here:</p>
<pre><code>class Server {
public void main() {
// ...
ServerSocket serverSocket = new ServerSocket(PORT);
while (true) {
Socket socket = serverSocket.accept();
Thread thread = new Thread(new Session(socket));
thread.start();
}
// ..
}
public static synchronized Session findByUser(String user) {
for (int i = 0; i < sessions.size(); i++) {
Session session = sessions.get(i);
if (session.getUserID().equals(user)) {
return session;
}
}
return null;
}
}
class Session {
public Session(Socket socket) {
attach(socket);
}
public void attach(Socket socket) {
// get socket's input and output streams
// start another thread to handle messaging (if not already started)
}
public void run() {
// ...
// user logs in and if he's got another session opened, attach to it
Session session = Server.findByUser(userId);
if (session != null) {
// close input and output streams
// ...
session.attach(socket);
return;
}
// ..
}
}
</code></pre>
<p>My question here is: <strong>Is it safe to publish session reference in Server.findByUser method, doesn't it violate OOP style, etc?</strong>
Or should I reference sessions through some immutable id and encapsulate the whole thing? Anything else you would change here?</p>
<pre><code>String sessionId = Server.findByUser(userId);
if (sessionId != null && sessionId.length() > 0) {
// close input and output streams
// ...
Server.attach(sessionId, socket);
return;
}
</code></pre>
<p><strong>Thomas:</strong></p>
<p>Thanks for your answer.</p>
<p>I agree, in a <em>real world</em>, it would be a good idea to use dependency injection when creating a new instance of <code>Session</code>, but then probably also with an interface, right (code below)? Even though I probably should have unit tests for that, let's consider I don't. Then I need exactly one instance of Server. <strong>Would it then be a huge OO crime to use static methods instead of a singletone?</strong></p>
<pre><code>interface Server {
Session findByUser(String user);
}
class ServerImpl implements Server {
public Session findByUser(String user) { }
}
class Session {
public Session(Server server, Socket socket) { }
}
</code></pre>
<p>Good point on the <code>attach(...)</code> method - I've never even considered subclassing <code>Session</code> class, that's probably why I haven't thought how risy it might be to call public method in the constructor. But then I actually need some public method to attach session to a different socket, so maybe a pair of methods?</p>
<pre><code>class Session {
public Session(Socket socket) {
attach_socket(socket);
}
public void attach(Socket socket) {
attach_socket(socket);
}
private void attach_socket(Socket socket) {
// ...
}
}
</code></pre>
<p>It's true that allowing clients of Session to call <code>attach(...)</code> doesn't seem right. That's probably one of those serious mehods only the Server should have access to. How do I do it without C++'s friendship relationship though? Somehow inner classes came to my mind, but I haven't given it much thought, so it maybe a completely wrong path.</p>
<p>Everytime I receive a new connection I spawn a new thread (and create a new Session instance associated with it) to handle transmission. That way while the user sends in a login command, Server is ready to accept new connections. Once the user's identity is verified, I check if by any chance he's not already logged in (has another ongoing session). If he is then I <strong>detach the onging session from it's socket, close that socket, attach the ongoing session to current socket and close current session</strong>. Hope this is more clear explanation of what actually happens? Maybe the use of a word <em>session</em> is a bit misfortunate here. What I really have is 4 different objects created for each connection (and 3 threads): socket handler, message sender, message receiver and a session (if it's a good solution that's a different question...). I just tried simplyfing the source code to focus on the question.</p>
<p>I totally agree it makes no sense to iterate over session list when you can use a map. But I'm afraid that's probably one of the smaller issues (believe me) the code I'm working on suffers from. I should've mentioned it's actually some legacy system that, no surprise, quite recently has been discoved to have some concurrency and performance issues. My task is to fix it... Not an easy task when you pretty much got only theoretical knowledge on multithreading or when you merely used it to display a progress bar.</p>
<p>If after this, rather lengthy, clarification you have some more insight on the architecture, I'd be more than willing to listen.</p>
http://stackoverflow.com/questions/1776634/design-and-readbility1Design and Readbility.Neeraj2009-11-21T20:14:47Z2009-11-27T14:46:55Z
<p>Hi all,<br>
I am working on a project written in C++ which involves modification of existing code. The code uses object oriented principles(design patterns) heavily and also complicated stuff like smart pointers.<br>
While trying to understand the code using <code>gdb</code>,I had to be very careful about the various polymorphic functions being called by the various subclasses.</p>
<p>Everyone knows that the intent of using design patterns and other complicated stuff in your code is to make it more reusable i.e maintainable but I personally feel that, it is much easier to understand and debug a procedure oriented code as you definitely know which function will actually be called. </p>
<p>Any insights or tips to handle such situations is greatly appreciated.</p>
<p>P.S: I am relatively less experienced with OOP and large projects.</p>
http://stackoverflow.com/questions/1799484/when-should-and-shouldnt-you-break-away-from-oop-for-speed-performance2When should and shouldn't you break away from OOP for speed/performance?Tom R2009-11-25T19:44:00Z2009-11-27T09:33:09Z
<p>In their developer articles for Android, Google states that you should usually declare public variables rather than private ones with getters and setters to enhance performance on embedded devices (I suppose function calls are more expensive than just writing to an address). </p>
<p>I was wondering - to what extent should performance be sacrificed to stick to the OOP paradigm? And in what other cases does optimisation mean a break-away from 'good' coding practices?</p>
http://stackoverflow.com/questions/7864/why-all-the-active-record-hate30Why all the Active Record hate?Adam Tuttle2008-08-11T15:30:30Z2009-11-27T09:28:43Z
<p>As I learn more and more about OOP, and start to implement various design patterns, I keep coming back to cases where people are hating on <a href="http://en.wikipedia.org/wiki/Active_record_pattern" rel="nofollow">Active Record</a>.</p>
<p>Often, people say that it doesn't scale well (citing Twitter as their prime example) -- but nobody actually explains <strong><em>why</em></strong> it doesn't scale well; and / or how to achieve the pros of AR without the cons (via a similar but different pattern?)</p>
<p>Hopefully this won't turn into a holy war about design patterns -- all I want to know is <strong>**specifically**</strong> what's wrong with Active Record.</p>
<p>If it doesn't scale well, why not?</p>
<p>What other problems does it have?</p>
http://stackoverflow.com/questions/1806981/is-it-ever-justified-to-write-a-fairly-large-database-centric-php-app-procedural3Is it ever justified to write a fairly large, database-centric PHP app procedurally and without MVC?Greg2009-11-27T05:50:24Z2009-11-27T06:17:18Z
<p>Sorry for the rather subjective question, but I was hoping to get an opinion from someone more experienced than myself on this. </p>
<p>I'm pretty far into an ajax-driven PHP application and, while I have pretty good separation between markup and behavior on the client side, my PHP is slowly becoming a bit of a mess. I'm doing alright so far breaking it up into parts and structuring in a way that I don't have too much repetition, but I'm definitely beginning to see how this can become a burden with enough code. So I've been reading about OOP and MVC and now I'm trying to decide whether it's worth refactoring for CodeIgniter or Kohana. Intuitively, it feels like this would be more work than it's worth, but I know I may be singing a different tune in a little while.</p>
<p>In your experience, is it considered absolutely hackish to write a serious application procedurally today, or are there certain kinds of applications that lend themselves better to procedural/structural programming.</p>
http://stackoverflow.com/questions/1805284/better-use-of-methods-or-properties-whats-different0Better use of methods or properties, whats different?snarebold2009-11-26T19:20:01Z2009-11-26T19:38:09Z
<p>Hi</p>
<p>I'm pretty new in OOP but have to develop a big project... Just for imagination, below 2 examples which returns same.</p>
<p>Which one is (more) correct, hmm or cleaner? The Property or the method?
In real I have to return complex datasets from joined tables... I avoid copy the complet query which returns the dataset. Thats why it's just an empty here in this example.</p>
<p>Thanks. </p>
<pre><code>public class House
{
public static DataSet Windows
{
// just for imaging
get
{
DataSet ds = new DataSet(); // Here would be my data set from sql which returns a windows collection.
return ds;
}
set
{
Windows = value;
}
}
public static DataSet GetWindows()
{
DataSet ds = new DataSet(); // Gets same right?
return ds;
}
}
</code></pre>
http://stackoverflow.com/questions/492872/initialize-base-class-in-net1Initialize base class in .NETgalets2009-01-29T18:41:12Z2009-11-26T17:31:11Z
<p>How do I go about if I need to initialize an object's base with existing object? For example, in this scenario:</p>
<pre><code>public class A
{
public string field1;
public string field2;
}
public class B : A
{
public string field3;
public void Assign(A source)
{
this.base = source; // <-- will not work, what can I do here?
}
}
</code></pre>
<p>Assign() method can, obviously assign values to the base class field-by-field, but isn't there a better solution? Since class B inherits from A, there must be a way to just assign A to the B.base</p>
<p>In C++ this would be a trivial thing to do, but I can't seem to grasp how to do this in .NET</p>
http://stackoverflow.com/questions/1804104/how-can-i-represent-implementation-of-a-pattern-in-a-uml-class-diagram0How can I represent implementation of a pattern in a UML class diagram?Tarquila2009-11-26T14:48:53Z2009-11-26T14:51:13Z
<p>In UML, how can I represent that a class implements some design pattern or follows some convention? For example, in Java, that a class follows the JavaBean convention?</p>
http://stackoverflow.com/questions/1801216/what-is-the-difference-between-multiple-dispatch-and-method-overloading1What is the difference between multiple dispatch and method overloading?gnuvince2009-11-26T02:17:42Z2009-11-26T02:24:42Z
<p>In languages like Scala, one can have multiple definitions for one method name by changing the number of parameters and/or the type of the parameters of the method. This is called method overloading.</p>
<p>How is that different from multiple dispatch?</p>
<p>Thank you</p>
http://stackoverflow.com/questions/128573/using-property-on-classmethods6Using property() on classmethodsMark Roddy2008-09-24T17:37:11Z2009-11-26T00:58:17Z
<p>I have a class with two class methods (using the classmethod() function) for getting and setting what is essentially a static variable. I tried to use the property() function with these, but it results in an error. I was able to reproduce the error with the following in the interpreter:</p>
<pre><code>>>> class foo(object):
... _var=5
... def getvar(cls):
... return cls._var
... getvar=classmethod(getvar)
... def setvar(cls,value):
... cls._var=value
... setvar=classmethod(setvar)
... var=property(getvar,setvar)
...
>>> f.getvar()
5
>>> f.setvar(4)
>>> f.getvar()
4
>>> f.var
Traceback (most recent call last):
File "<stdin>", line 1, in ?
TypeError: 'classmethod' object is not callable
>>> f.var=5
Traceback (most recent call last):
File "<stdin>", line 1, in ?
TypeError: 'classmethod' object is not callable
</code></pre>
<p>Is it possible to use the property() function with classmethod decorated functions?</p>
http://stackoverflow.com/questions/1005473/must-dependency-injection-come-at-the-expense-of-encapsulation11Must Dependency Injection come at the expense of Encapsulation?urig2009-06-17T06:58:01Z2009-11-26T00:11:00Z
<p>If I understand correctly, the typical mechanism for Dependency Injection is to inject either through a class' constructor or through a public property (member) of the class. </p>
<p>This exposes the dependency being injected and violates the OOP principle of encapsulation.</p>
<p>Am I correct in identifying this tradeoff? How do you deal with this issue? </p>
<p><em>Please also see my answer to my own question below.</em></p>
http://stackoverflow.com/questions/592943/what-are-the-best-practices-for-determining-the-tasks-of-constructor-initializat1What are the best practices for determining the tasks of Constructor, Initialization and Reset methodsPaxic2009-02-26T23:30:41Z2009-11-25T16:03:55Z
<p>This is a general OOP question although I am designing in Java. I'm not trying to solve a particular problem, just to think through some design principles.<br>
From my experience I have reached the habit segregating object setup into three phases.</p>
<p>The goal is to minimize: extra work, obfuscated code and crippled extensibility.</p>
<p><br><b>Construction</b><br></p>
<ol>
<li>The minimal actions necessary to
create a valid Object, passes an
existence test</li>
<li>Instantiate and initialize only "one time", never to be over-ridden, non variable objects that will not change/vary for the life of the Object</li>
<li>Initialize final members</li>
<li>Essentially a runtime stub </li>
</ol>
<p><strong>Initialization</strong></p>
<ol>
<li>Make the Object useful</li>
<li>Instantiate and initialize publicly accessible members</li>
<li>Instantiate and initialize private members that are variable values</li>
<li>Object should now pass external tests with out generating exceptions (assuming code is correct)</li>
</ol>
<p><strong>Reset</strong></p>
<ol>
<li>Does not instantiate anything</li>
<li>Assigns default values to all variable public/private members </li>
<li>returns the Object to an exact state</li>
</ol>
<p>A Toy example:</p>
<pre><code>public class TestObject {
private int priv_a;
private final int priv_b;
private static int priv_c;
private static final int priv_d = 4;
private Integer priv_aI;
private final Integer priv_bI;
private static Integer priv_cI;
private static final Integer priv_dI = 4;
public int pub_a;
public final int pub_b;
public static int pub_c;
public static final int pub_d = 4;
public Integer pub_aI;
public final Integer pub_bI;
public static Integer pub_cI;
public static final Integer pub_dI = 4;
TestObject(){
priv_b = 2;
priv_bI = new Integer(2);
pub_b = 2;
pub_bI = new Integer(2);
}
public void init() {
priv_a = 1;
priv_c = 3;
priv_aI = new Integer(1);
priv_cI = new Integer(3);
pub_a = 1;
pub_c = 3;
pub_aI = new Integer(1);
pub_cI = new Integer(3);
}
public void reset() {
priv_a = 1;
priv_c = 3;
priv_aI = 1;
priv_cI = 3;
pub_a = 1;
pub_c = 3;
pub_aI = 1;
pub_cI = 3;
}
}
</code></pre>
http://stackoverflow.com/questions/1797109/any-better-way-to-tailor-a-library-than-inheritance0Any better way to tailor a library than inheritance?IK2009-11-25T14:04:35Z2009-11-25T14:17:18Z
<p>Most likely an OO concept question/situation:</p>
<p>I have a library that I use in my program with source files available. I've realized I need to tailor the library to my needs, say I need to modify the behavior of a single functions F in class C, while leaving the original library's source intact, to be able to painlessly upgrade it when needed.</p>
<p>I realize I can make my own class C1 inherited from C, place it in my source tree, and write the function F how I see it fit, replacing all occurrences of</p>
<pre><code>myObj = new C();
</code></pre>
<p>with</p>
<pre><code>myObj = new C1();
</code></pre>
<p>throughout my code.</p>
<p>What is the 'proper' way of doing this? I suspect the inheritance method I described has problems, as the library in its internals would still use C::F instead of my C1::F, and it would be way cooler if I could still refer to C::F not some strange C1::F in my code.</p>
<p>For those that care - the language is PHP5, and I'm kinda OOP newbie :)</p>
http://stackoverflow.com/questions/1796882/php-dealing-with-get-and-post-arrays0PHP - Dealing with GET and POST arrayscesko802009-11-25T13:22:07Z2009-11-25T13:55:56Z
<p>In my webapp I have a page called display.php. The script in this page behaves in different ways depending on POST and GET array content/existence, let's say: If I call this page and GET array isset, the script'll load a record using $_GET['id'], in another case, if no GET isset but isset a ceratin POST key the script'll load a random record from the DB... and so on. </p>
<p>At the top of my page I've added this simple(trivial) code:</p>
<pre><code>//random loading
if(!isset($_GET['id']) && !isset($_POST["MM_update"])){
##
$fresh_call=true;
$saving_call=false;
$pick_a_call=false;
##
$_SESSION['call_id']=time().$_GET['operatore'];
$call_id=$_SESSION['call_id'];
//I need to load a specified record
}else if (isset($_GET['id']) && !isset($_POST["MM_update"])) {
##
$pick_a_call=true;
$saving_call=false;
$fresh_call=false;
##
$_SESSION['call_id']=$_GET['id'];
$call_id=$_SESSION['call_id'];
//update the record
}else if (!isset($_GET['id']) && isset($_POST["MM_update"])){
##
$saving_call=true;
$pick_a_call=false;
$fresh_call=false;
##
$call_id=$_POST['call_id'];
}
</code></pre>
<p>In display.php there's also a form that self-post data to display.php for record update (last condition in the code). </p>
<p>In rest of the script I'm checking $fresh_call, $saving_call, $pick_a_call values to query the db with the right UPDATE/INSERT/SELECT SQL.</p>
<p>I'm not sure about my solution, I would like to design a class that can help me making my script more "clear" and lighter. I think also that this situation is probably a typical proplem to solve in PHP coding.</p>
http://stackoverflow.com/questions/1796055/is-reflection-breaking-the-encapsulation-principle3Is Reflection breaking the encapsulation principle?Sorin Comanescu2009-11-25T10:34:55Z2009-11-25T11:28:14Z
<p>Okay, let's say we have a class defined like</p>
<pre><code>public class TestClass
{
private string MyPrivateProperty { get; set; }
// This is for testing purposes
public string GetMyProperty()
{
return MyPrivateProperty;
}
}
</code></pre>
<p>then we try:</p>
<pre><code>TestClass t = new TestClass { MyPrivateProperty = "test" };
</code></pre>
<p>Compilation fails with <code>TestClass.MyPrivateProperty is inaccessible due to its protection level</code>, as expected.</p>
<p>Try</p>
<pre><code>TestClass t = new TestClass();
t.MyPrivateProperty = "test";
</code></pre>
<p>and compilation fails again, with the same message.</p>
<p>All good until now, we were expecting this.</p>
<p>But then one write:</p>
<pre><code>PropertyInfo aProp = t.GetType().GetProperty(
"MyPrivateProperty",
BindingFlags.NonPublic | BindingFlags.Instance);
// This works:
aProp.SetValue(t, "test", null);
// Check
Console.WriteLine(t.GetMyProperty());
</code></pre>
<p>and here we are, we managed to change a private field.</p>
<p>Isn't it abnormal to be able to alter some object's internal state just by using reflection?</p>
<p><strong>Edit:</strong></p>
<p>Thanks for the replies so far. For those saying "you don't have to use it": what about a class designer, it looks like he can't assume internal state safety anymore?</p>
http://stackoverflow.com/questions/1793484/should-i-use-this-self-or-something-else-for-self-identifiers-in-type-definitio1Should I use, this, self or something else for self identifiers in type definitions?Stringer Bell2009-11-24T22:47:53Z2009-11-24T23:04:37Z
<p>My guess is that "this" is more C#-ish and in F# it's better to use "self".</p>
<p>Are there any required/preferred coding guidelines?</p>
http://stackoverflow.com/questions/1788267/advice-writing-losely-coupled-code-with-agile-methods-or-otherwise2Advice writing Losely Coupled code with Agile methods or otherwiseJohn Baker2009-11-24T06:39:42Z2009-11-24T20:09:59Z
<p>I have been reading Robert C. Martin's (aka Uncle Bob) books very intensely as of late. I have found a lot of the things he talks about to be real life savers for me (small function size, very descriptive names for things, etc). </p>
<p>The one problem I haven't gotten past yet is code coupling. One problem I keep having over and over is that I will create a object, like something that wraps an array for instance. I do will some work on it in one class, but then have to call another class to do work on it in a different class. To the point where I'm passing the same data 3-4 levels deep, and that just doesn't seem to make sense because it's hard to keep tract of all the places this object is getting passed, so when it's time to change it I have a ton of dependencies. This seems like anything but a good practice.</p>
<p>I was wondering if anyone knew of a better way to deal with this, it seems that Bob's advice (though it's probably me misunderstanding it) seems to make it worse because it has me creating lots more classes. Thanks ahead of time. </p>
<p>EDIT: By Request a real world example (yes I totally agree that it is hard to make sense of otherwise):</p>
<pre><code>class ChartProgram () {
int lastItems [];
void main () {
lastItems = getLast10ItemsSold();
Chart myChart = new Chart(lastItems);
}
}
class Chart () {
int lastItems[];
Chart(int lastItems[]) {
this.lastItems = lastItems;
ChartCalulations cc = new ChartCalculations(this.lastItems);
this.lastItems = cc.getAverage();
}
class ChartCalculations {
int lastItems[];
ChartCalculations (int lastItems[]){
this.lastItems = lastItems;
// Okay so at this point I have had to forward this value 3 times and this is
// a simple example. It just seems to make the code very brittle
}
getAverage() {
// do stuff here
}
}
</code></pre>
http://stackoverflow.com/questions/1787291/how-come-in-php-superclasses-can-access-protected-methods-of-their-subclasses4how come in php superclasses can access protected methods of their subclasses?ambertch2009-11-24T01:46:30Z2009-11-24T16:51:11Z
<p>I just noticed this behavior today - weird, I'm pretty sure in java a you can only access protected methods upstream on the inheritance chain since going the other way violates encapsulation.</p>
<p>Was there a reason for this behavior in the language?</p>
http://stackoverflow.com/questions/327955/does-functional-programming-replace-gof-design-patterns46Does Functional Programming Replace GoF Design Patterns?Juliet2008-11-29T20:08:46Z2009-11-24T15:49:21Z
<p>Since I started learning F# and OCaml last year, I've read a huge number of articles which insist that design patterns (especially in Java) are workarounds for the missing features in imperative languages. One article I found <a href="http://www.defmacro.org/ramblings/fp.html" rel="nofollow">makes a fairly strong claim</a>:</p>
<blockquote>
<p>Most people I've met have read the
Design Patterns book by the Gang of
Four. Any self respecting programmer
will tell you that the book is
language agnostic and the patterns
apply to software engineering in
general, regardless of which language
you use. This is a noble claim.
Unfortunately it is far removed from
the truth.</p>
<p>Functional languages are extremely
expressive. <strong>In a functional language
one does not need design patterns
because the language is likely so high
level, you end up programming in
concepts that eliminate design
patterns all together.</strong></p>
</blockquote>
<p>The main features of functional programming include functions as first-class values, currying, immutable values, etc. It doesn't seem obvious to me that OO design patterns are approximating any of those features.</p>
<p>Additionally, in functional languages which support OOP (such as F# and OCaml), it seems obvious to me that programmers using these languages would use the same design patterns found available to every other OOP language. In fact, right now I use F# and OCaml everyday, and there are no striking differences between the patterns I use in these languages vs the patterns I use when I write in Java.</p>
<p>Is there any truth to the claim that functional programming eliminates the need for OOP design patterns? If so, could you post or link to an example of a typical OOP design pattern and its functional equivalent?</p>
http://stackoverflow.com/questions/1790101/php-oop-storing-big-objects-to-be-saved-in-session1PHP - OOP - Storing big objects to be saved in sessioncesko802009-11-24T13:33:36Z2009-11-24T15:45:45Z
<p>I'm trying to set up a new class for my web application, rewriting my code starting from original procedural programming.
Since I need to populate my object using many different(complex) queries, and this object'll be stored in session, I decided to create another static class containing all long queries.</p>
<p>Is it more convenient to define as "static" a function within the same class without creating a new one? My goal is to have an object lighter as much as possible... thanx</p>
http://stackoverflow.com/questions/1358376/php-no-return-from-a-function-in-another-file0PHP No return from a function in another file...KeepingYouAwake2009-08-31T17:12:29Z2009-11-24T13:00:02Z
<p>I have one file with a form, that includes another to process that form. The file with the form calls a function in the included file to write data to the database, and then I return an $insert_id from that post so I can reference it in the output.</p>
<p>For example, when you fill out the form on the page, the data is sent to the db from a separate file, then I want to reference the ID it was given in the original file that I called the function from.</p>
<p>A snippet of the file with the form that includes the db process file:</p>
<pre><code>if (isset($_POST['EC_doPost']))
{
$statusPost = $_POST['EC_statusPost'];
echo "HERE: " . $this->addEvent($title, $location, $linkout, $attendees, $description, $startDate, $startTime, $endDate, $endTime, $accessLevel, $postID) . "There.";
$data = array
(
'post_content' => $output . "TESTING THIS: " . $event_id,
'post_title' => $title,
'post_date' => date('Y-m-d H:i:s'),
'post_category' => $wpdb->escape($this->blog_post_author),
'post_status' => $statusPost,
'post_author' => $wpdb->escape($this->blog_post_author),
);
}
</code></pre>
<p>And here is s the function (in the included file) that should return the insert_id:</p>
<pre><code>function addEvent($title, $location, $linkout, $attendees, $description, $startDate, $startTime, $endDate, $endTime, $accessLevel, $postID)
{
$postID = is_null($postID) ? "NULL" : "'$postID'";
$location = is_null($location) ? "NULL" : "'$location'";
$description = is_null($description) ? "NULL" : "'$description'";
$startDate = is_null($startDate) ? "NULL" : "'$startDate'";
$endDate = is_null($endDate) ? "NULL" : "'$endDate'";
$linkout = is_null($linkout) ? "NULL" : "'$linkout'";
$attendees = is_null($attendees) ? "NULL" : "'$attendees'";
$startTime = is_null($startTime) ? "NULL" : "'$startTime'";
$accessLevel = is_null($accessLevel) ? "NULL" : "'$accessLevel'";
$endTime = is_null($endTime) ? "NULL" : "'$endTime'";
$sql = "INSERT INTO `$this->mainTable` (`id`, `eventTitle`, `eventDescription`, `eventLocation`, `eventLinkout`, `eventAttendees`,`eventStartDate`, `eventStartTime`, `eventEndDate`, `eventEndTime`, `accessLevel`, `postID`) VALUES (NULL , '$title', $description, $location, $linkout, $attendees, $startDate, $startTime, $endDate, $endTime , $accessLevel, $postID);";
$this->db->query($sql);
$landingpage = "'http://www.google.com'";
$status = "'1'";
$title = "'".$title."'";
$addedon = "'".date("Y-m-d")."'";
$sql = "INSERT INTO `$this->eventrTable` (`name`, `description`, `event_date`, `maximum_attendees`, `added_on`, `status`, `landing_page`) VALUES ($title, $description, $startDate, $attendees, $addedon, $status, $landingpage);";
$this->db->query($sql);
$event_id = $this->db->insert_id;
return $event_id;
}
</code></pre>
<p>What I am trying to do is make two Wordpress plugins work together, but it's not going so well just yet. If I make the included file with the function echo the variable, it works, but then I can't get it to work in the original file...</p>
<p>I'm sure it's something dumb, but I'm stumped.</p>
http://stackoverflow.com/questions/1789304/independent-mvc-structure-need-an-advice0Independent MVC structure... need an advicebibi2009-11-24T10:54:39Z2009-11-24T12:05:55Z
<p>hi,
I'm tired of looking after a frame work for mvc implementation.
i want to build a good MVC based structure of my own that will serve me in my projects.
so here is my thinking I'd like to know what do you think.
first of all. here is the folder structure:</p>
<p><a href="http://www.tapuz.co.il/Forums2008/Popups/ShowAttach.aspx?file=http%3A//img2.timg.co.il/forums/1%5F135995768.png&msgid=135995768" rel="nofollow" title="the folder structure">The folder structure</a></p>
<h3>the Admin and the Site folders:</h3>
<p>I assume that the controllers/views in the admin/site and are totally different one from each other,
so it is necessary that they will be in independent in each folder.
if the autoload in the admin or site folder will not find a view/controller in its folder he will look for it in the MVC folder </p>
<p>the model, which is the db layer can be inside the MVC folder because it is shared to the entire project.
a function like get_article_by_id can be used in the site and in the admin as well.</p>
<h3>the MVC folder:</h3>
<p>will hold the entire project models. and shared controllers/views.</p>
<h3>the classes folder:</h3>
<p>will be use as a framework folder, it will hold classes such as mailer,db that will implement php functions</p>
<p>How does that sound to you?</p>
http://stackoverflow.com/questions/1787725/what-is-the-accepted-way-to-enforce-proper-value-in-property-which-depends-on-oth1What is the accepted way to enforce proper value in property which depends on other properties of the same class?YonahW2009-11-24T04:12:39Z2009-11-24T05:27:33Z
<p>Let's say I have a class which has three properties as below. </p>
<pre><code>public class Travel
{
public int MinAirportArrival { get; set; }
public int MinFlightTime { get; set; }
public int TotalTravelTime { get; set; }
}
</code></pre>
<p>TotalTravelTime must be at least the sum of MinAirportArrival and MinFlightTime but could also be more in the event there is a stopover or something of the sort.</p>
<p>It is clear to me that I can put logic in the setter for TotalTravelTime.</p>
<p>My question is regarding the changing of MinFlightTime and MinAirportArrival. Is it right to expect that TotalTravelTime be increased first and if not to throw an exception when one of the others will make the sum larger that TotalTravelTime?</p>
<p>What are my other options for controlling this in a reasonable fashion?</p>
<p>Should I just leave this to the object responsible for saving the state to check a valid property on the class? I may have other logic to put in there as well.</p>
<p>EDIT<br>
I am not storing anywhere an amount for the extra time if there is any so this is not just a matter of adding up a few properties. Just to clarify this class is just a contrived example of the issue I am facing but I think it matches the problem pretty well.</p>