blob: ef9ca3032be3ff21878b647cf65a4c4a37250b9f [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#include "kudu/cfile/cfile_util.h"
#include <glog/logging.h>
#include <algorithm>
#include <string>
#include "kudu/cfile/cfile_reader.h"
#include "kudu/util/env.h"
#include "kudu/util/mem_tracker.h"
namespace kudu {
namespace cfile {
using std::string;
static const int kBufSize = 1024*1024;
Status DumpIterator(const CFileReader& reader,
CFileIterator* it,
std::ostream* out,
const DumpIteratorOptions& opts,
int indent) {
Arena arena(8192, 8*1024*1024);
uint8_t buf[kBufSize];
const TypeInfo *type = reader.type_info();
size_t max_rows = kBufSize/type->size();
uint8_t nulls[BitmapSize(max_rows)];
ColumnBlock cb(type, reader.is_nullable() ? nulls : nullptr, buf, max_rows, &arena);
string strbuf;
size_t count = 0;
while (it->HasNext()) {
size_t n = opts.nrows == 0 ? max_rows : std::min(max_rows, opts.nrows - count);
if (n == 0) break;
RETURN_NOT_OK(it->CopyNextValues(&n, &cb));
if (opts.print_rows) {
if (reader.is_nullable()) {
for (size_t i = 0; i < n; i++) {
strbuf.append(indent, ' ');
const void *ptr = cb.nullable_cell_ptr(i);
if (ptr != nullptr) {
type->AppendDebugStringForValue(ptr, &strbuf);
} else {
strbuf.append("NULL");
}
strbuf.push_back('\n');
}
} else {
for (size_t i = 0; i < n; i++) {
strbuf.append(indent, ' ');
type->AppendDebugStringForValue(cb.cell_ptr(i), &strbuf);
strbuf.push_back('\n');
}
}
*out << strbuf;
strbuf.clear();
}
arena.Reset();
count += n;
}
VLOG(1) << "Dumped " << count << " rows";
return Status::OK();
}
ReaderOptions::ReaderOptions()
: parent_mem_tracker(MemTracker::GetRootTracker()) {
}
} // namespace cfile
} // namespace kudu