mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-06-28 16:41:01 +03:00
smallwrite_dump: use StdioFile
This commit is contained in:
parent
9f0bc429b4
commit
82606b3ffe
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015-2016, Intel Corporation
|
* Copyright (c) 2015-2017, Intel Corporation
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions are met:
|
* modification, are permitted provided that the following conditions are met:
|
||||||
@ -34,6 +34,7 @@
|
|||||||
#include "nfa/nfa_build_util.h"
|
#include "nfa/nfa_build_util.h"
|
||||||
#include "nfa/nfa_dump_api.h"
|
#include "nfa/nfa_dump_api.h"
|
||||||
#include "nfa/nfa_internal.h"
|
#include "nfa/nfa_internal.h"
|
||||||
|
#include "util/dump_util.h"
|
||||||
|
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
#include <string>
|
#include <string>
|
||||||
@ -74,9 +75,8 @@ void smwrDumpNFA(const SmallWriteEngine *smwr, bool dump_raw,
|
|||||||
nfaGenerateDumpFiles(n, base + "smallwrite_nfa");
|
nfaGenerateDumpFiles(n, base + "smallwrite_nfa");
|
||||||
|
|
||||||
if (dump_raw) {
|
if (dump_raw) {
|
||||||
FILE *f = fopen((base + "smallwrite_nfa.raw").c_str(), "w");
|
StdioFile f(base + "smallwrite_nfa.raw", "w");
|
||||||
fwrite(n, 1, n->length, f);
|
fwrite(n, 1, n->length, f);
|
||||||
fclose(f);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user