~ubuntu-branches/ubuntu/saucy/resiprocate/saucy-proposed

« back to all changes in this revision

Viewing changes to rutil/SysLogBuf.cxx

  • Committer: Package Import Robot
  • Author(s): Daniel Pocock
  • Date: 2012-05-17 19:29:59 UTC
  • Revision ID: package-import@ubuntu.com-20120517192959-vv00m77isztdy64q
Tags: upstream-1.8.2
ImportĀ upstreamĀ versionĀ 1.8.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#if !defined(WIN32)
 
2
#include <syslog.h>
 
3
#endif
 
4
 
 
5
#include <cstdio>
 
6
#include <cassert>
 
7
#include "rutil/SysLogBuf.hxx"
 
8
 
 
9
#ifndef EOF
 
10
# define EOF (-1)
 
11
#endif
 
12
 
 
13
using resip::SysLogBuf;
 
14
 
 
15
SysLogBuf::SysLogBuf ()
 
16
{
 
17
#if !defined(WIN32)
 
18
   setp(buffer,buffer+Size);
 
19
   openlog (0, LOG_NDELAY, LOG_LOCAL6);
 
20
#endif
 
21
}
 
22
      
 
23
SysLogBuf::~SysLogBuf()
 
24
{
 
25
}
 
26
      
 
27
int 
 
28
SysLogBuf::sync()
 
29
{
 
30
#if !defined(WIN32)
 
31
   *(pptr()) = 0;
 
32
   syslog (LOG_LOCAL6 | LOG_DEBUG, "%s", pbase());
 
33
   setp(buffer, buffer+Size);
 
34
#else
 
35
   assert(0);
 
36
#endif
 
37
   return 0;
 
38
}
 
39
     
 
40
int 
 
41
SysLogBuf::overflow (int c)
 
42
{
 
43
   sync();
 
44
   if (c != EOF) 
 
45
   {
 
46
      *pptr() = static_cast<unsigned char>(c);
 
47
      pbump(1);
 
48
   }
 
49
   return c;
 
50
}
 
51
 
 
52
/* ====================================================================
 
53
 * The Vovida Software License, Version 1.0 
 
54
 * 
 
55
 * Copyright (c) 2000-2005 Vovida Networks, Inc.  All rights reserved.
 
56
 * 
 
57
 * Redistribution and use in source and binary forms, with or without
 
58
 * modification, are permitted provided that the following conditions
 
59
 * are met:
 
60
 * 
 
61
 * 1. Redistributions of source code must retain the above copyright
 
62
 *    notice, this list of conditions and the following disclaimer.
 
63
 * 
 
64
 * 2. Redistributions in binary form must reproduce the above copyright
 
65
 *    notice, this list of conditions and the following disclaimer in
 
66
 *    the documentation and/or other materials provided with the
 
67
 *    distribution.
 
68
 * 
 
69
 * 3. The names "VOCAL", "Vovida Open Communication Application Library",
 
70
 *    and "Vovida Open Communication Application Library (VOCAL)" must
 
71
 *    not be used to endorse or promote products derived from this
 
72
 *    software without prior written permission. For written
 
73
 *    permission, please contact vocal@vovida.org.
 
74
 *
 
75
 * 4. Products derived from this software may not be called "VOCAL", nor
 
76
 *    may "VOCAL" appear in their name, without prior written
 
77
 *    permission of Vovida Networks, Inc.
 
78
 * 
 
79
 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
 
80
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
81
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
 
82
 * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
 
83
 * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
 
84
 * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
 
85
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
86
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 
87
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
 
88
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
89
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
 
90
 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
 
91
 * DAMAGE.
 
92
 * 
 
93
 * ====================================================================
 
94
 * 
 
95
 * This software consists of voluntary contributions made by Vovida
 
96
 * Networks, Inc. and many individuals on behalf of Vovida Networks,
 
97
 * Inc.  For more information on Vovida Networks, Inc., please see
 
98
 * <http://www.vovida.org/>.
 
99
 *
 
100
 */