}
}
- out << " catch (const std::exception& e) {" << endl;
+ if (!tfunction->is_oneway()) {
+ out << " catch (const std::exception& e) {" << endl;
+ } else {
+ out << " catch (const std::exception&) {" << endl;
+ }
indent_up();
out <<
// TODO(dreiss): Handle TExceptions? Expose to server?
out <<
- indent() << "catch (const std::exception& exn) {" << endl <<
+ indent() << "catch (const std::exception&) {" << endl <<
indent() << " if (this->eventHandler_.get() != NULL) {" << endl <<
indent() << " this->eventHandler_->handlerError(ctx, " <<
service_func_name << ");" << endl <<
S_IRUSR
| S_IWUSR
| S_IXUSR
-#ifndef MINGW
+#ifndef _WIN32
| S_IRGRP
| S_IXGRP
| S_IROTH
#include <errno.h>
#include <limits.h>
-#ifdef MINGW
+#ifdef _WIN32
# include <windows.h> /* for GetFullPathName */
#endif
// Careful: must include globals first for extern definitions
#include "globals.h"
+#include "platform.h"
#include "main.h"
#include "parse/t_program.h"
#include "parse/t_scope.h"
bool gen_recurse = false;
/**
- * MinGW doesn't have realpath, so use fallback implementation in that case,
+ * Win32 doesn't have realpath, so use fallback implementation in that case,
* otherwise this just calls through to realpath
*/
char *saferealpath(const char *path, char *resolved_path) {
-#ifdef MINGW
+#ifdef _WIN32
char buf[MAX_PATH];
char* basename;
DWORD len = GetFullPathName(path, MAX_PATH, buf, &basename);
}
bool check_is_directory(const char *dir_name) {
-#ifdef MINGW
+#ifdef _WIN32
DWORD attributes = ::GetFileAttributesA(dir_name);
if(attributes == INVALID_FILE_ATTRIBUTES) {
fprintf(stderr, "Output directory %s is unusable: GetLastError() = %ld\n", dir_name, GetLastError());
// Absolute path? Just try that
if (filename[0] == '/') {
// Realpath!
- char rp[PATH_MAX];
+ char rp[THRIFT_PATH_MAX];
if (saferealpath(filename.c_str(), rp) == NULL) {
pwarning(0, "Cannot open include file %s\n", filename.c_str());
return std::string();
string sfilename = *(it) + "/" + filename;
// Realpath!
- char rp[PATH_MAX];
+ char rp[THRIFT_PATH_MAX];
if (saferealpath(sfilename.c_str(), rp) == NULL) {
continue;
}
}
}
if (!found) {
- throw "type error: const " + name + " was declared as type "
- + type->get_name() + " which is an enum, but "
+ throw "type error: const " + name + " was declared as type "
+ + type->get_name() + " which is an enum, but "
+ value->get_identifier() + " is not a valid value for that enum";
}
} else if (type->is_struct() || type->is_xception()) {
}
out_path = arg;
-#ifdef MINGW
+#ifdef _WIN32
//strip out trailing \ on Windows
int last = out_path.length()-1;
if (out_path[last] == '\\')
}
// Real-pathify it
- char rp[PATH_MAX];
+ char rp[THRIFT_PATH_MAX];
if (argv[i] == NULL) {
fprintf(stderr, "Missing file name\n");
usage();
* not it was specified by the user or automatically chosen.
*/
struct t_field_id {
- int64_t value;
+ int32_t value;
bool auto_assigned;
};
* is different for the non-POSIX MinGW
*/
-#ifdef MINGW
+#ifdef _MSC_VER
+#include "windows/config.h"
+#endif
+
+#ifdef _WIN32
#include <direct.h>
#include <io.h>
#else
#include <sys/stat.h>
#endif
-#if defined MINGW
+#ifdef _WIN32
#define MKDIR(x) mkdir(x)
#else
#define MKDIR(x) mkdir(x, S_IRWXU | S_IRWXG | S_IRWXO)
#endif
+
+#ifdef PATH_MAX
+#define THRIFT_PATH_MAX PATH_MAX
+#else
+#define THRIFT_PATH_MAX MAX_PATH
+#endif
* We should revert the Makefile.am changes once Apple ships a reasonable
* GCC.
*/
+#ifdef __GNUC__
#pragma GCC diagnostic ignored "-Wunused-function"
#pragma GCC diagnostic ignored "-Wunused-label"
+#endif
+
+#ifdef _MSC_VER
+//warning C4102: 'find_rule' : unreferenced label
+#pragma warning(disable:4102)
+//avoid isatty redefinition
+#define YY_NEVER_INTERACTIVE 1
+#endif
#include <cassert>
#include <string>
#include <errno.h>
#include <stdlib.h>
+#ifdef _MSC_VER
+#include "windows/config.h"
+#endif
#include "main.h"
#include "globals.h"
#include "parse/t_program.h"
#include <stdint.h>
#endif
#include <limits.h>
+#ifdef _MSC_VER
+#include "windows/config.h"
+#endif
#include "main.h"
#include "globals.h"
#include "parse/t_program.h"
#include "parse/t_scope.h"
+#ifdef _MSC_VER
+//warning C4065: switch statement contains 'default' but no 'case' labels
+#pragma warning(disable:4065)
+#endif
+
/**
* This global variable is used for automatic numbering of field indices etc.
* when parsing the members of a struct. Field values are automatically
pwarning(1, "64-bit value supplied for enum %s.\n", $2);
}
validate_simple_identifier( $2);
- $$ = new t_enum_value($2, $4);
+ $$ = new t_enum_value($2, static_cast<int>($4));
if ($1 != NULL) {
$$->set_doc($1);
}
delete $7;
}
}
-
+
XsdAll:
tok_xsd_all
{
* Leave $1 as-is, and update y_field_val to be one less than $1.
* The FieldList parsing will catch any duplicate key values.
*/
- y_field_val = $1 - 1;
- $$.value = $1;
+ y_field_val = static_cast<int32_t>($1 - 1);
+ $$.value = static_cast<int32_t>($1);
$$.auto_assigned = false;
} else {
- pwarning(1, "Nonpositive value (%"PRIi64") not allowed as a field key.\n",
+ pwarning(1, "Nonpositive value (%d) not allowed as a field key.\n",
$1);
$$.value = y_field_val--;
$$.auto_assigned = true;
}
} else {
- $$.value = $1;
+ $$.value = static_cast<int32_t>($1);
$$.auto_assigned = false;
}
}
#define PRIu64 "I64d"
#define PRIi64 "I64d"
+// squelch deprecation warnings
#pragma warning(disable:4996)
+// squelch bool conversion performance warning
+#pragma warning(disable:4800)
+
#endif // _THRIFT_WINDOWS_CONFIG_H_
#error "This is a Windows header only"
#endif
-#define PATH_MAX MAX_PATH
#define THRIFT_VERSION "@PACKAGE_VERSION@"
-#ifndef S_ISDIR
-#define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
-#endif
-
-#ifndef S_ISREG
-#define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)
-#endif
-
#endif // _THRIFT_WINDOWS_VERSION_H_
--without-go \
--without-d \
--build=i686-pc-linux-gnu \
- --host=i586-mingw32msvc \
- CPPFLAGS='-DMINGW'
+ --host=i586-mingw32msvc
make