blob: 0af6b29bc5819e6ff5cdbee51801234f33c902de [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.
*/
#define C_LUCY_SKIPSTEPPER
#include <stdio.h>
#include "Lucy/Util/ToolSet.h"
#include "Lucy/Index/SkipStepper.h"
#include "Lucy/Store/Folder.h"
#include "Lucy/Store/InStream.h"
#include "Lucy/Store/OutStream.h"
SkipStepper*
SkipStepper_new() {
SkipStepper *self = (SkipStepper*)VTable_Make_Obj(SKIPSTEPPER);
// Init.
self->doc_id = 0;
self->filepos = 0;
return self;
}
void
SkipStepper_set_id_and_filepos(SkipStepper *self, int32_t doc_id,
int64_t filepos) {
self->doc_id = doc_id;
self->filepos = filepos;
}
void
SkipStepper_read_record(SkipStepper *self, InStream *instream) {
self->doc_id += InStream_Read_C32(instream);
self->filepos += InStream_Read_C64(instream);
}
CharBuf*
SkipStepper_to_string(SkipStepper *self) {
char *ptr = (char*)MALLOCATE(60);
size_t len = sprintf(ptr, "skip doc: %u file pointer: %" I64P,
self->doc_id, self->filepos);
return CB_new_steal_from_trusted_str(ptr, len, 60);
}
void
SkipStepper_write_record(SkipStepper *self, OutStream *outstream,
int32_t last_doc_id, int64_t last_filepos) {
const int32_t delta_doc_id = self->doc_id - last_doc_id;
const int64_t delta_filepos = self->filepos - last_filepos;
// Write delta doc id.
OutStream_Write_C32(outstream, delta_doc_id);
// Write delta file pointer.
OutStream_Write_C64(outstream, delta_filepos);
}