Sha256: 340864aa7e49572db5ac659daf33b4fba93bc21830e2eec8952771e34174cdb2

Contents?: true

Size: 1.05 KB

Versions: 1

Compression:

Stored size: 1.05 KB

Contents

include Streamdal::Protos

module Schemas
  def _set_schema(aud, schema)
    s = Streamdal::Protos::Schema.new
    s.json_schema = schema
    @schemas[aud_to_str(aud)] = s
  end

  def _get_schema(aud)
    if @schemas.key?(aud_to_str(aud))
      return @schemas[aud_to_str(aud)].json_schema
    end

    ""
  end

  def _handle_schema(aud, step, wasm_resp)
    # Only handle schema steps
    if step.infer_schema.nil?
      return nil
    end

    # Only successful schema inferences
    if wasm_resp.exit_code != :WASM_EXIT_CODE_TRUE
      return nil
    end

    # If existing schema matches, do nothing
    existing_schema = _get_schema(aud)
    if existing_schema == wasm_resp.output_step
      return nil
    end

    _set_schema(aud, wasm_resp.output_step)

    req = Streamdal::Protos::SendSchemaRequest.new
    req.audience = aud
    req.schema = Streamdal::Protos::Schema.new
    req.schema.json_schema = wasm_resp.output_step

    # Run in thread so we don't block on gRPC call
    Thread.new do
      @stub.send_schema(req, metadata: _metadata)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
streamdal-0.0.1 lib/schema.rb