From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <ldv@altlinux.org>
Date: Wed, 12 Feb 2020 11:47:41 +0300
From: "Dmitry V. Levin" <ldv@altlinux.org>
To: ALT Devel discussion list <devel@lists.altlinux.org>
Message-ID: <20200212084741.GA21970@altlinux.org>
References: <20200129012150.83E7E8440710@gitery.altlinux.org>
 <45228f59-3529-a3ee-7eb7-67eac012ffda@altlinux.org>
 <alpine.LFD.2.20.2001291845010.6363@imap.altlinux.org>
 <6acb6b5b-d135-7071-f500-3142170aefda@altlinux.org>
 <alpine.LFD.2.20.2002111638550.6363@imap.altlinux.org>
 <20200211140003.GA8818@altlinux.org>
 <alpine.LFD.2.20.2002111722580.6363@imap.altlinux.org>
 <alpine.LFD.2.20.2002112004250.6363@imap.altlinux.org>
 <20200211181445.GA11868@altlinux.org>
 <alpine.LFD.2.20.2002120512160.6363@imap.altlinux.org>
MIME-Version: 1.0
Content-Type: text/plain; charset=koi8-r
Content-Disposition: inline
Content-Transfer-Encoding: 8bit
In-Reply-To: <alpine.LFD.2.20.2002120512160.6363@imap.altlinux.org>
Subject: Re: [devel] [SCM] packages/apt: heads/rework-dynamic-mmap
X-BeenThere: devel@lists.altlinux.org
X-Mailman-Version: 2.1.12
Precedence: list
Reply-To: ALT Linux Team development discussions <devel@lists.altlinux.org>
List-Id: ALT Linux Team development discussions <devel.lists.altlinux.org>
List-Unsubscribe: <https://lists.altlinux.org/mailman/options/devel>,
 <mailto:devel-request@lists.altlinux.org?subject=unsubscribe>
List-Archive: <http://lists.altlinux.org/pipermail/devel>
List-Post: <mailto:devel@lists.altlinux.org>
List-Help: <mailto:devel-request@lists.altlinux.org?subject=help>
List-Subscribe: <https://lists.altlinux.org/mailman/listinfo/devel>,
 <mailto:devel-request@lists.altlinux.org?subject=subscribe>
X-List-Received-Date: Wed, 12 Feb 2020 08:47:42 -0000
Archived-At: <http://lore.altlinux.org/devel/20200212084741.GA21970@altlinux.org/>
List-Archive: <http://lore.altlinux.org/devel/>
List-Post: <mailto:devel@altlinux.org>

On Wed, Feb 12, 2020 at 05:14:07AM +0300, Ivan Zakharyaschev wrote:
> > Если арифметика с void* в cxx не поддерживается, значит, она не
> > использовалась, и фраза "We do not want to rely on non-standard
> > void*-arithmetic" просто сбивает с толку.
> > 
> > C-style cast - это не арифметика с указателями.
> 
> Переписал так эти места:
> 
> commit 99994eb9e7580e9dd0014fe9a37bc68a0b9fff5e
> Author: Ivan Zakharyaschev <imz@altlinux.org>
> Date:   Wed Jan 29 04:41:13 2020 +0300
> 
>     use the safer C++-style static_cast instead of a C-style cast (from void*)
>     
>     What is happening here
>     (a commentary clarifying the code, not this particular stylistic change):
>     
>     Map->RawAllocate() returns the index in an array of bytes (i.e., of char;
>     no matter whether they are (un)signed); therefore, we cast the base
>     pointer to the corresponding type, so that the pointer arithmetic
>     gives a pointer to the beginning of the allocated space.
>     
>     If you wonder why use a cast at all here, then note that Map->Data()
>     returns a void* value, and pointer arithmetic on void* is not allowed in C++
>     (and is a non-standard extension in GNU C, not GNU C++, which would actually
>     give the same result as our code).
> 
> diff --git a/apt/apt-pkg/pkgcachegen.cc b/apt/apt-pkg/pkgcachegen.cc
> index 070c0f040..16d3592e9 100644
> --- a/apt/apt-pkg/pkgcachegen.cc
> +++ b/apt/apt-pkg/pkgcachegen.cc
> @@ -882,7 +882,7 @@ bool pkgMakeStatusCache(pkgSourceList &List,OpProgress &Progress,
>     {
>        // Preload the map with the source cache
>        FileFd SCacheF(SrcCacheFile,FileFd::ReadOnly);
> -      if (SCacheF.Read((unsigned char *)Map->Data() + Map->RawAllocate(SCacheF.Size()),
> +      if (SCacheF.Read(static_cast<char *>(Map->Data()) + Map->RawAllocate(SCacheF.Size()),
>  		       SCacheF.Size()) == false)
>  	 return false;
>  
> 
> commit e1db00879ce008555a6fbc3195b3cd92e6c25eb9
> Author: Ivan Zakharyaschev <imz@altlinux.org>
> Date:   Wed Jan 29 05:02:13 2020 +0300
> 
>     rigorously compute HeaderP as the pointer to the beginning of Map
>     
>     The old code expected that the first call to Map.RawAllocate() would
>     give the pointer to the very beginning of Map, i.e., the same as
>     Map.Data().
>     
>     We rewrite this code without such presupposition: no matter what the
>     logic behind Map.RawAllocate() will ever be, we'll actually get the
>     pointer to the space which is being "allocated" by this call inside
>     Map.
>     
>     We use the safer C++-style static_cast (from void*) where possible.
>     
>     What is happening here with the pointer arithmetic:
>     
>     Map->RawAllocate() returns the index in an array of bytes (i.e., of char);
>     therefore, we cast the base pointer to the corresponding type, so that
>     the pointer arithmetic gives the correct pointer to the beginning of the
>     "allocated" space.
>     
>     If you wonder why use a cast at all here, then note that Map->Data()
>     returns a void* value, and pointer arithmetic on void* is not allowed in C++
>     (and is a non-standard extension in GNU C, not GNU C++, which would actually
>     give the same result as our code).
> 
> diff --git a/apt/apt-pkg/pkgcachegen.cc b/apt/apt-pkg/pkgcachegen.cc
> index 16d3592e9..8bf5ed639 100644
> --- a/apt/apt-pkg/pkgcachegen.cc
> +++ b/apt/apt-pkg/pkgcachegen.cc
> @@ -54,9 +54,10 @@ pkgCacheGenerator::pkgCacheGenerator(DynamicMMap *pMap,OpProgress *Prog) :
>  
>     if (Map.Size() == 0)
>     {
> +      const auto idxBeginning = Map.RawAllocate(sizeof(pkgCache::Header));
> +
>        // Setup the map interface..
> -      Cache.HeaderP = (pkgCache::Header *)Map.Data();
> -      Map.RawAllocate(sizeof(pkgCache::Header));
> +      Cache.HeaderP = reinterpret_cast<pkgCache::Header *>(static_cast<char *>(Map.Data()) + idxBeginning);
>        Map.UsePools(*Cache.HeaderP->Pools,sizeof(Cache.HeaderP->Pools)/sizeof(Cache.HeaderP->Pools[0]));
>        
>        // Starting header

Теперь понятно, спасибо.


-- 
ldv