From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 3941C385483C; Tue, 23 Mar 2021 13:24:27 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3941C385483C From: "woodard at redhat dot com" To: libabigail@sourceware.org Subject: [Bug default/25043] abidiff doesn't take stdin Date: Tue, 23 Mar 2021 13:24:27 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: libabigail X-Bugzilla-Component: default X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: woodard at redhat dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: dodji at redhat dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: libabigail@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Mailing list of the Libabigail project List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Mar 2021 13:24:27 -0000 https://sourceware.org/bugzilla/show_bug.cgi?id=3D25043 --- Comment #4 from Ben Woodard --- While ELF files and their DWARF are not streamable reading abixml is serial= ized enough that it should be streamable. The real problem that this creates is = when preserving abixml files on storage in a compact format. Say for example: abidw foo.elf | gzip > foo.abixml.gz Then later on you want to use it in a diff, then you run into a two step process that requires extra temporary storage. gunzip -c foo.abixml.gz > /tmp/foo.abixml abidiff /tmp/foo.abixml rm /tmp/foo.abixml However if abidiff could handle stdin then it would be a much simpler proce= ss: gunzip -c foo.abixml.gz | abidiff - newfoo.elf --=20 You are receiving this mail because: You are on the CC list for the bug.=