if you are going to go to that much trouble, you may want to learn the C side of FS coding.<div>C++ also is valid in modules.</div><div><br></div><div>I already was leaning away from this global variable thing because it&#39;s not enterprise scalable (N-dimensional) but it was harmless to add the patch.</div>
<div><br></div><div><br></div><div><br></div><div><br><div class="gmail_quote">On Tue, Jun 1, 2010 at 4:00 PM, David Swardstrom <span dir="ltr">&lt;<a href="mailto:dswardstrom@remotelink.com">dswardstrom@remotelink.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">I got so involved in getting the proposed optional third parameter to<br>
setGlobalVariable() that I did not consider all of the possibilities.<br>
<br>
Using the change along with getGlobalVariable() is ok for data that<br>
would only change or for data that does not need to be completely unique.<br>
<br>
I also have a need to have a global counter that can both be incremented<br>
and decremented. This counter is designed to give me more control over the<br>
number of calls than the current mod_limit will provide.<br>
This would be used during a period where they may be several calls<br>
either entering the system, exiting the system, or both.<br>
<br>
It would be nice to have routines that would just increment or decrement<br>
safely. They would be much faster.<br>
<br>
I have spent the last couple of years working with Visual Studio and C++.<br>
The natural solution I would take in this situation would be to use<br>
InterlockedIncrement() and InterlockedDecrement().<br>
In this environment I don&#39;t think I want to propose this.<br>
<br>
What I would like to propose is the following set of routines<br>
(using JavaScript notation):<br>
// Initialize the counter to a specified value<br>
initGlobalCounter(string name of variable, initial value);<br>
<br>
// Add a value to the global counter<br>
addGlobalCounter(string name of variable, value to add);<br>
<br>
// Subtract a value from the global counter<br>
reduceGlobalCounter(string name of variable, value to subtract);<br>
<br>
I am open to suggestions as to names of the routines.<br>
Even though all I need (now) is increment and decrement, since<br>
the code will need to use the Global Variable Mutex locks, it<br>
might as will be more general.<br>
<br>
Regards,<br>
Paul David Swardstrom<br>
<br>
<br>
_______________________________________________<br>
FreeSWITCH-dev mailing list<br>
<a href="mailto:FreeSWITCH-dev@lists.freeswitch.org">FreeSWITCH-dev@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-dev</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-dev" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-dev</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
</blockquote></div><br><br clear="all"><br>-- <br>Anthony Minessale II<br><br>FreeSWITCH <a href="http://www.freeswitch.org/">http://www.freeswitch.org/</a><br>ClueCon <a href="http://www.cluecon.com/">http://www.cluecon.com/</a><br>
Twitter: <a href="http://twitter.com/FreeSWITCH_wire">http://twitter.com/FreeSWITCH_wire</a><br><br>AIM: anthm<br><a href="mailto:MSN%3Aanthony_minessale@hotmail.com">MSN:anthony_minessale@hotmail.com</a><br>GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a><br>
IRC: <a href="http://irc.freenode.net">irc.freenode.net</a> #freeswitch<br><br>FreeSWITCH Developer Conference<br><a href="mailto:sip%3A888@conference.freeswitch.org">sip:888@conference.freeswitch.org</a><br><a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">googletalk:conf+888@conference.freeswitch.org</a><br>
pstn:+19193869900<br>
</div>