blob: 54b667a584d8ff93b69ff4f68e4d104b0bf85617 [file]
// 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.
#ifndef IMPALA_RUNTIME_BUFFER_ALLOCATOR_H
#define IMPALA_RUNTIME_BUFFER_ALLOCATOR_H
#include "common/status.h"
namespace impala {
/// The underlying memory allocator for the buffer pool. All buffers are allocated through
/// the BufferPool's BufferAllocator. The allocator only handles allocating buffers that
/// are power-of-two multiples of the minimum buffer length.
///
/// TODO:
/// * Allocate memory with mmap() instead of malloc().
/// * Implement free lists in the allocator or external to the allocator.
class BufferAllocator {
public:
BufferAllocator(int64_t min_buffer_len);
/// Allocate memory for a buffer of 'len' bytes. 'len' must be a power-of-two multiple
/// of the minimum buffer length.
Status Allocate(int64_t len, uint8_t** buffer);
/// Free the memory for a previously-allocated buffer.
void Free(uint8_t* buffer, int64_t len);
private:
const int64_t min_buffer_len_;
};
}
#endif