Boost logo

Boost :

Subject: Re: [boost] [chrono] i/o to locale or not to locale
From: Artyom Beilis (artyomtnk_at_[hidden])
Date: 2011-11-12 06:01:37


----- Original Message ----- > From: Vicente J. Botet Escriba <vicente.botet_at_[hidden]> > To: boost_at_[hidden] > Cc: > Sent: Friday, November 11, 2011 8:13 PM > Subject: [boost] [chrono] i/o to locale or not to locale > > Hi all, > > currently Chrono provides a limited localization interface for duration and > time_point I/O that is not satisfactory. The current implementation Boost.Chrono > V1.2 (Boost 1.48) is based on the alternative A1 (see below) in which the > hour,minute,second and the epoch can be localized. This could give the > impression that chrono i/o is localized, but as Aryton as signaled it is not > enough. > I would suggest you to do a little study about two points: 1. Feasibility of localization (do you have data) 2. Correctness of localization do you have enough information. 1. Feasibility of localization (do you have data) ------------------------------------------------- I'd suggest to take a look on CLDR and what data it provides. ICU supports this kind of measure. For example:     http://icu-project.org/apiref/icu4c/classTimeUnitFormat.html And so CLDR. It provides, years, months, days, weeks, hours, minutes and seconds. However it **does not** provide sub second ranges (ms, us, ns) and so on. Generally all provided formatting is just a simple plural form formatting and you can use it. So I suggest to start from there and look on them as reference. As probably they do the right thing (mostly). So if your localization support would do at least what ICU does you are probably in the right direction. 2. Correctness of localization do you have enough information. -------------------------------------------------------------- The second is little bit more problematic. AFAIR you represent a time as a distance in time... So for example 30 days = 30 * 24 * 3600 seconds in months units can be - 1 month and 2 days in non leap in February - 1 month and 1 days in leap year in February - 1 month in March - 30 days in April. So depending on specific period even if you display a single unit it may depend on specific time point. More then that it can be for example 1 month and 1 hour if daylight savings time had changed during this period.... So... the question is what are you trying to do. Can you please explain it very explicitly: - What is your measure? - What are you trying to display? Can you describe this please. > I'm working on redesigning the chrono i/o in order to make a proposal with > Howard Hinnant to the C++ committee. Two main alternatives > > A1- follow the formatting of recognized international body as ISO. > A2- Add localization of specific units and epoch to the preceding format. > What about 3rd option - display it as a number? Just as is and let user localize it on his own?   std::cout << boost::format("%1% us") % period << std::endl; Do you really need to print a unit or may be the developer should add the unit? > A2 - Make durations and time point i/o locale dependent. > > Based on the previous alternative, add the possibility to add specific locale > facets that could format a duration following the pattern > > <value> <unit> > <unit> <value> > <hours><:><minutes><:><seconds>[<.>fractional_seconds] > You make it too specific. Order is generally not good enough. It should be pattern not "rule" 1 second  -> 1秒 in Chinese (no space) > Here <value> and <unit> will be formatted following the specific > locale and in this case the unit could have specific plural forms. > > For example in French the user could specialize the facets so that she could get > > 1 jour > 3 jours > 9 heures > 1 seconde > 0 secondes > -1 seconde > 3.77 milliseconds > 34 [1/30] de seconde > > and in Spanish > > 1 segundo > 0 segundo > -1 segundo > > Add the possibility to add specific locale facets that could format a time_point > following the pattern > > <duration> <epoch> > <epoch> <duration> > > system_clock::time_point is a special case that should be formatted as a > localized date, relative to the epoch 1900/01/01. > There already is time/date formatting even in existing standard (std::time_put facet) that BTW works fine in many compilers. > A3 - Add on top of A2 some _byname facets. > > The fist alternative is in line with the money standard locale category that > uses standard symbols, as $ or USD. > It has the drawback that the <value> could be localized while the > <unit> is not, e.g. > > 1,234 second > > Note the use of ','. > Please note current "money locale" is quite badly designed and quite broken. Don't look at current facets design. Most of them BROKEN. Take a look on CLDR as reference. > The third alternative is IMO closer to the user expectations, but needs a better > locale messages/by_name facet. > > The second alternative is a pragmatic one that left the possibility to build A3 > when a satisfying messages/by_name facet is available. there is about ~50 languages and for each of them you need about 8 pattens x about 2-3 plural forms - so you'll have few KB or raw data. You can really put this in the code and use it as is. So you don't have to wait for better messages proposal. Just to it right. > > Boost.Chrono 2.0 in the trunk is a prototype of A2, that doesn't provides > facets by locale name, only a default English implementation. That means that > for the time been, the user needs to imbue a locale with her specific facet to > get the expected localization (See french.cpp example in the SVN repository) > > What the Boost community think about this? Towards which alternative should > Boost.Chrono move? Should Boost.Chrono wait until a concrete standard proposal > is accepted? > > Thanks in advance, > Vicente > > If you want to provide something please base it on CLDR data and patterns don't try to invent your own methods.   Artyom Beilis -------------- CppCMS - C++ Web Framework: http://cppcms.sf.net/ CppDB - C++ SQL Connectivity: http://cppcms.sf.net/sql/cppdb/ > > _______________________________________________ > Unsubscribe & other changes: > http://lists.boost.org/mailman/listinfo.cgi/boost >


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk