/[svn]/linuxsampler/trunk/src/engines/gig/DiskThread.h
ViewVC logotype

Annotation of /linuxsampler/trunk/src/engines/gig/DiskThread.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1424 - (hide annotations) (download) (as text)
Sun Oct 14 22:00:17 2007 UTC (16 years, 6 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 6557 byte(s)
* code cleanup:
- global.h now only covers global definitions that are needed for the C++
  API header files, all implementation internal global definitions are now
  in global_private.h
- atomic.h is not exposed to the C++ API anymore (replaced the references
  in SynchronizedConfig.h for this with local definitions)
- no need to include config.h anymore for using LS's API header files
- DB instruments classes are not exposed to the C++ API
- POSIX callback functions of Thread.h are hidden
- the (optional) gig Engine benchmark compiles again
- updated Doxyfile.in
- fixed warnings in API doc generation
* preparations for release 0.5.0

1 schoenebeck 53 /***************************************************************************
2     * *
3     * LinuxSampler - modular, streaming capable sampler *
4     * *
5 schoenebeck 56 * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck *
6 schoenebeck 1321 * Copyright (C) 2005 - 2007 Christian Schoenebeck *
7 schoenebeck 53 * *
8     * This program is free software; you can redistribute it and/or modify *
9     * it under the terms of the GNU General Public License as published by *
10     * the Free Software Foundation; either version 2 of the License, or *
11     * (at your option) any later version. *
12     * *
13     * This program is distributed in the hope that it will be useful, *
14     * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16     * GNU General Public License for more details. *
17     * *
18     * You should have received a copy of the GNU General Public License *
19     * along with this program; if not, write to the Free Software *
20     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
21     * MA 02111-1307 USA *
22     ***************************************************************************/
23    
24     #ifndef __LS_GIG_DISKTHREAD_H__
25     #define __LS_GIG_DISKTHREAD_H__
26    
27 schoenebeck 1424 #include "../../common/global_private.h"
28 schoenebeck 53
29 schoenebeck 505 #include <gig.h>
30    
31 schoenebeck 53 #include "../../common/Thread.h"
32     #include "../../common/RingBuffer.h"
33     #include "Stream.h"
34     #include "Voice.h"
35    
36     namespace LinuxSampler { namespace gig {
37    
38     int CompareStreamWriteSpace(const void* a, const void* b);
39    
40 schoenebeck 563 /** @brief Disk Reader Thread
41     *
42     * The disk reader thread is responsible for periodically refilling
43     * disk streams in parallel to the audio thread's rendering process.
44 persson 1038 *
45     * There is also a function for releasing parts of instruments not
46     * in use anymore (as this is not real time safe, the audio thread
47     * cannot do it directly).
48 schoenebeck 563 */
49 schoenebeck 53 class DiskThread : public Thread {
50     public:
51     // Methods
52 persson 1038 DiskThread(uint BufferWrapElements, InstrumentResourceManager* pInstruments);
53 letz 502 virtual ~DiskThread();
54 schoenebeck 53 void Reset();
55     String GetBufferFillBytes();
56     String GetBufferFillPercentage();
57 persson 865 int OrderNewStream(Stream::reference_t* pStreamRef, ::gig::DimensionRegion* pDimRgn, unsigned long SampleOffset, bool DoLoop);
58 schoenebeck 1321 int OrderDeletionOfStream(Stream::reference_t* pStreamRef, bool bRequestNotification = false);
59 persson 1038 int OrderDeletionOfDimreg(::gig::DimensionRegion* dimreg);
60 schoenebeck 53 Stream* AskForCreatedStream(Stream::OrderID_t StreamOrderID);
61 schoenebeck 1321 Stream::Handle AskForDeletedStream();
62 schoenebeck 53
63     // the number of streams currently in usage
64     // printed on the console the main thread (along with the active voice count)
65     int ActiveStreamCount;
66     int ActiveStreamCountMax;
67    
68     protected:
69 schoenebeck 385 ::gig::buffer_t DecompressionBuffer; ///< Used for thread safe streaming.
70    
71 schoenebeck 53 int Main(); ///< Implementation of virtual method from class Thread
72 schoenebeck 385
73     friend class Stream;
74 schoenebeck 53 private:
75     // Private Types
76     struct create_command_t {
77     Stream::OrderID_t OrderID;
78     Stream::Handle hStream;
79     Stream::reference_t* pStreamRef;
80 persson 865 ::gig::DimensionRegion* pDimRgn;
81 schoenebeck 53 unsigned long SampleOffset;
82     bool DoLoop;
83     };
84     struct delete_command_t {
85     Stream* pStream;
86     Stream::Handle hStream;
87     Stream::OrderID_t OrderID;
88 schoenebeck 1321 bool bNotify;
89 schoenebeck 53 };
90    
91     // Attributes
92     bool IsIdle;
93     uint Streams;
94 schoenebeck 970 RingBuffer<create_command_t,false>* CreationQueue; ///< Contains commands to create streams
95     RingBuffer<delete_command_t,false>* DeletionQueue; ///< Contains commands to delete streams
96 schoenebeck 1321 RingBuffer<delete_command_t,false>* GhostQueue; ///< Contains handles to streams that are not used anymore and weren't deletable immediately
97     RingBuffer<Stream::Handle,false> DeletionNotificationQueue; ///< In case the original sender requested a notification for its stream deletion order, this queue will receive the handle of the respective stream once actually be deleted by the disk thread.
98 persson 1038 RingBuffer< ::gig::DimensionRegion*,false>* DeleteDimregQueue; ///< Contains dimension regions that are not used anymore and should be handed back to the instrument resource manager
99 schoenebeck 53 unsigned int RefillStreamsPerRun; ///< How many streams should be refilled in each loop run
100 iliev 724 Stream* pStreams[CONFIG_MAX_STREAMS]; ///< Contains all disk streams (whether used or unused)
101 schoenebeck 554 Stream* pCreatedStreams[CONFIG_MAX_STREAMS + 1]; ///< This is where the voice (audio thread) picks up it's meanwhile hopefully created disk stream.
102 schoenebeck 53 static Stream* SLOT_RESERVED; ///< This value is used to mark an entry in pCreatedStreams[] as reserved.
103 persson 1038 InstrumentResourceManager* pInstruments; ///< The instrument resource manager of the engine that is using this disk thread. Used by the dimension region deletion feature.
104 schoenebeck 53
105     // Methods
106     void CreateStream(create_command_t& Command);
107     void DeleteStream(delete_command_t& Command);
108     void RefillStreams();
109     Stream::Handle CreateHandle();
110     Stream::OrderID_t CreateOrderID();
111     };
112    
113     }} // namespace LinuxSampler::gig
114    
115     #endif // __LS_GIG_DISKTHREAD_H__

  ViewVC Help
Powered by ViewVC