vote up 0 vote down star

I've just created a Classic ASP version of the FirePHP server side library, that works with the regular old FirePHP console.

see the Github project

However in my implementation, i have to create a global to store the class instance.

I have no idea how to, if it is even possible to create static methods, and thus use the singleton pattern in this language.

flag
..... WHY classis asp? – Shoban Jul 7 at 12:26
Just started work at a new company, and this is what they use. Sad, but hopefully we can move to something a bit more Engineering friendly ^_^ – Jonathan Jul 7 at 12:29
1  
if you guys are still using classic ASP, you might wanna check www.ajaxed.org which is a nice still-maintained classic ASP library – Michal Jul 8 at 3:18
@Michal I was trying to design something just like that, to replace the current setup. Thanks a million – Jonathan Jul 14 at 15:50

2 Answers

vote up 2 vote down check

You can create a singleton by adding your instance into the application object. It is shared amongst all sessions as long as the web app is running.

The following code should demonstrate it:

<%
class MySingleton
  public function getInstance()
    if not isObject(application("MySingleton")) then
      set application("MySingleton") = new MySingleton
    end if
    set getInstance = application("MySingleton")
  end sub
end class

'usage
set instance = (new MySingleton).getInstance()
%>

Important: The example above is just a simulation how you could do it.

link|flag
Am i right in thinking that this wouldn't require me to manually include the page on any other script i want to execute it on? – Jonathan Jul 14 at 15:51
Which page do you mean? The "MySingleton" class needs to be available if you store an instance of it in the application. However if you store a primitive datatype in an application variable then you do not to include anything in your pages – Michal Jul 15 at 4:02
I meant the latter, many thanks! – Jonathan Jul 15 at 9:30
vote up 0 vote down

Singleton is actually considered an anti-pattern by some....

You could rename the class to cFireASP, make the log method the default function and create one global FALog instance in youre include file. This gives you the same API with the advantage that you can pass references to the the FALog instance arround.

To decouple youre app further you could place the instanciation of this instance into a service locator. This way youre other classes don't have to reference various global instance directly, giving you another seam to seperate interface from implementation.

Tip: you reference the response object in your class which will make unittesting hard. Use depency injection or said servicelocator to separate the class from its global environment.

class cSomePageController
  public env
  private response, session, application, server, db_conn
  private sub class_initialize 
    set response = env.response
    set session = env.session
    set application = env.application
    set server = env.server
    set db_conn = env.db_conn
  end sub

  public sub handle_request(request)
    ...
  end sub      
end class
...

set controller = new cSomePageController
set env = new ASPenv    
set controller.env = env
call controller.handle_request(env.request)
' Alternatieve configuration for testing using a mock objects
set mock_env = new MockEnv
set controller.env = mock_env
call controller.handle_request(mock_env.request)
....
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.