Re: [netmod] Module tags

Martin Bjorklund <mbj@tail-f.com> Thu, 09 February 2017 07:55 UTC

Return-Path: <mbj@tail-f.com>
X-Original-To: netmod@ietfa.amsl.com
Delivered-To: netmod@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 6634A1298BF for <netmod@ietfa.amsl.com>; Wed, 8 Feb 2017 23:55:11 -0800 (PST)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.901
X-Spam-Level:
X-Spam-Status: No, score=-1.901 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UGF2KwkXztAt for <netmod@ietfa.amsl.com>; Wed, 8 Feb 2017 23:55:10 -0800 (PST)
Received: from mail.tail-f.com (mail.tail-f.com [46.21.102.45]) by ietfa.amsl.com (Postfix) with ESMTP id 40C781295EE for <netmod@ietf.org>; Wed, 8 Feb 2017 23:55:10 -0800 (PST)
Received: from localhost (unknown [173.38.220.46]) by mail.tail-f.com (Postfix) with ESMTPSA id 461551AE012C; Thu, 9 Feb 2017 08:55:08 +0100 (CET)
Date: Thu, 09 Feb 2017 08:55:06 +0100
Message-Id: <20170209.085506.1418859449501855827.mbj@tail-f.com>
To: chopps@chopps.org
From: Martin Bjorklund <mbj@tail-f.com>
In-Reply-To: <87r338gtzw.fsf@chopps.org>
References: <87shnogymx.fsf@chopps.org> <20170208.231709.2214078600549867460.mbj@tail-f.com> <87r338gtzw.fsf@chopps.org>
X-Mailer: Mew version 6.7 on Emacs 24.5 / Mule 6.0 (HANACHIRUSATO)
Mime-Version: 1.0
Content-Type: Text/Plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Archived-At: <https://mailarchive.ietf.org/arch/msg/netmod/CetRTEu_aplT34hBLjnpY6SqdF8>
Cc: netmod@ietf.org
Subject: Re: [netmod] Module tags
X-BeenThere: netmod@ietf.org
X-Mailman-Version: 2.1.17
Precedence: list
List-Id: NETMOD WG list <netmod.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/netmod>, <mailto:netmod-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/netmod/>
List-Post: <mailto:netmod@ietf.org>
List-Help: <mailto:netmod-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/netmod>, <mailto:netmod-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 09 Feb 2017 07:55:11 -0000

Christian Hopps <chopps@chopps.org> wrote:
> Martin Bjorklund <mbj@tail-f.com> writes:
> >> > Also I am not sure it is a good idea to add configuration meta-data
> >> > that really should be common across all modules into the modules
> >> > themselves.  Another approach is to keep a separate list with the
> >> > tags, indexed by modulename and revision.
> >>
> >> I don't understand what your getting at here. Are you referring to the
> >> grouping that gets used by a module author inside their module? The tags
> >> set for a given module are specific to that module only.
> >
> > I meant that instead of using the grouping in every module, you could
> > have a separate structure in your module:
> >
> >   container module-tags {
> >     list module {
> >       key "name revision";
> >       leaf name { ... }
> >       leaf revisoin { ...}
> >       leaf-list tag { ... }
> >     }
> >   }
> >
> > This way you will handle configuration of tags for all modules, and
> > they don't have to have a special uses statement.
> 
> 
> The reason I went with the grouping and in-module list was that I
> thought one could then create selecting xpath expressions, e.g.,
> 
>    get foobar-value[../tags="ietf:implements:foobar"]

I'm not sure I understand what you're after, but I am pretty sure that
if it can be done with a per-module structure that you propose, then
it can also be done with a single structure.

Is the idea that you want to read a certain leaf in a certain module,
but only if that module has been dynamically tagged with a certain
tag?

> I'm not sure if netconf supports this use of xpath directly, but one can
> imagine other systems or protocols supporting it.

NETCONF does support XPath filtering.


/martin