active questions tagged callbacks - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T00:27:32Z http://stackoverflow.com/feeds/tag/callbacks http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/611672/pthread-callbacks-interupt-user-input 0 pthread callbacks interupt user input robUK 2009-03-04T17:43:33Z 2009-12-19T06:32:13Z <p>I have written my own stop_watch module. That will create a thread and go to sleep for a period of seconds. Once the seconds have expired it will call a callback function in the main.c and inform the user the time has expired. </p> <p>This is so that the user will only have 3 seconds to enter a digit and they will have to enter 5 digits. If the time expires the program has to stop. </p> <p>2 problems. 1) if they enter the digit in the required time. How can I cancel the thread. I was thinking of using thread_kill or thread_cancel? 2) How can I terminate the in the do_while loop? As the scanf will block while waiting for the user to enter. </p> <p>Many thanks for any suggestions,</p> <p>My code below:</p> <pre><code>#include &lt;pthread.h&gt; #include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; #include "stop_watch.h" struct data_struct *g_data_struct; void timeout_cb(int id) { printf("Digit timeout\n"); free(g_data_struct); } int main() { pthread_t thread_id; unsigned int digit = 0; g_data_struct = (struct data_struct*) calloc(1, sizeof(*g_data_struct)); if(!g_data_struct) { printf("=== failed to allocate memory ===\n"); return 0; } /* start timer for 3 seconds */ g_data_struct-&gt;seconds = 3; g_data_struct-&gt;func_ptr = timeout_cb; thread_id = start_stopwatch(g_data_struct); do { printf("Enter digit: "); scanf("%d", &amp;digit); }while(1); pthread_join(thread_id, NULL); printf("=== End of Program - all threads in ===\n"); free(g_data_struct); return 0; } #include &lt;stdio.h&gt; #include &lt;pthread.h&gt; #include "stop_watch.h" pthread_t thread_id; static id = 10; /* start sleeping and call the callback when seconds have expired */ static void* g_start_timer(void *args) { void (*function_pointer)(int id); int seconds = ((struct data_struct*) args)-&gt;seconds; function_pointer = ((struct data_struct*) args)-&gt;func_ptr; sleep(seconds); (void) (*function_pointer)(id); pthread_exit(NULL); return 0; } /* Will sleep in its own thread for a period of seconds */ int start_stopwatch(struct data_struct *g_data_struct) { int rc = 0; int seconds = g_data_struct-&gt;seconds; printf("=== start_stopwatch(): %d\n", seconds); rc = pthread_create(&amp;thread_id, NULL, g_start_timer, (void *) g_data_struct); if(rc) { printf("=== Failed to create thread\n"); return 1; } return thread_id; } </code></pre> <p>This question is about C99 gcc, by the way.</p> http://stackoverflow.com/questions/1809619/managing-lots-of-callback-recursion-in-nodejs 6 Managing lots of callback recursion in Nodejs Maciek 2009-11-27T16:24:42Z 2009-12-18T01:59:12Z <p>In Nodejs, there are virtually no blocking I/O operations. This means that almost all nodejs IO code involves many callbacks. This applies to reading and writing to/from databases, files, processes, etc. A typical example of this is the following:</p> <pre><code>var useFile = function(filename,callback){ posix.stat(filename).addCallback(function (stats) { posix.open(filename, process.O_RDONLY, 0666).addCallback(function (fd) { posix.read(fd, stats.size, 0).addCallback(function(contents){ callback(contents); }); }); }); }; ... useFile("test.data",function(data){ // use data.. }); </code></pre> <p>I am anticipating writing code that will make <strong>many</strong> IO operations, so I expect to be writing <strong>many</strong> callbacks. I'm quite comfortable with using callbacks, but I'm worried about all the recursion. Am I in danger of running into too much recursion and blowing through a stack somewhere? If I make thousands of individual writes to my key-value store with thousands of callbacks, will my program eventually crash?</p> <p>Am I misunderstanding or underestimating the impact? If not, is there a way to get around this while still using Nodejs' callback coding style?</p> http://stackoverflow.com/questions/1925026/triggers-callbacks-in-ruby-on-rails 0 Triggers/Callbacks in Ruby on Rails Topher Fangio 2009-12-17T22:24:08Z 2009-12-17T23:27:38Z <p>Hello all,</p> <p>We are creating a system in Ruby on Rails and we want to be able to offer our users a bit of control about notifications and actions that can take place when some pre-defined trigger occurs. In addition, we plan on iterating through imported data and allowing our users to configure some actions and triggers based on that data.</p> <p>Let me give you a few examples to better clarify:</p> <pre><code>Trigger - Action ------------------------------------------------------------------------ New Ticket is Created - User receives an e-mail New Ticket Parsed for Keyword 'evil' - Ticket gets auto-assigned to a particular group User Missed 3 Meetings - A ticket is automatically created </code></pre> <p>Ideally, we would like some of the triggers to be configurable. For instance, the last example would possibly let you configure how many meetings were missed before the action took place.</p> <p>I was wondering what patterns might help me in doing this event/callback situation in Ruby on Rails. Also, the triggers and actions may be configurable, but they will be predefined; so, should they be hard coded or stored in the database?</p> <p>Any thoughts would be greatly appreciated. Thanks!</p> <p><strong>Update 1:</strong> After looking at it, I noticed that the badges system on SO is somewhat similar, based on these criteria, I want to do this action. It's slightly different, but I want to be able to easily add new criteria and actions and present them to the users. Any thoughts relating to this?</p> http://stackoverflow.com/questions/1890715/blocking-behavior-of-pygtks-main-loop 0 Blocking behavior of PyGTK's main loop int3 2009-12-11T20:34:13Z 2009-12-15T17:04:05Z <p>My intention was to use pyGTK's main loop to create a function that blocks while it waits for the user's input. The problem I've encountered is best explained in code:</p> <pre><code>#! /usr/bin/python import gtk def test(): retval = True def cb(widget): retval = False gtk.main_quit() window = gtk.Window(gtk.WINDOW_TOPLEVEL) button = gtk.Button("Test") button.connect("clicked", cb) button.show() window.add(button) window.show() gtk.main() return retval if __name__ == "__main__": print test() # prints True when the button is clicked </code></pre> <p>It seems that the exact order of instructions (change value of <code>retval</code>, <em>then</em> exit main loop) isn't being followed here.</p> <p>Is there any way around this, or is this just bad design on my part?</p> http://stackoverflow.com/questions/1896014/rails-how-can-i-access-the-parent-model-of-a-new-records-nested-associations 0 Rails: How can I access the parent model of a new record's nested associations? Sai Emrys 2009-12-13T09:36:01Z 2009-12-14T04:36:12Z <p>Suppose we have the standard Post &amp; Comment models, with Post having <code>accepts_nested_attributes_for :commments</code> and <code>:autosave =&gt; true</code> set.</p> <p>We can create a new post together with some new comments, e.g.:</p> <pre><code>@post = Post.new :subject =&gt; 'foo' @post.comments.build :text =&gt; 'bar' @post.comments.first # returns the new comment 'bar' @post.comments.first.post # returns nil :( @post.save # saves both post and comments simultaneously, in a transaction etc @post.comments.first # returns the comment 'bar' @post.comments.first.post # returns the post 'foo' </code></pre> <p>However, I need to be able to distinguish from within Comment (e.g. from its before_save or validation functions) between</p> <ol> <li>this comment is not attached to a post (which is invalid)</li> <li>this comment is attached to an <em>unsaved</em> post (which is valid)</li> </ol> <p>Unfortunately, merely calling <code>self.post</code> from Comment doesn't work, because per above, it returns nil until after save happens. In a callback of course, I don't (and shouldn't) have access to @post, only to self of the comment in question.</p> <p>So: how can I access the parent model of a new record's nested associations, from the perspective of that nested association model?</p> <p>(FWIW, the actual sample I'm using this with allows people to create a naked "comment" and will then automatically create a "post" to contain it if there isn't one already. I've simplified this example so it's not specific to my code in irrelevant ways.)</p> http://stackoverflow.com/questions/1889805/pass-int-to-a-c-callback 0 pass int to a C callback osc42 2009-12-11T17:59:32Z 2009-12-11T21:09:00Z <p>Why i is not recognized correctly in the callback?</p> <p>I think that maybe because after add_strip() "i" is destroyed, so how could i pass an int to that callback? Thanks.</p> <pre><code>29 void add_strip(int i,char name[30]){ 30 sl[i] = elm_slider_add(win); 31 elm_slider_label_set(sl[i], name); 32 elm_slider_unit_format_set(sl[i], "dB"); 33 elm_slider_span_size_set(sl[i], 60); 34 evas_object_size_hint_align_set(sl[i], 0.5, EVAS_HINT_FILL); 35 evas_object_size_hint_weight_set(sl[i], 0.0, EVAS_HINT_EXPAND); 36 elm_slider_indicator_format_set(sl[i], "%3.0f"); 37 elm_slider_min_max_set(sl[i], 0, 2); 38 elm_slider_inverted_set(sl[i], 1); 39 elm_slider_value_set(sl[i], 0); 40 elm_object_scale_set(sl[i], 1.0); 41 elm_slider_horizontal_set(sl[i], 0); 42 elm_box_pack_end(bx, sl[i]); 43 evas_object_show(sl[i]); 44 evas_object_smart_callback_add(sl[i], "changed", vol_changed, &amp;i); // &lt;-------------- 45 } </code></pre> <p>And the callback is:</p> <pre><code>13 static void 14 vol_changed(void *data, Evas_Object *obj, void *event_info) 15 { 16 int n = *((int*)data); 17 printf("%d\n", &amp;n); // &lt;------------------------------------- this prints always -1078364196 (seems an address) 18 19 if(lo_send(dest, "/fader/0", "f", elm_slider_value_get(sl[0]))==-1) 20 printf("OSC error %d: %s\n", lo_address_errno(dest), lo_address_errstr(d est)); 21 } </code></pre> http://stackoverflow.com/questions/1154734/is-there-a-way-to-get-upload-progress-using-the-httppostedfile-class 1 Is there a way to get upload progress using the HttpPostedFile class? Robert Harvey 2009-07-20T17:10:28Z 2009-12-02T20:13:44Z <p>I want to use the <a href="http://msdn.microsoft.com/en-us/library/system.web.httppostedfile.aspx" rel="nofollow">HttpPostedFile</a> Class to upload one or more large files to an ASP.NET MVC controller from a web page. Using this class, uploaded files larger than 256 KB are buffered to disk, rather than held in server memory. </p> <p>My understanding is that it can be done like this:</p> <pre><code>if (context.Request.Files.Count &gt; 0) { string tempFile = context.Request.PhysicalApplicationPath; for(int i = 0; i &lt; context.Request.Files.Count; i++) { HttpPostedFile uploadFile = context.Request.Files[i]; if (uploadFile.ContentLength &gt; 0) { uploadFile.SaveAs(string.Format("{0}{1}{2}", tempFile,"Upload\\", uploadFile.FileName)); } } } </code></pre> <p>Is there a way to set a callback, or using some other method, return status periodically to the web page via AJAX or JSON so that a progress bar and percent completed can be displayed? What would the code look like?</p> http://stackoverflow.com/questions/1834469/how-to-implement-automatic-properties-in-vs-2005-for-a-delegate-callback 0 How to implement automatic properties in VS 2005 for a delegate callback Ducain 2009-12-02T17:23:31Z 2009-12-02T17:30:32Z <p>I'm attempting to get the TwainDotNet solution I found here (<a href="http://stackoverflow.com/questions/476084/c-twain-interaction">http://stackoverflow.com/questions/476084/c-twain-interaction</a>) to compile, and I'm at my wits end.</p> <p>This solution was obviously developed in VS 2008, and I'm working in 2005 (no choice at the moment). I've spent probably WAY to much time getting this all to compile in 2005, and I've whittled my errors down to two, both errors being the same one issue.</p> <pre><code>using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; namespace TwainDotNet.WinFroms { /// &lt;summary&gt; /// A windows message hook for WinForms applications. /// &lt;/summary&gt; public class WinFormsWindowMessageHook : IWindowsMessageHook, IMessageFilter { IntPtr _windowHandle; bool _usingFilter; public WinFormsWindowMessageHook(Form window) { _windowHandle = window.Handle; } public bool PreFilterMessage(ref Message m) { if (FilterMessageCallback != null) { bool handled = false; FilterMessageCallback(m.HWnd, m.Msg, m.WParam, m.LParam, ref handled); return handled; } return false; } public IntPtr WindowHandle { get { return _windowHandle; } } public bool UseFilter { get { return _usingFilter; } set { if (!_usingFilter &amp;&amp; value == true) { Application.AddMessageFilter(this); _usingFilter = true; } if (_usingFilter &amp;&amp; value == false) { Application.RemoveMessageFilter(this); _usingFilter = false; } } } public FilterMessage FilterMessageCallback { get; set; } } } </code></pre> <p>The compile fails on the property accessing the delegate instance.</p> <p><strong>ERROR: 'TwainDotNet.WinFroms.WinFormsWindowMessageHook.FilterMessageCallback.get' must declare a body because it is not marked abstract or extern</strong></p> <p>Here is the interface IWindowsMessageHook that this class implements:</p> <pre><code>using System; using System.Collections.Generic; using System.Text; namespace TwainDotNet { public interface IWindowsMessageHook { /// &lt;summary&gt; /// Gets or sets if the message filter is in use. /// &lt;/summary&gt; bool UseFilter { get; set; } /// &lt;summary&gt; /// The delegate to call back when the filter is in place and a message arrives. /// &lt;/summary&gt; FilterMessage FilterMessageCallback { get; set; } /// &lt;summary&gt; /// The handle to the window that is performing the scanning. /// &lt;/summary&gt; IntPtr WindowHandle { get; } } public delegate IntPtr FilterMessage(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled); } </code></pre> <p>I admit to being a delegate newbie, and I'm at a loss here. How can I duplicate this functionality in VS 2005?</p> <p>Thanks for the time.</p> http://stackoverflow.com/questions/1812585/beforesend-in-getjson 0 beforeSend in $.getJSON Quintin Par 2009-11-28T14:01:58Z 2009-11-28T22:40:48Z <p>How do I use <code>beforeSend</code> callback in <code>$.getJSON</code>(cross domain). </p> <p>More specifically <code>$.getJSON</code> is call is to a YQL service Like </p> <blockquote> <p>select * from html where url=”<a href="http://www.yahoo.com" rel="nofollow">http://www.yahoo.com</a>”</p> </blockquote> http://stackoverflow.com/questions/183214/javascript-callback-scope 6 JavaScript Callback Scope Chris MacDonald 2008-10-08T14:56:09Z 2009-11-27T17:27:43Z <p>I'm having some trouble with plain old JavaScript (no frameworks) in referencing my object in a callback function.</p> <pre><code>function foo(id) { this.dom = document.getElementById(id); this.bar = 5; var self = this; this.dom.addEventListener("click", self.onclick, false); } foo.prototype = { onclick : function() { this.bar = 7; } }; </code></pre> <p>Now when I create a new object (after the DOM has loaded, with a span#test)</p> <pre><code>var x = new foo('test'); </code></pre> <p>The 'this' inside the onclick function points to the span#test and not the foo object.</p> <p>How do I get a reference to my foo object inside the onclick function?</p> http://stackoverflow.com/questions/1803982/how-to-tell-difference-between-python-class-and-object 0 How to tell difference between python class and object? [closed] mrdobolina 2009-11-26T14:28:09Z 2009-11-26T14:37:54Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1802480/how-to-identiy-whether-a-variable-is-a-class-or-an-object">How to identiy whether a variable is a class or an object</a> </p> </blockquote> <p>I have a function which accepts 'things' which it calls.</p> <pre><code>def run_it(thingy): result = thingy(something) </code></pre> <p>However, I'd like <code>run_it()</code> to accept both classes and objects/functions, and if it is a class, instantiate it first:</p> <pre><code>def run_it(thingy): if it_is_a_class: instance = thingy(something) result = instance() else: result = thingy(something) class Thingy1(object): def __init__(self, something): self.something = something def __call__(self): print self.something class Thingy2(object): def __call__(self. something): print something # First example, call with class: result = run_it(Thingy1) # Second example, call with object: thingy = Thingy2() result = run_it(thingy) </code></pre> <p>How do I implement <code>it_is_a_class</code> in the <code>run_it()</code> function?</p> http://stackoverflow.com/questions/1324260/activescaffold-records-manipulation-in-a-before-filter 0 activescaffold @records manipulation in a before filter Chris Drappier 2009-08-24T19:31:11Z 2009-11-23T23:30:04Z <p>Hi All,</p> <p>I would like to call </p> <pre><code>@records.collect{|r| r.set_some_virtual_attribute(@context)} </code></pre> <p>before rendering an activescaffold index view, but if I do this : </p> <pre><code>controller FooController &lt; ApplicationController before_filter :change_things, :only =&gt; :index active_scaffold :foos protected def change_things @records.collect{|r| r.set_some_virtual_attribute(@context)} end end </code></pre> <p>I get :</p> <pre><code> You have a nil object when you didn't expect it! You might have expected an instance of Array. The error occurred while evaluating nil.collect </code></pre> <p>when calling the index view. The same thing happens if I put the filter after the ActiveScaffold call. I would be fine with taking a different approach of some sort, but the bottom line is that I need to set a virtual attribute of each object in @records based on some context from the controller for display in the final table</p> <p>thx</p> <p>-C</p> http://stackoverflow.com/questions/1765650/asp-net-updatepanel-javascript-callback 0 ASP.NET UpdatePanel Javascript Callback a432511 2009-11-19T18:48:02Z 2009-11-21T17:10:34Z <p>I came across this issue recently and thought it was really helpful. My question was, how would you call a piece of javascript after an updatepanel loads via AJAX in ASP.NET?</p> <p>I needed to reinitialize a jQuery datepicker after the panel had loaded.</p> http://stackoverflow.com/questions/866151/wcf-callback-channel-gets-disposed-prematurely 0 WCF Callback Channel gets disposed prematurely? galets 2009-05-14T22:20:25Z 2009-11-20T07:31:00Z <p>My application is using the net.tcp WCF service with a callback channel. For some reason I'm not able to send callbacks on event. Here's what I'm doing (all code server-side):</p> <p>On initialization:</p> <pre><code>OperationContext Context { get; protected set; } ... Context = OperationContext.Current; </code></pre> <p>On event:</p> <pre><code>var callback = Context.GetCallbackChannel&lt;IServiceCallbackContract&gt;(); callback.SomeMethod(); </code></pre> <p>This fails on <code>SomeMethod()</code> with following exception: <code>{"Cannot access a disposed object.\r\nObject name: 'System.ServiceModel.Channels.ServiceChannel'."}</code></p> <p>Apparently, something disposes callback channel, even though client still able to talk to server using direct (non-callback) channel. This is pretty weird. Which object am I supposed to hold on to in order to issue a callback? Is there a certain thread this must be running in?</p> http://stackoverflow.com/questions/1727824/does-using-callbacks-in-c-increase-coupling 2 Does using callbacks in C++ increase coupling? Devil Jin 2009-11-13T08:10:11Z 2009-11-18T13:36:18Z <blockquote> <p>Q1. Why are callback functions used?</p> <p>Q2. Are callbacks evil? Fun for those who know, for others a nightmare.</p> <p>Q3. Any alternative to callback?</p> </blockquote> http://stackoverflow.com/questions/1746332/c-delegates-and-callbacks 0 C# -Delegates and Callbacks csharpbaby 2009-11-17T03:05:24Z 2009-11-17T07:07:17Z <p>Does the term callback in the context of delegates mean ,"<em>a delegate delegating it works to another delegate inorder to finish some task</em>" ?</p> <p>Example :(<strong><em>Based on my understanding,I have implemented a callback,correct me if it is wrong</em></strong>)</p> <pre><code>namespace Test { public delegate string CallbackDemo(string str); class Program { static void Main(string[] args) { CallbackDemo handler = new CallbackDemo(StrAnother); string substr= Strfunc(handler); Console.WriteLine(substr); Console.ReadKey(true); } static string Strfunc(CallbackDemo callback) { return callback("Hello World"); } static string StrAnother(string str) { return str.Substring(1, 3).ToString(); } } } </code></pre> <p>Please provide examples as necessary.</p> http://stackoverflow.com/questions/702236/rails-aftersave-callback-to-create-an-associated-model-based-on-columnchanged 2 Rails after_save callback to create an associated model based on column_changed? Brandon 2009-03-31T17:51:18Z 2009-11-10T18:02:43Z <p>Hi,</p> <p>I have an ActiveRecord model with a status column. When the model is saved with a status change I need to write to a history file the change of status and who was responsible for the change. I was thinking an after_save callback would work great, but I can't use the status_changed? dynamic method to determine that the history write is necessary to execute. I don't want to write to the history if the model is saved but the status wasn't changed. My only thought on handling it right now is to use an instance variable flag to determine if the after_save should execute. Any ideas?</p> http://stackoverflow.com/questions/1707575/c-static-function-wrapper-that-routes-to-member-function 2 C++: static function wrapper that routes to member function? Frank 2009-11-10T12:22:30Z 2009-11-10T13:07:48Z <p>Hi, I've tried all sorts of design approaches to solve this problem, but I just can't seem to get it right.</p> <p>I need to expose some static functions to use as callback function to a C lib. However, I want the actual implementation to be non-static, so I can use virtual functions and reuse code in a base class. Such as:</p> <pre><code>class Callbacks { static void MyCallBack() { impl-&gt;MyCallBackImpl(); } ... class CallbackImplBase { virtual void MyCallBackImpl() = 0; </code></pre> <p>However I try to solve this (Singleton, composition by letting Callbacks be contained in the implementor class, etc) I end up in a dead-end (impl usually ends up pointing to the base class, not the derived one). </p> <p>I wonder if it is at all possible or if I'm stuck with creating some sort of helper functions instead of using inheritance? </p> http://stackoverflow.com/questions/1700765/how-do-i-set-a-model-instance-as-invalid-after-validations-are-run-but-before-it 0 How do I set a model instance as invalid after validations are run but before it's saved? mrD 2009-11-09T12:43:44Z 2009-11-10T04:10:44Z <p>Hi.</p> <p>I have a standard active record model with an attributes that is required: </p> <pre><code>class Sample &lt; ActiveRecord::Base has_many :colors before_validation :grab_colors validates_presence_of :size validate :number_of_colors private def grab_colors # grab x number of colors | x = size end def number_of_colors self.errors.add("size","is to large.") if colors.count &lt; size end end </code></pre> <p>My problem is that the <em>grab_colors</em> method requires the <em>size</em> attribute but performs a result that needs to be validated as well. In the case above <em>size</em> is used before it's presence is validated. </p> <p>Can I set the instance as invalid and stop the save process after all validation have been made?</p> http://stackoverflow.com/questions/1677861/how-to-implement-a-callback-in-ruby 4 How to implement a "callback" in Ruby Justicle 2009-11-05T01:52:38Z 2009-11-05T04:06:17Z <p>I'm not sure of the best idiom for C style call-backs in Ruby - or if there is something even better ( and less like C ). In C, I'd do something like:</p> <pre><code>void DoStuff( int parameter, CallbackPtr callback ) { // Do stuff ... // Notify we're done callback( status_code ) } </code></pre> <p>Whats a good Ruby equivalent? Essentially I want to call a passed in class method, when a certain condition is met within "DoStuff"</p> http://stackoverflow.com/questions/1673433/how-to-insert-into-multiple-tables-in-rails 1 how to insert into multiple tables in rails karthik 2009-11-04T12:16:56Z 2009-11-04T15:50:53Z <p>Hi all,</p> <p>i am trying to insert into multiple tables using rails.. i have a table called users and services. when i create a user the user details should go into users and a service name and userid should go into services table. Any help would be greatly appriciated.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1664384/play-a-waveform-at-a-certain-frequency-in-sdl-callback-function 4 play a waveform at a certain frequency in SDL callback function freedrull 2009-11-02T23:31:44Z 2009-11-03T22:45:07Z <p>I have a waveform 64 samples long. If the sampling rate is 44100 hz, how can I play(loop) this waveform so that it plays arbitrary frequencies?</p> <p>frequency = samplerate / waveform duration in samples</p> <p>Therefore the frequency should be 689hz(44100/64). If I wanted it to be say, 65.41hz(C-2), I would have to do this:</p> <p>65.41 = 44100 / x</p> <p>Solving for x yields aprox. 674.208. So I need to figure out what speed to play the waveform at to get this frequency. So we can solve this equation:</p> <p>64 * x = 674.208</p> <p>and get about 10.5. So the waveform needs to be played at 10.5% of its original speed.</p> <p>Here is my code:</p> <pre><code>double smp_index = 0; double freq = .105; void callback(void *data, Uint8 *buf, int len){ int i; s8 *out; out = (s8*) buf; if(smp_index &lt; waveform_length){ for(i = 0; i &lt; len; i ++){ out[i] = smpdata[(int)smp_index]; smp_index +=freq; if(smp_index &gt;= waveform_length) smp_index = 0; } } } </code></pre> <p>So the resulting audio should be about the note C-2, but its more of a D-2. Is the cast </p> <pre><code>(int)smp_index </code></pre> <p>causing the problem? I couldn't see any other way to accomplish this...</p> http://stackoverflow.com/questions/1663765/is-the-callback-function-in-sdlaudiospec-called-sdlaudiospec-freq-times-a-seco 1 Is the callback function in SDL_Audio_Spec called SDLAudio_Spec.freq times a second? freedrull 2009-11-02T21:19:26Z 2009-11-02T21:23:22Z <p>Is the callback function in SDL_Audio_Spec called SDLAudio_Spec.freq times a second?</p> http://stackoverflow.com/questions/1636987/compiling-gtk-application-with-g-compiler 0 Compiling GTK+ Application with G++ compiler. PP 2009-10-28T12:35:27Z 2009-10-29T09:42:16Z <p>I am writing an application in C++ with using GTK+ (not gtkmm) so I need to compile using g++ compiler. Is it possible to compile GTK+ applications with the g++ compiler? Are GTK+ and libraries compatible with g++ compiler?</p> <p>I am trying to embed GTK+ functions call in a class like follows:</p> <pre><code>#include &lt;gtk/gtk.h&gt; class LoginWindow { public: LoginWindow(); void on_window_destroy( GtkObject *object, gpointer user_data); private: GtkBuilder *builder; GtkWidget *window; }; LoginWindow::LoginWindow() { builder = gtk_builder_new (); gtk_builder_add_from_file (builder, "login_window.glade", NULL); window = GTK_WIDGET (gtk_builder_get_object (builder, "login_window")); gtk_builder_connect_signals (builder, NULL); g_signal_connect( GTK_OBJECT(window), "destroy", GTK_SIGNAL_FUNC(on_window_destroy), NULL ); g_object_unref (G_OBJECT (builder)); gtk_widget_show (window); } void LoginWindow::on_window_destroy (GtkObject *object, gpointer user_data) { gtk_main_quit (); } int main (int argc, char *argv[]) { gtk_init (&amp;argc, &amp;argv); LoginWindow loginWindow; gtk_main (); return 0; } </code></pre> <p>Am I doing it right? I am getting compile error on line:</p> <pre><code>g_signal_connect( GTK_OBJECT(window), "destroy", GTK_SIGNAL_FUNC(on_window_destroy), NULL ); login_window.cpp: In constructor "LoginWindow::LoginWindow()": login_window.cpp:27: error: invalid use of member (did you forget the "&amp;" ?) </code></pre> <p>What is the right way of doing it?</p> http://stackoverflow.com/questions/1628065/use-ajax-function-in-jquery-to-load-part-of-an-external-page-into-div 0 Use Ajax() function in Jquery to load PART of an external page into div descantstudio 2009-10-27T00:23:00Z 2009-10-27T00:30:13Z <p>I'm trying to load a DIV element from an external page into my current page using the Ajax/jQuery.ajax function. While I have successfully been able to load an entire external page, I can't seem to load <em>just</em> the DIV element.</p> <p><strong>Here's my code:</strong></p> <pre><code>$("a").click(function() { /* grabs URL from HREF attribute then adds an */ /* ID from the DIV I want to grab data from */ var myUrl = $(this).attr("href") + "#external-div"; $.ajax( { url: myUrl, success: function(html) { /* loads external content into current div element */ $("#current-div").append(html); } }); return false; }); </code></pre> <p>It grabs the HREF attribute without any trouble, but won't append "#external-div" to the URL. Any ideas?</p> <p>Thanks much!</p> <p>~Jared Crossley</p> http://stackoverflow.com/questions/1611041/wcf-callbacks-services 0 WCF Callbacks services Allen Ho 2009-10-23T01:58:21Z 2009-10-23T02:00:07Z <p>Hi,</p> <p>Just starting to look into WCF and came across the WSDualHttpBinding binding.</p> <p>I have used .Net remoting in the past, but it was not possible to have callbacks to occur when the client was behind a router. Callbacks only worked when 2 applications were running on a LAN.</p> <p>As explained by this article. <a href="http://blogs.msdn.com/manishg/archive/2004/10/16/243414.aspx" rel="nofollow">http://blogs.msdn.com/manishg/archive/2004/10/16/243414.aspx</a></p> <p>It mentions “If your client application is running behind a router (as in the case of most home networking setups), there is no way for the server to dispatch events to the client”</p> <p>Does WCF find a way of rectifying this, I understand the binding TCP supports callbacks only works on a LAN? Am I right? It would good to have callbacks work across the Internet and was just wondering if this was possible?</p> http://stackoverflow.com/questions/1608302/can-i-use-a-static-i-e-predetermined-callback-function-name-when-requesting-j 1 Can I use a static (i.e., predetermined) callback function name when requesting JSONP with jQuery? Bungle 2009-10-22T16:08:44Z 2009-10-22T16:20:50Z <p>The <a href="http://docs.jquery.com/Ajax/jQuery.getJSON" rel="nofollow">jQuery documentation</a> lists the following example of using $.getJSON to request JSONP:</p> <pre><code>$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&amp;tagmode=any&amp;format=json&amp;jsoncallback=?", function(data) { $.each(data.items, function(i,item) { $("&lt;img/&gt;").attr("src", item.media.m).appendTo("#images"); if (i == 3) return false; }); }); </code></pre> <p>Rather than use this method, which generates a dynamic callback function name because of this parameter:</p> <pre><code>jsoncallback=? </code></pre> <p>I want to be able to set that in advance to a hardcoded function name, like this:</p> <pre><code>jsoncallback=test </code></pre> <p>This works, in the sense that I run the script and the JSONP that I get back has the JSON object wrapped in a call to test().</p> <p>However, I can't figure out how to set up the callback function. Shouldn't it be as simple as this?</p> <pre><code>function test(data) { console.log(data); } $.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&amp;tagmode=any&amp;format=json&amp;jsoncallback=test"); </code></pre> <p>When I try that, I get back the JSONP which is wrapped in test(), but the function test() that I've defined is never called. Am I missing something?</p> <p>Thanks for any help!</p> http://stackoverflow.com/questions/1549484/catch-variable-in-ajax-success-function-to-stop-submit-form 0 catch variable in ajax success function to stop submit form Richard 2009-10-11T00:34:04Z 2009-10-20T09:28:28Z <p>Hello, </p> <p>I have a problem within this code. I want to choose whether I will submit the form or not based on the outcome off the ajaxcall.</p> <p>If I hardcode it with return false; It stops going to the paypal site. That's why I want it to depend on a variable set in the ajax succes function.</p> <p>It is probably lost in the callback, so that's why I ask for help.</p> <p>This is the code:</p> <pre><code>$("#img_download").click(function(e){ $("#main_content").find('span').not('#loading').remove(); loading.fadeIn(1000); $("#main_content").load("../../../includes/snip.php #betaalbox", function(){ var invoerGebruikersnaam = $("#gebruikersnaam"); var invoerEmail = $("#email"); loading.hide(); if($("#uitloggentaxibel").size()!=0){ //alert('we zijn ingelogd'); $('#idgebruikerbox').hide(); ingelogd=1; }else{ invoerEmail.focus(); //alert('we zijn niet ingelogd'); } $('form#paypalio').submit(function(){ if(invoerGebruikersnaam.attr("value") &amp;&amp; invoerEmail.attr("value")){ alert('is gecheckt, check ook op geldig emailadres'); //check ook voor een geldig emailadres //OK, dan... //vergelijk met db gegevens gebruikersnaam = invoerGebruikersnaam.attr("value"); email = invoerEmail.attr("value"); $.ajax({ url: "/includes/pdt_paypal.php", data: ({gebruikersnaam: gebruikersnaam, actie: "idgebruikercheck", email: email}), cache: false, type: "POST", dataType: "json", timeout: 5000, success: function(data,textStatus){ //$('#main_content').html(data.responseText); //sla geretourneerde gegevens bij gebruiker op identificatie=data.check; if(identificatie=="ok"){ customstring=email; $('.bericht.idgebruikerfout').html('identificatie was ok').show(); }else{ $('.bericht.idgebruikerfout').html('identificatie heeft gefaald').show(); annuleerPayPal="ok"; } }//EINDE success ,error: function(XMLHttpRequest, textStatus, errorThrown) { if(textStatus == 'timeout') { //doe iets }else if (textStatus == 'error'){ //doe iets } }//EINDE error });//EINDE ajax //ZOJA, dan... }else{ $('.bericht.idgebruikerfout').html(idfout2).show(); return false; } if(annuleerPayPal=="ok"){return false;} //return false; });//EINDE submit });//EINDE load }); </code></pre> <p><strong>EDIT BECAUSE</strong></p> <p>I solved it by removing the logic off setting a variable, because it get's lost. My best guess is that the different callbacks return to a different context.</p> <p>Anyway, by being a bit more direct, by evaluating an if/else statement block within one context(callback), I simply Instruct to submit the form. $('form').submit();</p> <p><strong>solved</strong></p> <p>thanks, Richard</p> http://stackoverflow.com/questions/1589854/cast-between-function-pointers 3 Cast between function pointers Aurélien Vallée 2009-10-19T16:55:05Z 2009-10-20T07:04:29Z <p>Hello,</p> <p>I am currently implementing a timer/callback system using Don Clugston's fastdelegates. (see <a href="http://www.codeproject.com/KB/cpp/FastDelegate.aspx" rel="nofollow">http://www.codeproject.com/KB/cpp/FastDelegate.aspx</a>)</p> <p>Here is the starting code:</p> <pre><code>struct TimerContext { }; void free_func( TimerContext* ) { } struct Foo { void member_func( TimerContext* ) { } }; Foo f; MulticastDelegate&lt; void (TimerContext*) &gt; delegate; delegate += free_func; delegate += bind( &amp;Foo::member_func, &amp;f ); </code></pre> <p>Okay, but now, i wish the user to be able to subclass <code>TimerContext</code> to store and send his own structures to the callbacks. The purpose here is to prevent the user from having to downcast the <code>TimerContext</code> himself</p> <pre><code>struct TimerContext { }; struct MyTimerContext : TimerContext { int user_value; }; void free_func( TimerContext* ) { } void free_func2( MyTimerContext* ) { } struct Foo { void member_func( TimerContext* ) { } void member_func2( MyTimerContext* ) { } }; Foo f; MulticastDelegate&lt; void (TimerContext*) &gt; delegate; delegate += free_func; delegate += free_func2; delegate += bind( &amp;Foo::member_func, &amp;f ); delegate += bind( &amp;Foo::member_func2, &amp;f ); </code></pre> <p>As you guessed, GCC won't let me do that :)</p> <pre><code>error: invalid conversion from `void (*)(MyTimerContext*)' to `void (*)(TimerContext*)' error: initializing argument 1 of `delegate::Delegate&lt;R ()(Param1)&gt;::Delegate(R (*)(Param1)) [with R = void, Param1 = TimerContext*]' </code></pre> <p>So now my question is: If I force the cast using <code>reinterpret_cast</code>, it'll work, but will it be safe ?</p> <p>PS: These are time-critical callbacks, heavy virtual-oriented solutions are considered impracticable :/</p> http://stackoverflow.com/questions/1591569/modifying-containable-fields-required-in-beforefind-callback 1 Modifying Containable fields required in beforeFind callback? Matt Huggins 2009-10-19T22:50:50Z 2009-10-20T04:42:46Z <p>In my CakePHP 1.2.5 app, I have a <code>Profile</code> model that belongsTo a <code>User</code> model. The User model has a <code>username</code> field, and when performing a <code>find()</code> on the Profile model, I want to always automatically retrieve the value of <code>User.username</code> too. I figure it would make sense to modify my Profile model's <code>beforeFind()</code> method to automatically contain the desired field.</p> <p>Here's what I attempted to do:</p> <pre><code>public function beforeFind($queryData) { // determine if the username data was already requested to be included in the return data via 'User.username' or 'User' =&gt; array('username'). $hasUserData = isset($queryData['contain']) &amp;&amp; in_array("User.{$this-&gt;User-&gt;displayField}", $queryData['contain']); $hasUserData |= isset($queryData['contain']['User']) &amp;&amp; in_array($this-&gt;User-&gt;displayField, $queryData['contain']['User']); // request the the username data be included if it hasn't already been requested by the calling method if (!$hasUserData) { $queryData['contain']['User'][] = $this-&gt;User-&gt;displayField; } return $queryData; } </code></pre> <p>I can see that the value of <code>$queryData['contain']</code> is properly being updated, but the username data isn't being retrieved. I looked into the CakePHP core code for the <code>find()</code> method, and I found that the <code>beforeFind()</code> callback is being called after all Behaviors' callbacks, meaning that Containable already did what it needed to do with the value of <code>$queryData['contain']</code> before I was able to modify it.</p> <p>How can I work around this without hacking the core?</p>