blob: cfd6ae84acf8f577c0913452df0b86487243bcbd [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_SPAN
#include "Lucy/Util/ToolSet.h"
#include "Lucy/Search/Span.h"
Span*
Span_new(int32_t offset, int32_t length, float weight) {
Span *self = (Span*)VTable_Make_Obj(SPAN);
return Span_init(self, offset, length, weight);
}
Span*
Span_init(Span *self, int32_t offset, int32_t length,
float weight) {
self->offset = offset;
self->length = length;
self->weight = weight;
return self;
}
int32_t
Span_get_offset(Span *self) {
return self->offset;
}
int32_t
Span_get_length(Span *self) {
return self->length;
}
float
Span_get_weight(Span *self) {
return self->weight;
}
void
Span_set_offset(Span *self, int32_t offset) {
self->offset = offset;
}
void
Span_set_length(Span *self, int32_t length) {
self->length = length;
}
void
Span_set_weight(Span *self, float weight) {
self->weight = weight;
}
int32_t
Span_compare_to(Span *self, Obj *other) {
Span *competitor = (Span*)CERTIFY(other, SPAN);
int32_t comparison = self->offset - competitor->offset;
if (comparison == 0) { comparison = self->length - competitor->length; }
return comparison;
}