~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/temp_log_ms.h

  • Committer: Mark Atwood
  • Date: 2011-12-20 02:32:53 UTC
  • mfrom: (2469.1.1 drizzle-build)
  • Revision ID: me@mark.atwood.name-20111220023253-bvu0kr14kwsdvz7g
mergeĀ lp:~brianaker/drizzle/deprecate-pbms

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2008 PrimeBase Technologies GmbH, Germany
2
 
 *
3
 
 * PrimeBase Media Stream for MySQL
4
 
 *
5
 
 * This program is free software; you can redistribute it and/or modify
6
 
 * it under the terms of the GNU General Public License as published by
7
 
 * the Free Software Foundation; either version 2 of the License, or
8
 
 * (at your option) any later version.
9
 
 *
10
 
 * This program is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 * GNU General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU General Public License
16
 
 * along with this program; if not, write to the Free Software
17
 
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
 
 *
19
 
 * Original author: Paul McCullagh
20
 
 * Continued development: Barry Leslie
21
 
 *
22
 
 * 2007-07-03
23
 
 *
24
 
 * H&G2JCtL
25
 
 *
26
 
 * Temporary BLOB log.
27
 
 *
28
 
 * Temporary BLOBs are BLOBs that are to be deleted after an certain
29
 
 * expiry time.
30
 
 *
31
 
 * The temporary log is also used to schedule asynchronous operations to be performed
32
 
 * on the BLOB such as uploading it to a cloud.
33
 
 *
34
 
 * Temporary BLOBs are referenced by the temporary log.
35
 
 */
36
 
 
37
 
#pragma once
38
 
#ifndef __TEMPLOG_MS_H__
39
 
#define __TEMPLOG_MS_H__
40
 
 
41
 
#include "cslib/CSDefs.h"
42
 
#include "cslib/CSFile.h"
43
 
#include "cslib/CSStream.h"
44
 
 
45
 
#include "defs_ms.h"
46
 
 
47
 
class MSOpenTable;
48
 
class MSDatabase;
49
 
class MSTempLog;
50
 
 
51
 
// Change history:
52
 
// April 6 2009:
53
 
// Changed MS_TEMP_LOG_MAGIC and MS_TEMP_LOG_VERSION
54
 
// when the disk size of ti_type_1 was changed from
55
 
// CSDiskValue4 to CSDiskValue1.
56
 
 
57
 
#define MS_TEMP_LOG_MAGIC                       0xF9E6D7C9
58
 
#define MS_TEMP_LOG_VERSION                     3
59
 
#define MS_TEMP_LOG_HEAD_SIZE           32
60
 
 
61
 
#define MS_TL_BLOB_REF                          1
62
 
#define MS_TL_REPO_REF                          2               
63
 
#define MS_TL_TABLE_REF                         3
64
 
 
65
 
typedef struct MSTempLogHead {
66
 
        CSDiskValue4                    th_magic_4;                                                     /* Table magic number. */
67
 
        CSDiskValue2                    th_version_2;                                           /* The header version. */
68
 
        CSDiskValue2                    th_head_size_2;                                         /* The size of the header. */
69
 
        CSDiskValue2                    th_rec_size_2;                                          /* The size of a temp log record. */
70
 
        CSDiskValue4                    th_reserved_4;
71
 
} MSTempLogHeadRec, *MSTempLogHeadPtr;
72
 
 
73
 
typedef struct MSTempLogItem {
74
 
        CSDiskValue1                    ti_type_1;                                                      /* 1 = BLOB reference, 2 = Repository reference, 3 = Table reference */
75
 
        CSDiskValue4                    ti_table_id_4;                                          /* Table ID (non-zero if valid). */
76
 
        CSDiskValue6                    ti_blob_id_6;                                           /* Blob ID (non-zero if valid). */
77
 
        CSDiskValue4                    ti_auth_code_4;                                         /* To make sure we do not delete the wrong thing. */
78
 
        CSDiskValue4                    ti_time_4;                                                      /* The time of deletion/creation */
79
 
} MSTempLogItemRec, *MSTempLogItemPtr;
80
 
 
81
 
class MSTempLogFile : public CSReadBufferedFile {
82
 
public:
83
 
        uint32_t                myTempLogID;
84
 
        MSTempLog       *myTempLog;
85
 
 
86
 
        MSTempLogFile();
87
 
        ~MSTempLogFile();
88
 
 
89
 
        friend class MSTempLog;
90
 
 
91
 
private:
92
 
        static MSTempLogFile *newTempLogFile(uint32_t id, MSTempLog *temp_log, CSFile *path);
93
 
};
94
 
 
95
 
class MSTempLog : public CSRefObject {
96
 
public:
97
 
        uint32_t                myLogID;
98
 
        off64_t         myTempLogSize;
99
 
        int                     myTemplogRecSize;
100
 
        size_t          myTempLogHeadSize;
101
 
 
102
 
        MSTempLog(uint32_t id, MSDatabase *db, off64_t file_size);
103
 
        virtual ~MSTempLog();
104
 
 
105
 
        void deleteLog();
106
 
        CSPath *getLogPath();
107
 
        MSTempLogFile *openTempLog();
108
 
        
109
 
#ifdef DEBUG
110
 
//      virtual void retain() {
111
 
//              CSRefObject::retain();
112
 
//              printf("MSTempLog retained %d\n", iRefCount);
113
 
//      }
114
 
//
115
 
//      virtual void release() {
116
 
//              printf("MSTempLog released %d\n", iRefCount);
117
 
//              CSRefObject::release();
118
 
//      }
119
 
#endif
120
 
 
121
 
        friend class MSTempLogThread;
122
 
 
123
 
private:
124
 
        MSDatabase              *iLogDatabase;
125
 
        bool                    iDeleteLog;
126
 
 
127
 
public:
128
 
 
129
 
        static time_t adjustWaitTime(time_t then, time_t now);
130
 
};
131
 
 
132
 
class MSTempLogThread : public CSDaemon {
133
 
public:
134
 
        MSTempLogThread(time_t wait_time, MSDatabase *db);
135
 
        virtual ~MSTempLogThread(){} // Do nothing here because 'self' will no longer be valid, use completeWork().
136
 
 
137
 
        void close();
138
 
 
139
 
        virtual bool doWork();
140
 
 
141
 
        virtual void *completeWork();
142
 
 
143
 
private:
144
 
        bool try_ReleaseBLOBReference(CSThread *self, CSStringBuffer *buffer, uint32_t tab_id, int type, uint64_t blob_id, uint32_t auth_code);
145
 
 
146
 
        MSDatabase                      *iTempLogDatabase;
147
 
        MSTempLogFile           *iTempLogFile;
148
 
        size_t                          iLogRecSize;
149
 
        off64_t                         iLogOffset;
150
 
        
151
 
};
152
 
 
153
 
#endif