[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [RESEND PATCH 08/12] golang/xenlight: add functional options to configure Context


  • To: Nick Rosbrook <rosbrookn@xxxxxxxxx>
  • From: George Dunlap <George.Dunlap@xxxxxxxxxx>
  • Date: Fri, 18 Jun 2021 16:18:44 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=citrix.com; dmarc=pass action=none header.from=citrix.com; dkim=pass header.d=citrix.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=wR/FLwG+HqsAqx2kOjn3nKF0NDAb9DW0DAztudyIirM=; b=RO5D9ga2LtptonTTacSho9bhDtUGcIGUbQ18K4X9/U7bv3hjQw8+S4Tr+L/EA5vyZMLjmSWiLEjmzO0rJMWMC5KJJ1IG4qtjuDGcBjQqXQkh9GuQBq6E9hpEg6f/Jh5iPGDzQI1YhZNiQ3s2EWOLCBbmfd5kiBwAbWaW1Gu8re5M4CqHqcX+/FeO1iEQwnOjsX7njkUs8YWnUNhkRwWWFMUad3nnjU+yciYnXNpB0yECJvTqnvvyBtcYd8uNjN7Tn6LrBcvTHBgGI0TRstI5zqM/b5DBtikWE3Fs84brB6n8vlqs8HM89Da1H9TrEzJqNakK9sAsP8QTFti7V9WRJA==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=Mjqj8JCwownivfsj/d1hBw9daand2ZmpDtBLaabBkai1QajaejuVg+gUW4vhZ5wsKXeYX1eLY5vV3HWWE7TlJTRqXBb1YksChCfTVG6wqUD3WFUV8OK8RM6c2ZdYQ0yGnii6ev9SG5pKqe565lbLH3ILLZ7fEM+n0o7TVy/MtJb9znztMH8jMgQg65dkyGLV2KzYQuT1YxBE15GXpW0JEjj3eSeEuXVBZyJQojh68oS7Rn4mX+uqF9aMCeCYYJReAkprRDswxH3ERDzMEtBDK1/3mAGCVQKyVH2a4BX+B6+lq1UvK2w+Jgeij8pyAo3hEMABbaDq92useUJ09/Tiuw==
  • Authentication-results: esa1.hc3370-68.iphmx.com; dkim=pass (signature verified) header.i=@citrix.onmicrosoft.com
  • Cc: xen-devel <xen-devel@xxxxxxxxxxxxxxxxxxxx>, Nick Rosbrook <rosbrookn@xxxxxxxxxxxx>, Ian Jackson <iwj@xxxxxxxxxxxxxx>, Wei Liu <wl@xxxxxxx>
  • Delivery-date: Fri, 18 Jun 2021 16:18:54 +0000
  • Ironport-hdrordr: A9a23:iiEdpKMgtibJL8BcTjujsMiBIKoaSvp037BK7S1MoNJuEvBw9v re+MjzsCWftN9/Yh4dcLy7VpVoIkmskKKdg7NhXotKNTOO0AeVxelZhrcKqAeQeREWmNQ96U 9hGZIOdeEZDzJB/LrHCN/TKade/DGFmprY+9s31x1WPGZXgzkL1XYDNu6ceHcGIjVuNN4CO7 e3wNFInDakcWR/VLXAOpFUN9Kz3uEijfjdEGY7OyI=
  • Ironport-sdr: pi0AL+V0vxbRqttopNs7cKEpn95qoshkb3qy9FfqEgcpwgOxXGP7fWe1CeIGHS8UR8IijNtfow QNFA6VVLDbgxaeL7G3vu9r/4ZBFV7qd+g184ktWQDxMibAR4wbxalIMqZXsxJkbZ6itEmkgps7 /7WDMIvnLBdHta/XxMWm5ZOANW5jyjqNtLsqIwbdfKHc2EP7MHoVObPsjIR5CQJC4stC3PwQxP 01PVJukjgjZLBH+ota4HpuvP/jCt+dG+svKSNVMp6NUoXWpJS7jmChlr2LUUTimvqDHga4CeGt Sfs=
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
  • Thread-index: AQHXUNzBxrtRVA/FskCGl/j6ZWY3UKsZ/xcAgAAG0ICAABOXAA==
  • Thread-topic: [RESEND PATCH 08/12] golang/xenlight: add functional options to configure Context


> On Jun 18, 2021, at 4:08 PM, Nick Rosbrook <rosbrookn@xxxxxxxxx> wrote:
> 
> On Fri, Jun 18, 2021 at 02:44:15PM +0000, George Dunlap wrote:
>> 
>> 
>>> On May 24, 2021, at 9:36 PM, Nick Rosbrook <rosbrookn@xxxxxxxxx> wrote:
>>> 
>>> Add a ContextOption type to support functional options in NewContext.
>>> Then, add a variadic ContextOption parameter to NewContext, which allows
>>> callers to specify 0 or more configuration options.
>>> 
>>> For now, just add the WithLogLevel option so that callers can set the
>>> log level of the Context's xentoollog_logger. Future configuration
>>> options can be created by adding an appropriate field to the
>>> contextOptions struct and creating a With<OptionName> function to return
>>> a ContextOption
>>> 
>>> Signed-off-by: Nick Rosbrook <rosbrookn@xxxxxxxxxxxx>
>>> ---
>>> tools/golang/xenlight/xenlight.go | 44 +++++++++++++++++++++++++++++--
>>> 1 file changed, 42 insertions(+), 2 deletions(-)
>>> 
>>> diff --git a/tools/golang/xenlight/xenlight.go 
>>> b/tools/golang/xenlight/xenlight.go
>>> index f68d7b6e97..65f93abe32 100644
>>> --- a/tools/golang/xenlight/xenlight.go
>>> +++ b/tools/golang/xenlight/xenlight.go
>>> @@ -136,7 +136,7 @@ func sigchldHandler(ctx *Context) {
>>> }
>>> 
>>> // NewContext returns a new Context.
>>> -func NewContext() (ctx *Context, err error) {
>>> +func NewContext(opts ...ContextOption) (ctx *Context, err error) {
>>>     ctx = &Context{}
>>> 
>>>     defer func() {
>>> @@ -146,8 +146,19 @@ func NewContext() (ctx *Context, err error) {
>>>             }
>>>     }()
>>> 
>>> +   // Set the default context options. These fields may
>>> +   // be modified by the provided opts.
>>> +   copts := &contextOptions{
>>> +           logLevel: LogLevelError,
>>> +   }
>>> +
>>> +   for _, opt := range opts {
>>> +           opt.apply(copts)
>>> +   }
>>> +
>>>     // Create a logger
>>> -   ctx.logger = C.xtl_createlogger_stdiostream(C.stderr, C.XTL_ERROR, 0)
>>> +   ctx.logger = C.xtl_createlogger_stdiostream(C.stderr,
>>> +           C.xentoollog_level(copts.logLevel), 0)
>>> 
>>>     // Allocate a context
>>>     ret := C.libxl_ctx_alloc(&ctx.ctx, C.LIBXL_VERSION, 0,
>>> @@ -201,6 +212,35 @@ func (ctx *Context) Close() error {
>>>     return nil
>>> }
>>> 
>>> +type contextOptions struct {
>>> +   logLevel LogLevel
>>> +}
>>> +
>>> +// ContextOption is used to configure options for a Context.
>>> +type ContextOption interface {
>>> +   apply(*contextOptions)
>>> +}
>>> +
>>> +type funcContextOption struct {
>>> +   f func(*contextOptions)
>>> +}
>>> +
>>> +func (fco *funcContextOption) apply(c *contextOptions) {
>>> +   fco.f(c)
>>> +}
>> 
>> Why all this convolution with interfaces and such, rather than just defining 
>> ContextOption as a function pointer?  Is it just to keep contextOptions out 
>> of the documentation page?
> 
> Part of the motivation for using functional options is to abstract the
> "options" struct, yes. This allows internal defaults to be applied more
> easily -- if you require e.g. a ContextOptions struct to be passed by
> the caller, how do you know if they intended to override a default, or
> if they just didn't set the field? Additionally, using the ContextOption
> as an interface allows variadic arguments, which are just convenient for
> API users -- the same NewContext function can be used whether you need
> to pass 3 options or 0.
> 
> The reason we use ContextOption as an interface, rather than function
> pointer of sorts is for flexibility in the signatures of ContextOption
> implementations. E.g., we could have
> 
> func WithLogLevel(lvl LogLevel) ContextOption
> func WithLogContext(s string) ContextOption
> func WithFooAndBar(s string, n int) ContextOption
> 
> See [1] for more background on this pattern.
> 
> Thanks,
> NR
> 
> [1] https://dave.cheney.net/2014/10/17/functional-options-for-friendly-apis

Yes, I frequently use a pattern like the one described in that blog post 
myself.  But that blog post doesn’t use interfaces — the final slide actually 
has the “option function” type as an open-coded function pointer type.

So my question was, why not do something like this:

type ContextOption func(*contextOptions) error

func WithLogLevel(level LogLevel) ContextOption {
  return func(co *contextOptions) {
    co.logLevel = level
  }
}

ATM the only advantage I can see of defining ContextOption as an interface 
rather than as a function pointer is that the godoc for ContextOption would 
look like:

type ContextOption interface {
   // contains filtered or unexported fields
}

Rather than

type ContextOption func(*contextOptions) error

Which shows you the name of the unexported field.

Is there another reason I missed?

 -George

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.