[rohc] IMPL-EFF TCP/IP EPIC profile
Julije Ozegovic <julije@fesb.hr> Thu, 07 March 2002 14:38 UTC
Received: from optimus.ietf.org (ietf.org [132.151.1.19] (may be forged))
by ietf.org (8.9.1a/8.9.1a) with ESMTP id JAA26862
for <rohc-archive@odin.ietf.org>; Thu, 7 Mar 2002 09:38:12 -0500 (EST)
Received: from optimus.ietf.org (localhost [127.0.0.1])
by optimus.ietf.org (8.9.1a/8.9.1) with ESMTP id JAA27087;
Thu, 7 Mar 2002 09:35:16 -0500 (EST)
Received: from ietf.org (odin [132.151.1.176])
by optimus.ietf.org (8.9.1a/8.9.1) with ESMTP id JAA27014
for <rohc@optimus.ietf.org>; Thu, 7 Mar 2002 09:35:08 -0500 (EST)
Received: from marjan.fesb.hr (root@marjan.fesb.hr [161.53.166.3])
by ietf.org (8.9.1a/8.9.1a) with ESMTP id JAA26680
for <rohc@ietf.org>; Thu, 7 Mar 2002 09:35:02 -0500 (EST)
Received: (from root@localhost) by marjan.fesb.hr (8.9.3/8.9.3) id PAA23541
for rohc@ietf.org; Thu, 7 Mar 2002 15:34:55 +0100 (MET)
Received: from fesb.hr (demorgan.bit.fesb.hr [161.53.169.245])
by marjan.fesb.hr (8.9.3/8.9.3) with ESMTP id PAA23499;
Thu, 7 Mar 2002 15:34:14 +0100 (MET)
Message-ID: <3C877B68.4030705@fesb.hr>
Date: Thu, 07 Mar 2002 15:38:32 +0100
From: Julije Ozegovic <julije@fesb.hr>
Organization: FESB Split
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US;
rv:0.9.2) Gecko/20010726 Netscape6/6.1
X-Accept-Language: en, hr
MIME-Version: 1.0
To: "West, Mark (ITN)" <mark.a.west@roke.co.uk>
CC: "Hongbin Liao (Intl Staffing)" <i-hbliao@microsoft.com>,
Qian Zhang <qianz@microsoft.com>, rohc <rohc@ietf.org>
References: <F4C77846CEE593418BE5AB7B6A83111E0465F4B9@bjs-msg-01.fareast.corp.microsoft.com>
<3C869799.5030706@roke.co.uk>
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
X-Virus-Scanned: by AMaViS perl-11
Content-Transfer-Encoding: 7bit
Subject: [rohc] IMPL-EFF TCP/IP EPIC profile
Sender: rohc-admin@ietf.org
Errors-To: rohc-admin@ietf.org
X-Mailman-Version: 1.0
Precedence: bulk
List-Id: Robust Header Compression <rohc.ietf.org>
X-BeenThere: rohc@ietf.org
Content-Transfer-Encoding: 7bit
Hi,
I think this important issue deserves new thread!
The question of computing efficacy (when compressing and
decompressing) starts with "implementation specific" dilemma:
1. Interpreter:
Interpreting implementation benefits of larger flexibility in
changing and adding supported profiles.
Of course, I do not mean pure "text" interpreter, but rather
specific "profile compiler" that builds necessary data
structures in "off line processing phase", and then traverses
through them during the compression and decompression process
("on line processing phase").
In this approach, it is easy to submit new profile and compile
it, without need to change internal interpreting engine. that
means that application does not need to be changed or recompiled
for every new profile.
2. Compiler:
Compiled implementation is much more "computational efficient",
regarding the fact that profile structure is built in code
itself. However, adding new profile requires application to be
recompiled. It can hardly be done online.
Toolbox methods and general online framework can be common, and
recompiled for every (set of) supported profile(s). A kind of
EPIC library can be distributed to ease this procedure.
3. Conclusion:
It seem that everybody is concerning "interpreting application".
4. UNI Split implementation
Implementation at University of Split is interpreting one. We
build dynamic (profile specific) structures in the memory from
the text written profile. Compressor - decompressor engine is
protocol independent. Its duty is to engage appropriate toolbox
method, regarding state of the engine, context, and state of the
process (header field concerned, along the profile). At the
moment, the "simple TCP/IP profile" is supported.
When rising the issue of complexity few days ago, I was
motivated by the complexity of data structures needed to
support protocol independent engine of interpreting
implementation, regarding the new "complex TCP/IP profile".
However, we did not succeed to compile it yet, so I can not give
you actual numbers.
Best regards,
Julije Ozegovic
West, Mark (ITN) wrote:
>
> Hi Hongbin,
>
> Ok - when you choose the encodings, you need to build up some indicator
> for the selected set of encodings. These need to be mapped to a node in
> the Huffman tree (at the compressor).
>
> In the ideal case, you'd be able to do the mapping in constant time
> (that is a pair of tables, indexed on 'format identifier' and 'prefix').
> Naturally this would take too much memory, so is not really practical.
>
> However, suitable constructs like hash-tables should be able to do the
> mapping in very near to constant time.
>
> At the decompressor, you need to be able to go from a prefix to a tree
> node and, hence, to a format indicator (and set of encodings). The
> decoding of the Huffman prefix is linear with respect to the range of
> prefix lengths. That is, if there are prefixes of 1 bit to 10 bits
> long, then it will take at most 10 comparisons to identify the node.
> Also, in this case, the shorter prefixes are more likely, and more
> efficient.
>
> With regard to the mappings, there is some degree of space/time
> trade-off. However, there is no obvious area of inefficiency.
>
> I can give more detail, if this would help?
>
> Cheers,
>
> Mark.
>
>
> Hongbin Liao (Intl Staffing) wrote:
>
> > Hi, Mark
> > The overhead (time and space) of encoding a compressed packet
> > can be splitted into two parts. One part is encoding for each fields,
> > and the other part is the overhead of selecting the indicator (or flag)
> > to indicate the encoding methods of all fields. Clear, the overhead of
> > the former should be linearly to the number of fields. However, how
> > about the overhead of the later part or the overhead of determining
> > which Huffman prefix (function 'get-indicator-flags' in ROHC-LITE)
> > should be used in the compressed packet?
> >
> > Hongbin L.
> > 03/06/2002
> >
> >
> >
> >>-----Original Message-----
> >>From: West, Mark (ITN) [mailto:mark.a.west@roke.co.uk]
> >>Sent: Wednesday, March 06, 2002 8:01 AM
> >>To: Qian Zhang
> >>Cc: Julije Ozegovic; rohc
> >>Subject: Re: [rohc] TCP/IP EPIC profile
> >>
> >>
> >>
> >>Hi Qian,
> >>
> >>Thanks for these comments, which raise some important and
> >>interesting issues. I've added some comments of my own!
> >>
> >>Cheers,
> >>
> >>Mark.
> >>
> >>
> >> >
> >> > [Julije] Detailed profiles tend to result in complex
> >>applications/protocols.
> >> >
> >> > [Mark] I'd have put that the other way around (complex
> >>protocols => > detailed profiles), but I think I agree... >
> >> > [Julije] The purpose of this posting is to point out the
> >>complexity of > whole thing, regarding the fact that almost
> >>every line of profile ends > up with (at least) one data
> >>structure in end user application. > > [Mark] Yes, it is
> >>quite complex. So is RFC 3095 ;-) I would agree that > it
> >>is more 'dense' than RFC 3095, for example, as most of the >
> >>information is packed into the profile. > > Certainly every
> >>field (or meta-field) requires a data-structure. Again, >
> >>I'm not sure how this is different from any other header compression
> >>scheme?
> >> >
> >> > [Qian] I agree that the complex protocol such as TCP/IP
> >>will cause a > detailed profile. What I would like to point
> >>out is that the compressed > format generation should be a
> >>tradeoff between the efficiency and the > complexity. > >
> >>Mark, would you please comments on the complexity about
> >>generating a > compressed format based on the input profile.
> >>Suppose there are 30 > fields need to be considered, each
> >>field may have two choices, how about > the complexity for
> >>determining the compressed format?
> >>
> >>I assume that you are referring to the complexity in the
> >>compressor, rather than in the off-line processing to build
> >>the Huffman prefixes (which is obviously not so time-critical)?
> >>
> >>Overall, I would suggest that the complexity of compression
> >>(and this is a general statement about header compression) is
> >>broadly linear with respect to the number of fields: double
> >>the number of fields - double the complexity.
> >>
> >>Taking your more specific example, let's assume that we have
> >>30 fields with 2 choices. (It's worth pointing out that this
> >>is a slightly
> >>unusual case in that a number of fields are likely to only have a
> >>single, fixed encoding and others will have more than 2.
> >>However, as an
> >>example to discuss the issue it works just fine, of course)
> >>
> >>One of the important pieces of information that needs to be
> >>factored in, though, is the relative likelihood of the
> >>various choices. I generally assume (though this may not
> >>always be true) that encodings are tested in decreasing order
> >>of probability. After all, if one encoding is likely to be
> >>used 99% of the time, it's probably best to try that one first!
> >>
> >>Anyway, back to the example.
> >>
> >>In the best case, you will test 30 encodings (one per field)
> >>to end up with the compressed packet.
> >>
> >>In the worst case, you will test 60 encodings (2 per field).
> >>It is also likely in this case that you will have to send an
> >>IR-DYN packet. With typical probability values, the least
> >>likely format is really very, very unlikely (think 1%^30...)
> >>
> >>The average case depends upon the probability bias, but in
> >>general is going to be quite low. (In this case, perhaps an
> >>average of 1.1 encodings per field, or around 33 overall?)
> >>
> >>Since it is clear that the number of fields is important, we mustn't
> >>lose sight of the fact that in addition to the defined fields in a
> >>protocol header, there are a bunch of additional meta-fields used for
> >>compression. (For example, RTP TS scale factor, IP ID NBO
> >>flag, etc...)
> >>
> >>Something else to bear in mind is that some of the encodings
> >>are more complex than others. VALUE, for example, is very
> >>simple since there is no context history to worry about; only
> >>a simple test between two values. STATIC is simple, but is
> >>still requires checking the context history.
> >>
> >>Anyway, this all leads me to suggest that the complexity is based on:
> >>- the number of actual fields, plus the number of meta-fields
> >>- some factor to indicate the average search depth per field
> >>- a factor based on the depth of the context
> >>
> >>(I should point out that you can describe ROHC RTP in this
> >>way and perform a similar analysis)
> >>
> >>For anyone who hasn't had a look, we have submitted an I-D
> >>that contains an EPIC profile corresponding to (a subset of) ROHC RTP:
> >>
> >>http://search.ietf.org/internet-drafts/draft-surtees-rtp-epic-00.txt
> >>
> >>You may like to see how the description in the profile maps
> >>onto the description of the field processing in RFC 3095.
> >>(3095 is a little more verbose; the draft is somewhat terse,
> >>but anyway...)
> >>
> >> >
> >> > I would like to raise a discussion on the rough number of
> >>compressed > formats that plan to support for TCP/IP
> >>compression. Considering the > complex behaviors for TCP/IP
> >>protocol itself, personally, I think we may > need more
> >>formats than RFC 3095. However, considering that the >
> >>compression ratio is not the only target for TCP/IP header
> >>compression, > we also may not need to generate too much
> >>kinds of format. >
> >>
> >> > Can we come out a reasonable number of the max_formats for
> >>the TCP/IP > compressed header and provide a simpler profile
> >>to describe the behavior > of each field? >
> >>
> >>This is an interesting question.
> >>
> >> From our perspective, if you build the compressed packet up
> >>by processing on a field-by-field basis (as described in the
> >>draft), then the number of formats is not a very important
> >>issue. (Rather, it is possible to support a very large
> >>number of formats).
> >>
> >>RFC 3095 has very few basic packet formats. However, once you start
> >>factoring in the extensions and the variability in extension
> >>3 (plus the
> >>additional flags), there are actually quite a lot of formats.
> >>
> >>We should bear in mind that the compressed packets are
> >>generated by an algorithmic process -- each packet does not
> >>have a separate encoding
> >>function.
> >>The mapping between selected encodings and packet format (and vice
> >>versa) should be simple and equally quick for all formats.
> >>The quantity of data required to describe a profile (and the
> >>formats) to a compressor/decompressor is minimal.
> >>
> >>(I'm at home at the moment, and don't have any numbers to
> >>hand, but I'll
> >>send some figures when I'm next in the office)
> >>
> >>What is interesting to note is that the predicted benefit of
> >>adding more formats decreases as the number of formats gets larger.
> >>
> >>It is, however, clearly an issue that we will have to decide
> >>with regard to the TCP profile. I think that this requires
> >>us to start getting an idea of the probabilities that should
> >>be assigned to encodings. This lets us have some indication
> >>of the effect of adding (or removing) formats.
> >>
> >>
> >>--
> >>Mark A. West, Consultant Engineer
> >>Roke Manor Research Ltd., Romsey, Hants. SO51 0ZN
> >>Phone +44 (0)1794 833311 Fax +44 (0)1794 833433
> >>
> >>(Yes, I do know that my disclaimer is in an attachment. And,
> >>no, I didn't ask for it to be that way)
> >>
> >>
> >>
> >
>
>
>
> ------------------------------------------------------------------------
>
> The information contained in this e-mail and any attachments is confidential to Roke
> Manor Research Ltd and must not be passed to any third party without permission. This
> communication is for information only and shall not create or change any contractual
> relationship.
>
> RMRL-Disclaimer.txt
>
> Content-Type:
>
> text/plain
> Content-Encoding:
>
> 7bit
>
>
_______________________________________________
Rohc mailing list
Rohc@ietf.org
https://www1.ietf.org/mailman/listinfo/rohc
- [rohc] TCP/IP EPIC profile Julije Ozegovic
- Re: [rohc] TCP/IP EPIC profile West, Mark (ITN)
- Re: [rohc] TCP/IP EPIC profile West, Mark (ITN)
- Re: [rohc] TCP/IP EPIC profile Julije Ozegovic
- Re: [rohc] TCP/IP EPIC profile West, Mark (ITN)
- [rohc] NBO- TCP/IP EPIC profile Julije Ozegovic
- Re: [rohc] TCP/IP EPIC profile tijana
- [rohc] rohc over xxx? Wang Hui
- [rohc] Re: NBO- TCP/IP EPIC profile West, Mark (ITN)
- [rohc] Re: NBO- TCP/IP EPIC profile Julije Ozegovic
- [rohc] Re: NBO- TCP/IP EPIC profile West, Mark (ITN)
- [rohc] TCP/IP EPIC profile Maja
- [rohc] RE: TCP/IP EPIC profile Surtees, Abigail
- [rohc] Re: NBO- TCP/IP EPIC profile Julije Ozegovic
- RE: [rohc] TCP/IP EPIC profile Qian Zhang
- [rohc] Re: NBO- TCP/IP EPIC profile West, Mark (ITN)
- Re: [rohc] TCP/IP EPIC profile West, Mark (ITN)
- RE: [rohc] TCP/IP EPIC profile Hongbin Liao (Intl Staffing)
- [rohc] Re: NBO- TCP/IP EPIC profile Julije Ozegovic
- Re: [rohc] TCP/IP EPIC profile West, Mark (ITN)
- [rohc] IMPL-EFF TCP/IP EPIC profile Julije Ozegovic
- [rohc] Re: IMPL-EFF TCP/IP EPIC profile West, Mark (ITN)
- RE: [rohc] TCP/IP EPIC profile Hongbin Liao (Intl Staffing)
- RE: [rohc] TCP/IP EPIC profile Hongbin Liao (Intl Staffing)
- Re: [rohc] IMPL-EFF TCP/IP EPIC profile Julije Ozegovic
- Re: [rohc] TCP/IP EPIC profile West, Mark (ITN)
- RE: [rohc] TCP/IP EPIC profile Lars-Erik Jonsson (EPL)
- Re: [rohc] IMPL-EFF TCP/IP EPIC profile West, Mark (ITN)
- RE: [rohc] TCP/IP EPIC profile Hongbin Liao (Intl Staffing)
- Re: [rohc] TCP/IP EPIC profile West, Mark (ITN)
- RE: [rohc] TCP/IP EPIC profile Hongbin Liao (Intl Staffing)
- Re: [rohc] TCP/IP EPIC profile West, Mark (ITN)
- RE: [rohc] TCP/IP EPIC profile Hongbin Liao (Intl Staffing)
- RE: [rohc] TCP/IP EPIC profile Per Synnergren (EPL)
- Re: [rohc] TCP/IP EPIC profile West, Mark (ITN)
- RE: [rohc] TCP/IP EPIC profile Qian Zhang
- RE: [rohc] TCP/IP EPIC profile Hongbin Liao (Intl Staffing)
- RE: [rohc] TCP/IP EPIC profile Qian Zhang
- Re: [rohc] TCP/IP EPIC profile West, Mark (ITN)
- Re: [rohc] TCP/IP EPIC profile West, Mark (ITN)
- Re: [rohc] TCP/IP EPIC profile West, Mark (ITN)
- RE: [rohc] TCP/IP EPIC profile Hongbin Liao (Intl Staffing)
- RE: [rohc] TCP/IP EPIC profile Qian Zhang
- Re: [rohc] TCP/IP EPIC profile West, Mark (ITN)
- Re: [rohc] TCP/IP EPIC profile West, Mark (ITN)
- RE: [rohc] TCP/IP EPIC profile Qian Zhang
- RE: [rohc] TCP/IP EPIC profile Hongbin Liao (Intl Staffing)