1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-FileCopyrightText: Copyright 2009 Sandia Corporation
// SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov
/**
* @class vtkJavaScriptDataWriter
* @brief A Javascript data writer for vtkTable
* Writes a vtkTable into a Javascript data format.
*/
#ifndef vtkJavaScriptDataWriter_h
#define vtkJavaScriptDataWriter_h
#include "vtkIOCoreModule.h" // For export macro
#include "vtkWriter.h"
VTK_ABI_NAMESPACE_BEGIN
class vtkTable;
class VTKIOCORE_EXPORT vtkJavaScriptDataWriter : public vtkWriter
{
public:
static vtkJavaScriptDataWriter* New();
vtkTypeMacro(vtkJavaScriptDataWriter, vtkWriter);
void PrintSelf(ostream& os, vtkIndent indent) override;
///@{
/**
* Get/set the name of the Javascript variable that the dataset will be assigned to.
* The default value is "data", so the javascript code generated by the filter will
* look like this: "var data = [ ... ];". If VariableName is set to nullptr, then no
* assignment statement will be generated (i.e., only "[ ... ];" will be generated).
*/
vtkSetStringMacro(VariableName);
vtkGetStringMacro(VariableName);
///@}
///@{
/**
* Get/Set the filename for the file.
*/
vtkSetFilePathMacro(FileName);
vtkGetFilePathMacro(FileName);
///@}
///@{
/**
* Get/Set the whether or not to include field names
* When field names are on you will get data output
* that looks like this:
* var data=[
* {foo:3,time:"2009-11-04 16:09:42",bar:1 },
* {foo:5,time:"2009-11-04 16:11:22",bar:0 },
* without field names the data will be an array
* of arrays like this:
* var data=[
* [3,"2009-11-04 16:09:42",1],
* [5,"2009-11-04 16:11:22",0],
* Default is ON (true)
*/
vtkSetMacro(IncludeFieldNames, bool);
vtkGetMacro(IncludeFieldNames, bool);
///@}
// Get/Set the OutputStream for writing output.
void SetOutputStream(ostream* my_stream);
ostream* GetOutputStream();
protected:
vtkJavaScriptDataWriter();
~vtkJavaScriptDataWriter() override;
bool OpenFile();
void CloseFile();
void WriteData() override;
virtual void WriteTable(vtkTable* table, ostream* stream_ptr);
// see algorithm for more info.
// This writer takes in vtkTable.
int FillInputPortInformation(int port, vtkInformation* info) override;
char* VariableName;
char* FileName;
bool IncludeFieldNames;
ostream* OutputStream;
private:
vtkJavaScriptDataWriter(const vtkJavaScriptDataWriter&) = delete;
void operator=(const vtkJavaScriptDataWriter&) = delete;
ostream* OutputFile;
};
VTK_ABI_NAMESPACE_END
#endif
|