Giter Site home page Giter Site logo

Comments (5)

phatboyg avatar phatboyg commented on June 5, 2024 1

Yeah, I'm thinking we can change this a lot and go to a factory model similar to how Automatonymous does it for activities.

from machete.

ahives avatar ahives commented on June 5, 2024

Yeah was a little confused at first with the current syntax because CreateTranslator sort of implies that a new Translator is created when in reality the Translator is executing a new Translate. So, instead of CreateTranslate it should be just .Translate(...) similar to .Query(...).

Also, some of other things would be:

  1. Drop the word Map from the names of Translate base classes like HL7ComponentTranslateMap, HL7SegmentTranslateMap, etc.

  2. Change signature of base classes from:
    public abstract class HL7SegmentTranslateMap<TResult, TInput, TSchema> :
    HL7EntityTranslateMap<TResult, TInput, TSchema>
    where TSchema : HL7Entity
    where TInput : TSchema, HL7Segment
    where TResult : TSchema, HL7Segment

...and...

public abstract class HL7ComponentTranslateMap<TResult, TInput, TSchema> :
    HL7EntityTranslateMap<TResult, TInput, TSchema>
    where TSchema : HL7Entity
    where TInput : TSchema, HL7Component
    where TResult : TSchema, HL7Component

In all the examples we have, TResult and TInput are the same so why different inputs. For example,
HL7ComponentTranslateMap<MSG, MSG, HL7Entity>

...could look like this...

HL7ComponentTranslate<MSG, HL7Entity>

from machete.

phatboyg avatar phatboyg commented on June 5, 2024

Yeah but Map is consistent with other usages, although people using Machete aren't defining their own schema, so they'd be unfamiliar with the Map suffix anyway.

In this case, it's really to create a translator, right? So...

HL7ComponentTranslator<MSG, HL7Entity>

Or is it a Translation which is used to create the Translator which actually performs the translation.

from machete.

ahives avatar ahives commented on June 5, 2024

I still like the word Translator to be reserved for the engine and Translate be reserved for describing the action.

The reason why I don't like Map here is because it implies mapping to a schema almost.

from machete.

phatboyg avatar phatboyg commented on June 5, 2024

So I think I've converted this all to use the default constructor.

from machete.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.