protofilters

package module
v0.8.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 15, 2023 License: Apache-2.0 Imports: 10 Imported by: 1

README

Proto Filters

Go Reference

Proto filters provides a simple way to filter protobuf message based on field filter conditions.

Project status: alpha

Not all planned features are completed. The API, spec, status and other user facing objects are subject to change. We do not support backward-compatibility for the alpha releases.

Overview

The main filter construct is the Expression:

// Expression represent a complete condition
// fields are evaluated as the following expression:
// condition && and_exprs || or_exprs
message Expression {
  FieldFilter condition = 1;
  repeated Expression and_exprs = 2;
  repeated Expression or_exprs = 3;
}

The two message filtering types available follow the same pattern as google.protobuf.FieldMask:

message FieldsFilter {
  // filters is a map of <field path, Filter>
  map<string, Filter> filters = 1;
}
message FieldFilter {
    string field = 1;
    Filter filter = 2;
}

The message's Field is selected by its path and compared against the provided typed filter:

message Filter {
  oneof match {
    StringFilter string = 1;
    NumberFilter number = 2;
    BoolFilter bool = 3;
    NullFilter null = 4;
    TimeFilter time = 5;
    DurationFilter duration = 6;
  }
  // not negates the match result
  bool not = 7;
}

The typed filters are the following:

message StringFilter {
  message In {
    repeated string values = 1;
  }
  oneof condition {
    string equals = 1;
    string regex = 2;
    In in = 3;
  }
  bool case_insensitive = 4;
}

message NumberFilter {
  message In {
    repeated double values = 1;
  }
  oneof condition {
    double equals = 1;
    double sup = 2;
    double inf = 3;
    In in = 4;
  }
}

message NullFilter {}

message BoolFilter {
  bool equals = 1;
}

message TimeFilter {
  oneof condition {
    google.protobuf.Timestamp equals = 1;
    google.protobuf.Timestamp before = 2;
    google.protobuf.Timestamp after = 3;
  }
}

message DurationFilter {
  oneof condition {
    google.protobuf.Duration equals = 1;
    google.protobuf.Duration sup = 2;
    google.protobuf.Duration inf = 3;
  }
}

Usage

Download:

go get go.linka.cloud/protofilters

Basic example:

package main

import (
	"log"

	"google.golang.org/protobuf/types/known/wrapperspb"

	pf "go.linka.cloud/protofilters"
	"go.linka.cloud/protofilters/matcher"
	test "go.linka.cloud/protofilters/tests/pb"
)

func main() {
	m := &test.Test{
		BoolField:      true,
		BoolValueField: wrapperspb.Bool(false),
	}
	ok, err := matcher.MatchFilters(m, &pf.FieldFilter{Field: "bool_field", Filter: pf.True()})
	if err != nil {
		log.Fatalln(err)
	}
	if !ok {
		log.Fatalln("should be true")
	}
	ok, err = matcher.MatchFilters(m, &pf.FieldFilter{Field: "bool_value_field", Filter: pf.False()})
	if err != nil {
		log.Fatalln(err)
	}
	if !ok {
		log.Fatalln("should be true")
	}
}

TODOs

  • support more languages

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Match added in v0.2.1

func Match(msg proto.Message, f filters.FieldFilterer) (bool, error)

Match is a convenient method calling Match on the defaultMatcher

func MatchExpression deprecated added in v0.3.0

func MatchExpression(msg proto.Message, expr *filters.Expression) (bool, error)

Deprecated: MatchExpression match proto.Message against the given expression, Match should be used instead

func MatchFilters added in v0.2.1

func MatchFilters(msg proto.Message, fs ...*filters.FieldFilter) (bool, error)

MatchFilters is a convenient calling MatchFilters on the defaultMatcher

Types

type CachingMatcher added in v0.2.1

type CachingMatcher interface {
	Matcher
	// Clear clears the lookup cache
	Clear()
}

CachingMatcher is a Matcher that cache messages field path lookup results

func NewMatcher added in v0.2.1

func NewMatcher() CachingMatcher

NewMatcher creates a CachingMatcher

type Matcher added in v0.2.1

type Matcher interface {
	// Match matches to proto.Message against the protofilters.FieldsFilterer
	// It returns an error if one of the field path or FieldFilter is invalid
	Match(m proto.Message, f filters.FieldFilterer) (bool, error)
	// MatchFilters matches to proto.Message against the protofilters.FieldFilter slice
	// It returns an error if one of the field path or FieldFilter is invalid
	MatchFilters(m proto.Message, fs ...*filters.FieldFilter) (bool, error)

	MatchExpression(msg proto.Message, expr *filters.Expression) (bool, error)
}

Matcher provides a way to match proto.Message against protofilters.Filter

Directories

Path Synopsis
tests
pb

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL