Arquivos
hhvm/hphp/util/string-vsnprintf.cpp
Jordan DeLong fd00ef394e Remove includes of util.h from .cpp files in hphp/util
Replace some uses with folly functions or boost.  I kept
string_vsnprintf in its own header for now.  We could probably move it
to folly/String.h (folly has stringPrintf and such, just no vararg
version), but on the other hand using va_list is not very encouraged
so maybe we should just leave it here for these legacy uses.

Reviewed By: @ptarjan

Differential Revision: D1124742
2014-01-13 15:19:32 -08:00

41 linhas
1.4 KiB
C++

/*
+----------------------------------------------------------------------+
| HipHop for PHP |
+----------------------------------------------------------------------+
| Copyright (c) 2010-2013 Facebook, Inc. (http://www.facebook.com) |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
*/
#include "hphp/util/string-vsnprintf.h"
#include <cstdlib>
#include <cstdio>
namespace HPHP {
void string_vsnprintf(std::string &msg, const char *fmt, va_list ap) {
int i = 0;
for (int len = 1024; msg.empty(); len <<= 1) {
va_list v;
va_copy(v, ap);
char *buf = (char*)malloc(len);
if (vsnprintf(buf, len, fmt, v) < len) {
msg = buf;
}
free(buf);
va_end(v);
if (++i > 10) break;
}
}
}