| /* 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; |
| |
| /** File system FileHandle. |
| */ |
| class Lucy::Store::FSFileHandle nickname FSFH |
| inherits Lucy::Store::FileHandle { |
| |
| int fd; |
| void *win_fhandle; |
| void *win_maphandle; |
| int64_t len; |
| int64_t page_size; |
| char *buf; |
| |
| /** Return a new FSFileHandle, or set the global error object returned by |
| * [](cfish:cfish.Err.get_error) and return NULL if something goes wrong. |
| * |
| * @param path Filepath. |
| * @param flags FileHandle constructor flags. |
| */ |
| inert incremented nullable FSFileHandle* |
| open(String *path = NULL, uint32_t flags); |
| |
| inert nullable FSFileHandle* |
| do_open(FSFileHandle *self, String *path = NULL, uint32_t flags); |
| |
| bool |
| Window(FSFileHandle *self, FileWindow *window, int64_t offset, int64_t len); |
| |
| bool |
| Release_Window(FSFileHandle *self, FileWindow *window); |
| |
| bool |
| Read(FSFileHandle *self, char *dest, int64_t offset, size_t len); |
| |
| bool |
| Write(FSFileHandle *self, const void *data, size_t len); |
| |
| int64_t |
| Length(FSFileHandle *self); |
| |
| bool |
| Close(FSFileHandle *self); |
| |
| /** Only for testing. |
| */ |
| int |
| Set_FD(FSFileHandle *self, int fd); |
| } |
| |
| |