The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
/* 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.
 */

parcel Lucy;

/** In-memory Folder implementation.
 *
 * RAMFolder is an entirely in-memory implementation of
 * L<Lucy::Store::Folder>, primarily used for testing and development.
 */

public class Lucy::Store::RAMFolder inherits Lucy::Store::Folder {

    inert incremented RAMFolder*
    new(String *path = NULL);

    /**
     * @param path Relative path, used for subfolders.
     */
    public inert RAMFolder*
    init(RAMFolder *self, String *path = NULL);

    public void
    Initialize(RAMFolder *self);

    public bool
    Check(RAMFolder *self);

    public void
    Close(RAMFolder *self);

    incremented nullable FileHandle*
    Local_Open_FileHandle(RAMFolder *self, String *name, uint32_t flags);

    incremented nullable DirHandle*
    Local_Open_Dir(RAMFolder *self);

    bool
    Local_MkDir(RAMFolder *self, String *name);

    bool
    Local_Exists(RAMFolder *self, String *name);

    bool
    Local_Is_Directory(RAMFolder *self, String *name);

    nullable Folder*
    Local_Find_Folder(RAMFolder *self, String *name);

    bool
    Local_Delete(RAMFolder *self, String *name);

    public bool
    Rename(RAMFolder *self, String* from, String *to);

    public bool
    Hard_Link(RAMFolder *self, String *from, String *to);
}