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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: TestFixedWidthTextReader.cxx,v $
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/*----------------------------------------------------------------------------
Copyright (c) Sandia Corporation
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
----------------------------------------------------------------------------*/
#include <vtkFixedWidthTextReader.h>
#include <vtkStringArray.h>
#include <vtkTable.h>
#include <vtkVariant.h>
#include <vtkVariantArray.h>
#include <vtkTestUtilities.h>
#include <vtkIOStream.h>
int
TestFixedWidthTextReader(int argc, char *argv[])
{
cout << "### Pass 1: No headers, field width 10, do not strip whitespace" << endl;
vtkIdType i, j;
char *filename = vtkTestUtilities::ExpandDataFileName(argc, argv,
"Data/fixedwidth.txt");
cout << "Filename: " << filename << endl;
vtkFixedWidthTextReader *reader = vtkFixedWidthTextReader::New();
reader->SetHaveHeaders(false);
reader->SetFieldWidth(10);
reader->StripWhiteSpaceOff();
reader->SetFileName(filename);
reader->Update();
cout << "Printing reader info..." << endl;
reader->Print(cout);
vtkTable *table = reader->GetOutput();
cout << "FixedWidth text file has " << table->GetNumberOfRows()
<< " rows" << endl;
cout << "FixedWidth text file has " << table->GetNumberOfColumns()
<< " columns" << endl;
cout << "Column names: " << endl;
for (i = 0; i < table->GetNumberOfColumns(); ++i)
{
cout << "\tColumn " << i << ": " << table->GetColumn(i)->GetName() << endl;
}
cout << "Table contents:" << endl;
for (i = 0; i < table->GetNumberOfRows(); ++i)
{
vtkVariantArray *row = table->GetRow(i);
for (j = 0; j < row->GetNumberOfTuples(); ++j)
{
cout << "Row " << i << " column " << j << ": ";
vtkVariant value = row->GetValue(j);
if (! value.IsValid())
{
cout << "invalid value" << endl;
}
else
{
cout << "type " << value.GetTypeAsString() << " value "
<< value.ToString() << endl;
}
}
row->Delete();
}
reader->Delete();
delete [] filename;
reader = vtkFixedWidthTextReader::New();
filename = vtkTestUtilities::ExpandDataFileName(argc, argv,
"Data/fixedwidth.txt");
reader->HaveHeadersOn();
reader->SetFieldWidth(10);
reader->StripWhiteSpaceOn();
reader->SetFileName(filename);
reader->Update();
table = reader->GetOutput();
cout << endl << "### Test 2: headers, field width 10, strip whitespace" << endl;
cout << "Printing reader info..." << endl;
reader->Print(cout);
cout << "FixedWidth text file has " << table->GetNumberOfRows()
<< " rows" << endl;
cout << "FixedWidth text file has " << table->GetNumberOfColumns()
<< " columns" << endl;
cout << "Column names: " << endl;
for (i = 0; i < table->GetNumberOfColumns(); ++i)
{
cout << "\tColumn " << i << ": " << table->GetColumn(i)->GetName() << endl;
}
cout << "Table contents:" << endl;
for (i = 0; i < table->GetNumberOfRows(); ++i)
{
vtkVariantArray *row = table->GetRow(i);
for (j = 0; j < row->GetNumberOfTuples(); ++j)
{
cout << "Row " << i << " column " << j << ": ";
vtkVariant value = row->GetValue(j);
if (! value.IsValid())
{
cout << "invalid value" << endl;
}
else
{
cout << "type " << value.GetTypeAsString() << " value "
<< value.ToString() << endl;
}
}
row->Delete();
}
reader->Delete();
delete [] filename;
return 0;
}
|