~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/cslib/CSLog.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 (H&G2JCtL)
20
 
 * Continued development: Barry Leslie
21
 
 *
22
 
 * 2007-05-20
23
 
 *
24
 
 * CORE SYSTEM:
25
 
 * General logging class
26
 
 *
27
 
 */
28
 
 
29
 
#pragma once
30
 
#ifndef __CSLOG_H__
31
 
#define __CSLOG_H__
32
 
 
33
 
#include <stdio.h>
34
 
#include <stdarg.h>
35
 
 
36
 
 
37
 
#include "CSDefs.h"
38
 
#include "CSString.h"
39
 
 
40
 
class CSLog {
41
 
public:
42
 
        static const int Protocol = 0;
43
 
        static const int Error = 1;
44
 
        static const int Warning = 2;
45
 
        static const int Trace = 3;
46
 
 
47
 
        CSLog(FILE *s, int level):
48
 
                iStream(s),
49
 
                iHeaderPending(true),
50
 
                iLogLevel(level),
51
 
                iLockCount(0)
52
 
                 {
53
 
                pthread_mutex_init(&iMutex, NULL);
54
 
                memset(&iLockThread, 0, sizeof(iLockThread));
55
 
        }
56
 
 
57
 
        virtual ~CSLog() {
58
 
                memset(&iLockThread, 0, sizeof(iLockThread));
59
 
                iLockCount = 0;
60
 
                pthread_mutex_destroy(&iMutex);
61
 
        }
62
 
 
63
 
        void lock() {
64
 
                pthread_t       thd = pthread_self();
65
 
 
66
 
                if (iLockCount > 0 && pthread_equal(iLockThread, thd))
67
 
                        iLockCount++;
68
 
                else {
69
 
                        pthread_mutex_lock(&iMutex);
70
 
                        iLockThread = thd;
71
 
                        iLockCount = 1;
72
 
                }
73
 
        }
74
 
 
75
 
        void unlock() {
76
 
                if (iLockCount > 0) {
77
 
                        iLockCount--;
78
 
                        if (iLockCount == 0)
79
 
                                pthread_mutex_unlock(&iMutex);
80
 
                }
81
 
        }
82
 
 
83
 
        void getNow(char *buffer, size_t len);
84
 
        void log(CSThread *self, const char *func, const char *file, int line, int level, const char* buffer);
85
 
        void log(CSThread *self, int level, const char*);
86
 
        void log(CSThread *self, int level, CSString&);
87
 
        void log(CSThread *self, int level, CSString*);
88
 
        void log(CSThread *self, int level, int);
89
 
        void eol(CSThread *self, int level);
90
 
 
91
 
        void logLine(CSThread *self, int level, const char *buffer);
92
 
        void log_va(CSThread *self, int level, const char *func, const char *file, int line, const char *fmt, va_list ap);
93
 
        void logf(CSThread *self, int level, const char *fmt, ...);
94
 
        void logf(CSThread *self, int level, const char *func, const char *file, int line, const char *fmt, ...);
95
 
        
96
 
        void flush() {fflush(iStream);}
97
 
private:
98
 
        /* Write out a logging header: */
99
 
        void header(CSThread *self, const char *func, const char *file, int line, int level);
100
 
 
101
 
        /* The output stream: */
102
 
        FILE *iStream;
103
 
 
104
 
        bool iHeaderPending;            /* True if we must write a header before the next text. */
105
 
 
106
 
        int iLogLevel;                          /* The current log level. */
107
 
 
108
 
        pthread_t iLockThread;
109
 
        int iLockCount;
110
 
        pthread_mutex_t iMutex;
111
 
};
112
 
 
113
 
extern CSLog CSL;
114
 
 
115
 
#endif