rb-appscript 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. data/CHANGES +45 -0
  2. data/README +5 -1
  3. data/TODO +3 -23
  4. data/doc/aem-manual/04_references.html +6 -6
  5. data/doc/aem-manual/05_targettingapplications.html +3 -3
  6. data/doc/aem-manual/07_findapp.html +1 -1
  7. data/doc/appscript-manual/04_gettinghelp.html +81 -7
  8. data/doc/appscript-manual/05_keywordconversion.html +18 -18
  9. data/doc/appscript-manual/07_applicationobjects.html +4 -4
  10. data/doc/appscript-manual/08_realvsgenericreferences.html +2 -2
  11. data/doc/appscript-manual/09_referenceforms.html +12 -14
  12. data/doc/appscript-manual/11_applicationcommands.html +1 -1
  13. data/doc/appscript-manual/14_notes.html +12 -12
  14. data/doc/osax-manual/index.html +2 -0
  15. data/rb-appscript.gemspec +2 -2
  16. data/sample/AB_list_people_with_emails.rb +3 -0
  17. data/sample/Add_iCal_event.rb +3 -0
  18. data/sample/Create_daily_iCal_todos.rb +2 -0
  19. data/sample/Export_Address_Book_phone_numbers.rb +3 -0
  20. data/sample/Hello_world.rb +3 -0
  21. data/sample/List_iTunes_playlist_names.rb +3 -0
  22. data/sample/Make_Mail_message.rb +3 -0
  23. data/sample/Open_file_in_TextEdit.rb +3 -0
  24. data/sample/Organize_Mail_messages.rb +3 -0
  25. data/sample/Print_folder_tree.rb +3 -0
  26. data/sample/Select_all_HTML_files.rb +3 -0
  27. data/sample/Set_iChat_status.rb +3 -0
  28. data/sample/Simple_Finder_GUI_Scripting.rb +6 -3
  29. data/sample/Stagger_Finder_windows.rb +3 -0
  30. data/sample/TextEdit_demo.rb +3 -0
  31. data/sample/iTunes_top40_to_html.rb +3 -0
  32. data/src/SendThreadSafe.c +380 -0
  33. data/src/SendThreadSafe.h +139 -0
  34. data/src/lib/_aem/aemreference.rb +46 -18
  35. data/src/lib/_aem/codecs.rb +19 -3
  36. data/src/lib/_aem/mactypes.rb +2 -6
  37. data/src/lib/_aem/send.rb +1 -1
  38. data/src/lib/_aem/typewrappers.rb +2 -2
  39. data/src/lib/_appscript/referencerenderer.rb +10 -4
  40. data/src/lib/_appscript/reservedkeywords.rb +4 -4
  41. data/src/lib/_appscript/terminology.rb +43 -35
  42. data/src/lib/aem.rb +8 -4
  43. data/src/lib/appscript.rb +78 -15
  44. data/src/lib/kae.rb +4 -0
  45. data/src/lib/osax.rb +9 -6
  46. data/src/rbae.c +102 -23
  47. data/test/test_aemreference.rb +4 -4
  48. data/test/test_appscriptcommands.rb +2 -2
  49. data/test/test_appscriptreference.rb +4 -4
  50. data/test/test_codecs.rb +14 -1
  51. data/test/test_findapp.rb +1 -1
  52. data/test/test_mactypes.rb +1 -1
  53. data/test/test_osax.rb +1 -1
  54. data/test/testall.sh +1 -1
  55. metadata +4 -2
@@ -116,7 +116,7 @@ app('Finder').home.items.get(:result_type =&gt; :alias)</code></pre>
116
116
 
117
117
  <p>The conventional form is also supported should you ever wish (or need) to use it:</p>
118
118
 
119
- <pre><code>application.command(keyword_parameters)</code></pre>
119
+ <pre><code>application.command(reference, keyword_parameters)</code></pre>
120
120
 
121
121
  <p>The two forms are equivalent (appscript converts the first form to the second behind the scenes) although the first form is preferred for conciseness.</p></li>
122
122
 
@@ -21,9 +21,16 @@
21
21
  <!-- content -->
22
22
  <div id="content">
23
23
 
24
- <h2>Dealing with problem applications</h2>
24
+ <h2>Rubygems issues</h2>
25
25
 
26
- <p>Appscript provides a number of mechanisms for dealing with problematic applications. See the <a href="http://rb-appscript.rubyforge.org">appscript website</a> for more information.</p>
26
+ <p>If using the appscript gem, don't forget to <code>require 'rubygems'</code> <em>before</em> requiring appscript, otherwise the appscript gem won't load. For example:</p>
27
+
28
+ <pre><code>begin
29
+ require 'rubygems'
30
+ rescue LoadError
31
+ end
32
+ require 'appscript'
33
+ ...</code></pre>
27
34
 
28
35
 
29
36
  <h2>Security issues</h2>
@@ -40,22 +47,15 @@
40
47
 
41
48
  <p>Some applications (e.g. QuarkXpress) may return values which appscript cannot convert to equivalent Ruby types. These values are usually of types which are defined, used and understood only by that particular application, and will be represented in Ruby as raw <code>AE::AEDesc</code> objects (e.g. <code>#&lt;AE::AEDesc:0x33fc40&gt;</code>). While there's not much you can do with raw <code>AEDesc</code> objects within Ruby (it's best just to treat them as opaque types), subsequent commands can pass them back to the application for further use and/or conversion just like any other value.</p>
42
49
 
43
- <!--
44
- <h2>aemcodegen</h2>
45
-
46
- <p>The <code>appscript.tools.aemcodegen</code> module is an convenience tool for translating appscript commands into their aem equivalents; useful if you want to control applications using the lower-level aem package. See the <code>aemcodegen</code> module's docstring for more information.</p>
47
- -->
48
50
 
49
- <h2>Appscript and threads</h2>
51
+ <h2>Dealing with problem applications</h2>
50
52
 
51
- <p>When using appscript in multi-threaded systems, always send application commands from the main thread. (This is a limitation of the underlying aem package, which currently doesn't support receiving reply events on non-main threads.)</p>
53
+ <p>Appscript provides a number of mechanisms for dealing with problematic applications. See the <a href="http://rb-appscript.rubyforge.org">appscript website</a> for more information.</p>
52
54
 
53
55
 
54
56
  <h2>Credits</h2>
55
57
 
56
- <p>Many thanks to Bill Birkett, Jordan Breeding, FUJIMOTO Hisakuni, Alexander Kellett, Chris Nebel, Matt Neuburg, Laurent Sansonetti and Michelle Steiner, and to all those who have contributed comments, suggestions and bug reports to py-appscript.</p>
57
-
58
- <p>Thanks also to <a href="http://www.macosforge.org/">Mac OS Forge</a> and <a href="http://rubyforge.org/">RubyForge</a> for providing project hosting and support.</p>
58
+ <p>Many thanks to Bill Birkett, Jordan Breeding, Fujimoto Hisakuni, Jordan K Hubbard, Alexander Kellett, Chris Nebel, Matt Neuburg, Laurent Sansonetti, Michelle Steiner, Kevin Van Vechten, and all the appscript users who've provided comments, criticisms and encouragement along the way.</p>
59
59
 
60
60
 
61
61
  <h2>Donations</h2>
@@ -177,6 +177,8 @@ p sa.display_dialog("Ruby says hello!",
177
177
  # Result: {:button_returned=&gt;"Duuuude!"}</code></pre>
178
178
 
179
179
 
180
+ <p>When using the <code>osax</code> module within RubyCocoa-based applications, avoid creating <code>ScriptingAddition</code> instances before the main event loop is started as this will prevent minimized windows expanding as normal when clicked on in the Dock.</p>
181
+
180
182
 
181
183
  </div>
182
184
 
data/rb-appscript.gemspec CHANGED
@@ -2,12 +2,12 @@ require "rubygems"
2
2
 
3
3
  spec = Gem::Specification.new do |s|
4
4
  s.name = "rb-appscript"
5
- s.version = "0.3.0"
5
+ s.version = "0.4.0"
6
6
  s.author = "HAS"
7
7
  s.homepage = "http://rb-appscript.rubyforge.org/"
8
8
  s.rubyforge_project="rb-appscript"
9
9
  s.summary="Ruby appscript (rb-appscript) is a high-level, user-friendly Apple event bridge that allows you to control scriptable Mac OS X applications using ordinary Ruby scripts."
10
- s.files = Dir["**/*"].delete_if { |name| ["MakeFile", "ae.bundle", "mkmf.log", "rbae.o", "src/osx_ruby.h", "src/osx_intern.h"].include?(name) }
10
+ s.files = Dir["**/*"].delete_if { |name| ["MakeFile", "ae.bundle", "mkmf.log", "rbae.o", "SendThreadSafe.o", "src/osx_ruby.h", "src/osx_intern.h"].include?(name) }
11
11
  s.extensions = "extconf.rb"
12
12
  s.test_files = Dir["test/test_*.rb"]
13
13
  s.required_ruby_version = ">= 1.8"
@@ -3,6 +3,9 @@
3
3
  # Lists the name and email(s) of every person in Address Book with
4
4
  # one or more email addresses.
5
5
 
6
+ # Note: if using the appscript gem, rubygems must be required first:
7
+ begin; require 'rubygems'; rescue LoadError; end
8
+
6
9
  require "appscript"
7
10
  include Appscript
8
11
 
@@ -5,6 +5,9 @@ include Appscript
5
5
 
6
6
  # Add an event to Home calendar that runs from 7am to 9 am tomorrow
7
7
 
8
+ # Note: if using the appscript gem, rubygems must be required first:
9
+ begin; require 'rubygems'; rescue LoadError; end
10
+
8
11
  calendar_name = 'Home'
9
12
  t = Time.now + 60 * 60 * 24
10
13
  start = Time.local(t.year, t.month, t.day, 7)
@@ -24,6 +24,8 @@
24
24
  # <http://web.mac.com/lypanov/iWeb/Web/Diary/9950DF91-726E-42B2-A639-
25
25
  # 1967D1DE7545.html>
26
26
 
27
+ # Note: if using the appscript gem, rubygems must be required first:
28
+ begin; require 'rubygems'; rescue LoadError; end
27
29
 
28
30
  require "appscript"
29
31
  include Appscript
@@ -2,6 +2,9 @@
2
2
 
3
3
  # Exports phone numbers from Address Book.
4
4
 
5
+ # Note: if using the appscript gem, rubygems must be required first:
6
+ begin; require 'rubygems'; rescue LoadError; end
7
+
5
8
  require "osax"
6
9
  include Appscript, OSAX
7
10
 
@@ -1,5 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
+ # Note: if using the appscript gem, rubygems must be required first:
4
+ begin; require 'rubygems'; rescue LoadError; end
5
+
3
6
  # 1. "Hello world" in TextEdit:
4
7
 
5
8
  require "appscript"
@@ -2,6 +2,9 @@
2
2
 
3
3
  # List names of playlists in iTunes.
4
4
 
5
+ # Note: if using the appscript gem, rubygems must be required first:
6
+ begin; require 'rubygems'; rescue LoadError; end
7
+
5
8
  require "appscript"
6
9
  include Appscript
7
10
 
@@ -2,6 +2,9 @@
2
2
 
3
3
  # Compose an outgoing message in Apple's Mail.app.
4
4
 
5
+ # Note: if using the appscript gem, rubygems must be required first:
6
+ begin; require 'rubygems'; rescue LoadError; end
7
+
5
8
  require "appscript"
6
9
  include Appscript
7
10
 
@@ -2,6 +2,9 @@
2
2
 
3
3
  # Opens a file in TextEdit. (Demonstrates mactypes module usage.)
4
4
 
5
+ # Note: if using the appscript gem, rubygems must be required first:
6
+ begin; require 'rubygems'; rescue LoadError; end
7
+
5
8
  require "appscript"
6
9
  include Appscript
7
10
 
@@ -11,6 +11,9 @@
11
11
  # already exist. It will then create a new Mail rule that automatically moves
12
12
  # incoming messages from this sender directly into this mailbox.
13
13
 
14
+ # Note: if using the appscript gem, rubygems must be required first:
15
+ begin; require 'rubygems'; rescue LoadError; end
16
+
14
17
  require "appscript"
15
18
  include Appscript
16
19
 
@@ -2,6 +2,9 @@
2
2
 
3
3
  # Prints the sub-folder hierarchy of a given folder as a list of folder names indented according to depth.
4
4
 
5
+ # Note: if using the appscript gem, rubygems must be required first:
6
+ begin; require 'rubygems'; rescue LoadError; end
7
+
5
8
  require "appscript"
6
9
  include Appscript
7
10
 
@@ -2,6 +2,9 @@
2
2
 
3
3
  # Selects all .htm/.html files in the top Finder window.
4
4
 
5
+ # Note: if using the appscript gem, rubygems must be required first:
6
+ begin; require 'rubygems'; rescue LoadError; end
7
+
5
8
  require "appscript"
6
9
  include Appscript
7
10
 
@@ -6,6 +6,9 @@
6
6
  # Based on an AppleScript example from:
7
7
  # <http://developer.apple.com/cocoa/applescriptforapps.html>
8
8
 
9
+ # Note: if using the appscript gem, rubygems must be required first:
10
+ begin; require 'rubygems'; rescue LoadError; end
11
+
9
12
  require "appscript"
10
13
  include Appscript
11
14
 
@@ -1,13 +1,16 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require 'appscript'
4
- include Appscript
5
-
6
3
  # Opens a new Finder smart folder that searches for 'ruby', via GUI Scripting
7
4
 
8
5
  # (Note: to use GUI Scripting, 'Enable access for assistive devices' option must
9
6
  # be enabled in the Universal Access panel of System Preferences.)
10
7
 
8
+ # Note: if using the appscript gem, rubygems must be required first:
9
+ begin; require 'rubygems'; rescue LoadError; end
10
+
11
+ require 'appscript'
12
+ include Appscript
13
+
11
14
  se = app('System Events')
12
15
 
13
16
  app('Finder').activate
@@ -4,6 +4,9 @@
4
4
  # another. (Could easily be adapted to work with any scriptable application
5
5
  # that uses standard window class terminology.)
6
6
 
7
+ # Note: if using the appscript gem, rubygems must be required first:
8
+ begin; require 'rubygems'; rescue LoadError; end
9
+
7
10
  require "appscript"
8
11
  include Appscript
9
12
 
@@ -2,6 +2,9 @@
2
2
 
3
3
  # Demonstrates various references and commands in action.
4
4
 
5
+ # Note: if using the appscript gem, rubygems must be required first:
6
+ begin; require 'rubygems'; rescue LoadError; end
7
+
5
8
  require "appscript"
6
9
  include Appscript
7
10
 
@@ -5,6 +5,9 @@
5
5
  #
6
6
  # Requires the Amrita templating engine: http://amrita.sourceforge.jp
7
7
 
8
+ # Note: if using the appscript gem, rubygems must be required first:
9
+ begin; require 'rubygems'; rescue LoadError; end
10
+
8
11
  require 'appscript'
9
12
  include Appscript
10
13
  require 'osax'
@@ -0,0 +1,380 @@
1
+ /*
2
+ File: AESendThreadSafe.c
3
+
4
+ Contains: Code to send Apple events in a thread-safe manner.
5
+
6
+ Written by: DTS
7
+
8
+ Copyright: Copyright (c) 2007 Apple Inc. All Rights Reserved.
9
+
10
+ Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Inc.
11
+ ("Apple") in consideration of your agreement to the following
12
+ terms, and your use, installation, modification or
13
+ redistribution of this Apple software constitutes acceptance of
14
+ these terms. If you do not agree with these terms, please do
15
+ not use, install, modify or redistribute this Apple software.
16
+
17
+ In consideration of your agreement to abide by the following
18
+ terms, and subject to these terms, Apple grants you a personal,
19
+ non-exclusive license, under Apple's copyrights in this
20
+ original Apple software (the "Apple Software"), to use,
21
+ reproduce, modify and redistribute the Apple Software, with or
22
+ without modifications, in source and/or binary forms; provided
23
+ that if you redistribute the Apple Software in its entirety and
24
+ without modifications, you must retain this notice and the
25
+ following text and disclaimers in all such redistributions of
26
+ the Apple Software. Neither the name, trademarks, service marks
27
+ or logos of Apple Inc. may be used to endorse or promote
28
+ products derived from the Apple Software without specific prior
29
+ written permission from Apple. Except as expressly stated in
30
+ this notice, no other rights or licenses, express or implied,
31
+ are granted by Apple herein, including but not limited to any
32
+ patent rights that may be infringed by your derivative works or
33
+ by other works in which the Apple Software may be incorporated.
34
+
35
+ The Apple Software is provided by Apple on an "AS IS" basis.
36
+ APPLE MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
37
+ WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-INFRINGEMENT,
38
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING
39
+ THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN
40
+ COMBINATION WITH YOUR PRODUCTS.
41
+
42
+ IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT,
43
+ INCIDENTAL OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
44
+ TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
45
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY
46
+ OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION
47
+ OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY
48
+ OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR
49
+ OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF
50
+ SUCH DAMAGE.
51
+
52
+ Change History (most recent first):
53
+
54
+ $Log: AESendThreadSafe.c,v $
55
+ Revision 1.3 2007/02/27 10:45:15
56
+ In the destructor, add an assert that the thread-local storage has been set to NULL. Also fixed a comment typo.
57
+
58
+ Revision 1.2 2007/02/12 11:59:09
59
+ Added a type cast for the malloc result.
60
+
61
+ Revision 1.1 2007/02/09 10:55:24
62
+ First checked in.
63
+
64
+
65
+ */
66
+
67
+ /*
68
+
69
+ 2007/06/24 -- Modified by HAS to make AESendMessageThreadSafeSynchronous API-compatible with AESendMessage; renamed SendMessageThreadSafe.
70
+
71
+ */
72
+
73
+ /////////////////////////////////////////////////////////////////
74
+
75
+ #include "SendThreadSafe.h"
76
+
77
+ #include <pthread.h>
78
+ #include <mach/mach.h>
79
+
80
+ /////////////////////////////////////////////////////////////////
81
+
82
+ /*
83
+ How It Works
84
+ ------------
85
+ The basic idea behind this module is that it uses per-thread storage to keep
86
+ track of an Apple event reply for any given thread. The first time that the
87
+ thread calls AESendMessageThreadSafeSynchronous, the per-thread storage will
88
+ not be initialised and the code will grab an Apple event reply port and
89
+ assign it to the per-thread storage. Subsequent calls to AESendMessageThreadSafeSynchronous
90
+ will continue to use that port. When the thread dies, pthreads will automatically
91
+ call the destructor for the per-thread storage, and that will clean up the port.
92
+
93
+ Because we can't dispose of the reply port (without triggering the Apple
94
+ Event Manager bug that's the reason we wrote this code in the first place),
95
+ the destructor doesn't actually dispose of the port. Rather, it adds the
96
+ port to a pool of ports that are available for reuse. The next time a thread
97
+ needs to allocate a port, it will grab it from the pool rather than allocating
98
+ it from scratch.
99
+
100
+ This technique means that the code still 'leaks' Apple event reply ports, but
101
+ the size of the leak is limited to the maximum number of threads that you run
102
+ simultaneously. This isn't a problem in practice.
103
+ */
104
+
105
+ /////////////////////////////////////////////////////////////////
106
+
107
+ // The PerThreadStorage structure is a trivial wrapper around the Mach port.
108
+ // I added this because I need to attach this structure a thread using
109
+ // per-thread storage. The API for that (<x-man-page://3/pthread_setspecific>)
110
+ // is pointer based. I could've just cast the Mach port to a (void *), but
111
+ // that's ugly because of a) pointer size issues (are pointers always bigger than
112
+ // ints?), and b) because it implies an equivalent between NULL and MACH_PORT_NULL.
113
+ // Given this, I simply decided to create a structure to wrap the Mach port.
114
+
115
+ enum {
116
+ kPerThreadStorageMagic = 'PTSm'
117
+ };
118
+
119
+ struct PerThreadStorage {
120
+ OSType magic; // must be kPerThreadStorageMagic
121
+ mach_port_t port;
122
+ };
123
+ typedef struct PerThreadStorage PerThreadStorage;
124
+
125
+ // The following static variables manage the per-thread storage key
126
+ // (sPerThreadStorageKey) and the pool of Mach ports (wrapped in
127
+ // PerThreadStorage structures) that are not currently attached to a thread.
128
+
129
+ static pthread_once_t sInited = PTHREAD_ONCE_INIT; // covers initialisation of all of the
130
+ // following static variables
131
+
132
+ static OSStatus sPerThreadStorageKeyInitErrNum; // latches result of initialisation
133
+
134
+ static pthread_key_t sPerThreadStorageKey = 0; // key for our per-thread storage
135
+
136
+ static pthread_mutex_t sPoolMutex; // protects sPool
137
+ static CFMutableArrayRef sPool; // array of (PerThreadStorage *), holds
138
+ // the ports that aren't currently bound to
139
+ // a thread
140
+
141
+ static void PerThreadStorageDestructor(void *keyValue); // forward declaration
142
+
143
+ static void InitRoutine(void)
144
+ // Call once (via pthread_once) to initialise various static variables.
145
+ {
146
+ OSStatus err;
147
+
148
+ // Create the per-thread storage key. Note that we assign a destructor to this key;
149
+ // pthreads call the destructor to clean up that item of per-thread storage whenever
150
+ // a thread terminates.
151
+
152
+ err = (OSStatus) pthread_key_create(&sPerThreadStorageKey, PerThreadStorageDestructor);
153
+
154
+ // Create the pool of Mach ports that aren't bound to any thread, and its associated
155
+ // lock. The pool starts out empty.
156
+
157
+ if (err == noErr) {
158
+ err = (OSStatus) pthread_mutex_init(&sPoolMutex, NULL);
159
+ }
160
+ if (err == noErr) {
161
+ sPool = CFArrayCreateMutable(NULL, 0, NULL);
162
+ if (sPool == NULL) {
163
+ err = coreFoundationUnknownErr;
164
+ }
165
+ }
166
+ assert(err == 0);
167
+
168
+ sPerThreadStorageKeyInitErrNum = err;
169
+ }
170
+
171
+ static OSStatus AllocatePortFromPool(PerThreadStorage **storagePtr)
172
+ // Grab a Mach port from sPool; if sPool is empty, create one.
173
+ {
174
+ OSStatus err;
175
+ OSStatus junk;
176
+ PerThreadStorage * storage;
177
+
178
+ assert( storagePtr != NULL);
179
+ assert(*storagePtr == NULL);
180
+
181
+ storage = NULL;
182
+
183
+ // First try to get an entry from pool. We try to grab the last one because
184
+ // that minimises the amount of copying that CFArrayRemoveValueAtIndex has to
185
+ // do.
186
+
187
+ err = (OSStatus) pthread_mutex_lock(&sPoolMutex);
188
+ if (err == noErr) {
189
+ CFIndex poolCount;
190
+
191
+ poolCount = CFArrayGetCount(sPool);
192
+ if (poolCount > 0) {
193
+ storage = (PerThreadStorage *) CFArrayGetValueAtIndex(sPool, poolCount - 1);
194
+ CFArrayRemoveValueAtIndex(sPool, poolCount - 1);
195
+ }
196
+
197
+ junk = (OSStatus) pthread_mutex_unlock(&sPoolMutex);
198
+ assert(junk == noErr);
199
+ }
200
+
201
+ // If we failed to find an entry in the pool, create a new one.
202
+
203
+ if ( (err == noErr) && (storage == NULL) ) {
204
+ storage = (PerThreadStorage *) malloc(sizeof(*storage));
205
+ if (storage == NULL) {
206
+ err = memFullErr;
207
+ } else {
208
+ storage->magic = kPerThreadStorageMagic;
209
+ storage->port = MACH_PORT_NULL;
210
+
211
+ err = (OSStatus) mach_port_allocate(mach_task_self(), MACH_PORT_RIGHT_RECEIVE, &storage->port);
212
+ if (err != noErr) {
213
+ assert(storage->port == MACH_PORT_NULL);
214
+ free(storage);
215
+ storage = NULL;
216
+ }
217
+ }
218
+ }
219
+ if (err == noErr) {
220
+ *storagePtr = storage;
221
+ }
222
+
223
+ assert( (err == noErr) == (*storagePtr != NULL) );
224
+ assert( (*storagePtr == NULL) || ((*storagePtr)->magic == kPerThreadStorageMagic) );
225
+ assert( (*storagePtr == NULL) || ((*storagePtr)->port != MACH_PORT_NULL) );
226
+
227
+ return err;
228
+ }
229
+
230
+ static void ReturnPortToPool(PerThreadStorage * storage)
231
+ // Returns a port to sPool.
232
+ {
233
+ OSStatus err;
234
+
235
+ assert(storage != NULL);
236
+ assert(storage->magic == kPerThreadStorageMagic);
237
+ assert(storage->port != MACH_PORT_NULL);
238
+
239
+ err = (OSStatus) pthread_mutex_lock(&sPoolMutex);
240
+ if (err == noErr) {
241
+ CFArrayAppendValue(sPool, storage);
242
+
243
+ err = (OSStatus) pthread_mutex_unlock(&sPoolMutex);
244
+ }
245
+ assert(err == noErr);
246
+ }
247
+
248
+ // Main Thread Notes
249
+ // -----------------
250
+ // There are two reasons why we don't assign a reply port to the main thread.
251
+ // First, the main thread already has a reply port created for it by Apple
252
+ // Event Manager. Thus, we don't need a specific reply port. Also, the
253
+ // destructor for per-thread storage isn't called for the main thread, so
254
+ // we wouldn't get a chance to clean up (although that's not really a problem
255
+ // in practice).
256
+
257
+ static OSStatus BindReplyMachPortToThread(mach_port_t *replyPortPtr)
258
+ // Get a reply port for this thread, remembering that we've done this
259
+ // in per-thread storage.
260
+ //
261
+ // On success, *replyPortPtr is the port to use for this thread's reply
262
+ // port. It will be MACH_PORT_NULL if you call it from the main thread.
263
+ {
264
+ OSStatus err;
265
+
266
+ assert( replyPortPtr != NULL);
267
+ assert(*replyPortPtr == MACH_PORT_NULL);
268
+
269
+ // Initialise ourselves the first time that we're called.
270
+
271
+ err = (OSStatus) pthread_once(&sInited, InitRoutine);
272
+
273
+ // If something went wrong, return the latched error.
274
+
275
+ if ( (err == noErr) && (sPerThreadStorageKeyInitErrNum != noErr) ) {
276
+ err = sPerThreadStorageKeyInitErrNum;
277
+ }
278
+
279
+ // Now do the real work.
280
+
281
+ if (err == noErr) {
282
+ if ( pthread_main_np() ) {
283
+ // This is the main thread, so do nothing; leave *replyPortPtr set
284
+ // to MACH_PORT_NULL.
285
+ assert(*replyPortPtr == MACH_PORT_NULL);
286
+ } else {
287
+ PerThreadStorage * storage;
288
+
289
+ // Get the per-thread storage for this thread.
290
+
291
+ storage = (PerThreadStorage *) pthread_getspecific(sPerThreadStorageKey);
292
+ if (storage == NULL) {
293
+
294
+ // The per-thread storage hasn't been allocated yet for this specific
295
+ // thread. Let's go allocate it and attach it to this thread.
296
+
297
+ err = AllocatePortFromPool(&storage);
298
+ if (err == noErr) {
299
+ err = (OSStatus) pthread_setspecific(sPerThreadStorageKey, (void *) storage);
300
+ if (err != noErr) {
301
+ ReturnPortToPool(storage);
302
+ storage = NULL;
303
+ }
304
+ }
305
+ }
306
+ assert( (err == noErr) == (storage != NULL) );
307
+
308
+ // If all went well, copy the port out to our client.
309
+
310
+ if (err == noErr) {
311
+ assert(storage->magic == kPerThreadStorageMagic);
312
+ assert(storage->port != MACH_PORT_NULL);
313
+ *replyPortPtr = storage->port;
314
+ }
315
+ }
316
+ }
317
+
318
+ // no error + MACH_PORT_NULL is a valid response if we're on the main
319
+ // thread.
320
+ //
321
+ // assert( (err == noErr) == (*replyPortPtr != MACH_PORT_NULL) );
322
+ assert( (*replyPortPtr == MACH_PORT_NULL) || (err == noErr) );
323
+
324
+ return err;
325
+ }
326
+
327
+ static void PerThreadStorageDestructor(void *keyValue)
328
+ // Called by pthreads when a thread dies and it has a non-null value for our
329
+ // per-thread storage key. We use this callback to return the thread's
330
+ // Apple event reply port to the pool.
331
+ {
332
+ PerThreadStorage * storage;
333
+
334
+ storage = (PerThreadStorage *) keyValue;
335
+ assert(storage != NULL); // pthread won't call us if it's NULL
336
+ assert(storage->magic == kPerThreadStorageMagic);
337
+ assert(storage->port != MACH_PORT_NULL);
338
+
339
+ // Return the port associated with this thread to the pool.
340
+
341
+ ReturnPortToPool(storage);
342
+
343
+ // pthreads has already set this thread's per-thread storage for our key to
344
+ // NULL before calling us. So we don't need to do anything to remove it.
345
+
346
+ assert( pthread_getspecific(sPerThreadStorageKey) == NULL );
347
+ }
348
+
349
+ OSStatus SendMessageThreadSafe(
350
+ AppleEvent * eventPtr,
351
+ AppleEvent * replyPtr,
352
+ AESendMode sendMode,
353
+ long timeOutInTicks
354
+ )
355
+ // See comment in header.
356
+ {
357
+ OSStatus err = noErr;
358
+ mach_port_t replyPort;
359
+ assert(eventPtr != NULL);
360
+ assert(replyPtr != NULL);
361
+
362
+ if (sendMode && kAEWaitReply) {
363
+ replyPort = MACH_PORT_NULL;
364
+
365
+ // Set up the reply port if necessary.
366
+
367
+ err = BindReplyMachPortToThread(&replyPort);
368
+ if ( (err == noErr) && (replyPort != MACH_PORT_NULL) ) {
369
+ err = AEPutAttributePtr(eventPtr, keyReplyPortAttr, typeMachPort, &replyPort, sizeof(replyPort));
370
+ }
371
+ }
372
+
373
+ // Call through to AESendMessage.
374
+
375
+ if (err == noErr) {
376
+ err = AESendMessage(eventPtr, replyPtr, sendMode, timeOutInTicks);
377
+ }
378
+
379
+ return err;
380
+ }