blob: b6a2aa74f224e44a83c35fc27d38206a3e81b7db [file] [log] [blame]
// Copyright 2010 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Author: sligocki@google.com (Shawn Ligocki)
#ifndef NET_INSTAWEB_APACHE_APACHE_MESSAGE_HANDLER_H_
#define NET_INSTAWEB_APACHE_APACHE_MESSAGE_HANDLER_H_
#include <string>
#include "net/instaweb/apache/apr_timer.h"
#include "net/instaweb/util/public/basictypes.h"
#include "net/instaweb/util/public/google_message_handler.h"
#include "net/instaweb/util/public/message_handler.h"
#include "net/instaweb/util/public/shared_circular_buffer.h"
#include "net/instaweb/util/public/string.h"
#include "net/instaweb/util/public/string_util.h"
struct server_rec;
namespace net_instaweb {
// Implementation of an HTML parser message handler that uses Apache
// logging to emit messsages.
class ApacheMessageHandler : public MessageHandler {
public:
// version is a string added to each message.
// Timer is used to generate timestamp for messages in shared memory.
ApacheMessageHandler(const server_rec* server, const StringPiece& version,
Timer* timer);
// When we initialize ApacheMessageHandler in ApacheRewriteDriverFactory,
// SharedCircularBuffer of ApacheRewriteDriverFactory is not initialized yet.
// We need to set buffer_ later in RootInit() or ChildInit().
inline void set_buffer(SharedCircularBuffer* buff) {
buffer_ = buff;
}
void SetPidString(const int64 pid) {
pid_string_ = StrCat("[", Integer64ToString(pid), "]");
}
// Dump contents of SharedCircularBuffer.
bool Dump(Writer* writer);
protected:
virtual void MessageVImpl(MessageType type, const char* msg, va_list args);
virtual void FileMessageVImpl(MessageType type, const char* filename,
int line, const char* msg, va_list args);
private:
int GetApacheLogLevel(MessageType type);
GoogleString Format(const char* msg, va_list args);
const server_rec* server_rec_;
const GoogleString version_;
// This timer is used to prepend time when writing a message
// to SharedCircularBuffer.
Timer* timer_;
// String "[pid]".
GoogleString pid_string_;
// This handler is for internal use.
// Some functions of SharedCircularBuffer need MessageHandler as argument,
// We do not want to pass in another ApacheMessageHandler to cause infinite
// loop.
GoogleMessageHandler handler_;
SharedCircularBuffer* buffer_;
DISALLOW_COPY_AND_ASSIGN(ApacheMessageHandler);
};
} // namespace net_instaweb
#endif // NET_INSTAWEB_APACHE_APACHE_MESSAGE_HANDLER_H_