Move serialize functions to variable-serializer.cpp
[hiphop-php.git] / hphp / util / log-file-flusher.cpp
blob5bc8ecac1a07ffefb64d16f6ddd157ed6242d392
1 /*
2 +----------------------------------------------------------------------+
3 | HipHop for PHP |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 2010-2015 Facebook, Inc. (http://www.facebook.com) |
6 +----------------------------------------------------------------------+
7 | This source file is subject to version 3.01 of the PHP license, |
8 | that is bundled with this package in the file LICENSE, and is |
9 | available through the world-wide-web at the following url: |
10 | http://www.php.net/license/3_01.txt |
11 | If you did not receive a copy of the PHP license and are unable to |
12 | obtain it through the world-wide-web, please send a note to |
13 | license@php.net so we can mail you a copy immediately. |
14 +----------------------------------------------------------------------+
16 #include "hphp/util/log-file-flusher.h"
18 #include <sys/types.h>
19 #include <unistd.h>
21 namespace HPHP {
23 //////////////////////////////////////////////////////////////////////
25 int LogFileFlusher::DropCacheChunkSize = 1 << 20;
27 void LogFileFlusher::recordWriteAndMaybeDropCaches(int fd, int bytes) {
28 int oldBytesWritten = m_bytesWritten.fetch_add(bytes);
29 int newBytesWritten = oldBytesWritten + bytes;
31 if (!(newBytesWritten > DropCacheChunkSize &&
32 oldBytesWritten <= DropCacheChunkSize)) {
33 return;
36 off_t offset = lseek(fd, 0, SEEK_CUR);
37 if (offset > kDropCacheTail) {
38 dropCache(fd, offset - kDropCacheTail);
41 m_bytesWritten = 0;
44 //////////////////////////////////////////////////////////////////////