~vanvugt/ubuntu/oneiric/mediatomb/fix-770964-784431

« back to all changes in this revision

Viewing changes to src/storage/storage_cache.h

  • Committer: Bazaar Package Importer
  • Author(s): Andres Mejia
  • Date: 2009-04-22 21:39:19 UTC
  • mto: (4.2.1 sid)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20090422213919-52m015y6gcpv1m1g
Tags: upstream-0.12.0~svn2018
ImportĀ upstreamĀ versionĀ 0.12.0~svn2018

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*MT*
 
2
    
 
3
    MediaTomb - http://www.mediatomb.cc/
 
4
    
 
5
    storage_cache.h - this file is part of MediaTomb.
 
6
    
 
7
    Copyright (C) 2005 Gena Batyan <bgeradz@mediatomb.cc>,
 
8
                       Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>
 
9
    
 
10
    Copyright (C) 2006-2009 Gena Batyan <bgeradz@mediatomb.cc>,
 
11
                            Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>,
 
12
                            Leonhard Wimmer <leo@mediatomb.cc>
 
13
    
 
14
    MediaTomb is free software; you can redistribute it and/or modify
 
15
    it under the terms of the GNU General Public License version 2
 
16
    as published by the Free Software Foundation.
 
17
    
 
18
    MediaTomb is distributed in the hope that it will be useful,
 
19
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
20
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
21
    GNU General Public License for more details.
 
22
    
 
23
    You should have received a copy of the GNU General Public License
 
24
    version 2 along with MediaTomb; if not, write to the Free Software
 
25
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 
26
    
 
27
    $Id: storage_cache.h 2010 2009-01-11 19:10:43Z lww $
 
28
*/
 
29
 
 
30
/// \file storage_cache.h
 
31
 
 
32
#ifndef __STORAGE_CACHE_H__
 
33
#define __STORAGE_CACHE_H__
 
34
 
 
35
#include "zmmf/zmmf.h"
 
36
#include "common.h"
 
37
#include "hash.h"
 
38
#include "sync.h"
 
39
#include "cache_object.h"
 
40
 
 
41
#define STORAGE_CACHE_CAPACITY 29989
 
42
#define STORAGE_CACHE_MAXFILL 9973
 
43
 
 
44
class StorageCache : public zmm::Object
 
45
{
 
46
public:
 
47
    StorageCache();
 
48
    
 
49
    zmm::Ref<CacheObject> getObject(int id);
 
50
    zmm::Ref<CacheObject> getObjectDefinitely(int id);
 
51
    bool removeObject(int id);
 
52
    void clear();
 
53
    
 
54
    zmm::Ref<zmm::Array<CacheObject> > getObjects(zmm::String location);
 
55
    void checkLocation(zmm::Ref<CacheObject> obj);
 
56
    
 
57
    // a child was added to the specified object - update numChildren accordingly,
 
58
    // if the object has cached information
 
59
    void addChild(int id);
 
60
    
 
61
    bool flushed();
 
62
    
 
63
    zmm::Ref<Mutex> getMutex() { return mutex; }
 
64
    
 
65
private:
 
66
    
 
67
    int capacity;
 
68
    int maxfill;
 
69
    bool hasBeenFlushed;
 
70
    
 
71
    void ensureFillLevelOk();
 
72
    
 
73
    zmm::Ref<DBOHash<int,CacheObject> > idHash;
 
74
    zmm::Ref<DSOHash<zmm::Array<CacheObject> > > locationHash;
 
75
    zmm::Ref<Mutex> mutex;
 
76
};
 
77
 
 
78
#endif // __STORAGE_CACHE_H__