]> git.mxchange.org Git - flightgear.git/blob - src/Scenery/FGTileLoader.cxx
Initial stab at a threaded tile loader contributed by Bernie Bright.
[flightgear.git] / src / Scenery / FGTileLoader.cxx
1 // FGTileLoader - Queue scenery tiles for loading.
2 //
3 // Written by Bernie Bright, started March 2001.
4 //
5 // Copyright (C) 2001  Bernard Bright - bbright@bigpond.net.au
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23 #ifdef HAVE_CONFIG_H
24 #  include <config.h>
25 #endif
26
27 #include <Main/globals.hxx>
28 #include "FGTileLoader.hxx"
29 #include "tileentry.hxx"
30
31 /**
32  * 
33  */
34 FGTileLoader::FGTileLoader()
35 {
36 #ifdef ENABLE_THREADS
37     // Create and start the loader threads.
38     for (int i = 0; i < MAX_THREADS; ++i)
39     {
40         threads[i] = new LoaderThread(this);
41         threads[i]->start();
42     }
43 #endif // ENABLE_THREADS
44 }
45
46 /**
47  * Terminate all threads.
48  */
49 FGTileLoader::~FGTileLoader()
50 {
51 #ifdef ENABLE_THREADS
52     // Wake up its time to die.
53     cond.broadcast();
54
55     for (int i = 0; i < MAX_THREADS; ++i)
56     {
57         threads[i]->cancel();
58         threads[i]->join();
59     }    
60 #endif // ENABLE_THREADS
61 }
62
63 /**
64  * 
65  */
66 void
67 FGTileLoader::add( FGTileEntry* tile )
68 {
69     /**
70      * Initialise tile_path here and not in ctor to avoid problems
71      * with the initialastion order of global objects.
72      */
73     static bool beenhere = false;
74     if (!beenhere)
75     {
76         if ( globals->get_fg_scenery() != (string)"" ) {
77             tile_path.set( globals->get_fg_scenery() );
78         } else {
79             tile_path.set( globals->get_fg_root() );
80             tile_path.append( "Scenery" );
81         }
82         beenhere = true;
83     }
84
85 #ifdef ENABLE_THREADS
86     mutex.lock();
87     tile_queue.push( tile );
88     // Signal waiting working threads.
89     cond.signal();
90     mutex.unlock();
91 #else
92     tile->load( tile_path, true );
93 #endif // ENABLE_THREADS
94 }
95
96 #ifdef ENABLE_THREADS
97 /**
98  * 
99  */
100 void
101 FGTileLoader::LoaderThread::run()
102 {
103     pthread_cleanup_push( cleanup_handler, loader );
104     while ( true ) {
105         // Wait for a load request to be placed in the queue.
106         loader->mutex.lock();
107         while (loader->empty())
108         {
109             loader->cond.wait( loader->mutex );
110         }
111
112         // Have we been canceled - exits if yes.
113         //pthread_testcancel();
114         if (loader->empty())
115         {
116             loader->mutex.unlock();
117             pthread_exit( PTHREAD_CANCELED );
118         }
119
120         // Grab the tile to load and release the mutex.
121         FGTileEntry* tile = loader->tile_queue.front();
122         loader->tile_queue.pop();
123         loader->mutex.unlock();
124
125         set_cancel( SGThread::CANCEL_DISABLE );
126         tile->load( loader->tile_path, true );
127         set_cancel( SGThread::CANCEL_DEFERRED );
128     }
129     pthread_cleanup_pop(1);
130 }
131
132 /**
133  * Ensure mutex is unlocked.
134  */
135 void 
136 cleanup_handler( void* arg )
137 {
138     FGTileLoader* loader = (FGTileLoader*) arg;
139     loader->mutex.unlock();
140 }
141 #endif // ENABLE_THREADS