mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-09-19 03:38:08 +08:00
Compare commits
5 Commits
debian/1.3
...
test_strpt
Author | SHA1 | Date | |
---|---|---|---|
![]() |
8ae16172ef | ||
![]() |
11f568ddf2 | ||
![]() |
605158b391 | ||
![]() |
0c32afacfd | ||
![]() |
1688496f34 |
@@ -14,7 +14,7 @@ use threads;
|
|||||||
use threads::shared;
|
use threads::shared;
|
||||||
use Thread::Queue;
|
use Thread::Queue;
|
||||||
use Pod::Usage;
|
use Pod::Usage;
|
||||||
use Time::Piece;
|
use DateTime::Format::Strptime;
|
||||||
|
|
||||||
my $VERSION = 1.34;
|
my $VERSION = 1.34;
|
||||||
|
|
||||||
@@ -31,6 +31,9 @@ interpretCommandline();
|
|||||||
# datastring
|
# datastring
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
my $strptime;
|
||||||
|
|
||||||
my @curves = ();
|
my @curves = ();
|
||||||
|
|
||||||
# list mapping curve names to their indices in the @curves list
|
# list mapping curve names to their indices in the @curves list
|
||||||
@@ -75,6 +78,7 @@ if($options{stream})
|
|||||||
}
|
}
|
||||||
|
|
||||||
$streamingFinished = 1;
|
$streamingFinished = 1;
|
||||||
|
$dataQueue->enqueue(undef);
|
||||||
|
|
||||||
$plotThr->join() if defined $plotThr;
|
$plotThr->join() if defined $plotThr;
|
||||||
$addThr->join();
|
$addThr->join();
|
||||||
@@ -381,12 +385,16 @@ sub interpretCommandline
|
|||||||
# and strftime, and those are integer-only
|
# and strftime, and those are integer-only
|
||||||
if( defined $options{xlen} )
|
if( defined $options{xlen} )
|
||||||
{
|
{
|
||||||
|
# warning do I need to make sure this is an integer anymore?
|
||||||
if( $options{xlen} - int($options{xlen}) )
|
if( $options{xlen} - int($options{xlen}) )
|
||||||
{
|
{
|
||||||
say STDERR "When streaming --xlen MUST be an integer. Rounding up to the nearest second";
|
print STDERR "When streaming --xlen MUST be an integer. Rounding up to the nearest second\n";
|
||||||
$options{xlen} = 1 + int($options{xlen});
|
$options{xlen} = 1 + int($options{xlen});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# $strptime = DateTime::Format::Strptime->new( pattern => $options{timefmt} );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -413,8 +421,6 @@ sub plotUpdateThread
|
|||||||
# indicate that the timer was the replot source
|
# indicate that the timer was the replot source
|
||||||
$dataQueue->enqueue('replot timertick');
|
$dataQueue->enqueue('replot timertick');
|
||||||
}
|
}
|
||||||
|
|
||||||
$dataQueue->enqueue(undef);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
sub sendRangeCommand
|
sub sendRangeCommand
|
||||||
@@ -441,14 +447,18 @@ sub makeDomainNumeric
|
|||||||
{
|
{
|
||||||
my ($domain0) = @_;
|
my ($domain0) = @_;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if( $options{timefmt})
|
if( $options{timefmt})
|
||||||
{
|
{
|
||||||
my $timepiece = Time::Piece->strptime( $domain0, $options{timefmt} )
|
# my $t = $strptime->parse_datetime($domain0);
|
||||||
or die "Couldn't parse time format. String '$domain0' doesn't fit format '$options{timefmt}'";
|
# print STDERR "$domain0 $t\n";
|
||||||
|
|
||||||
return $timepiece->epoch();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# return $strptime->parse_datetime($domain0) if $options{timefmt};
|
||||||
return $domain0;
|
return $domain0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -693,6 +703,17 @@ sub mainThread
|
|||||||
@domain = splice(@fields, 0, 2);
|
@domain = splice(@fields, 0, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# domain0_numeric is only used for xlen and monotonic, I think. And
|
||||||
|
# this is the only thing that requires strptime. Shouldn't bother with
|
||||||
|
# strptime otherwise
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if( $options{monotonic} )
|
if( $options{monotonic} )
|
||||||
{
|
{
|
||||||
if( defined $latestX && $domain0_numeric < $latestX )
|
if( defined $latestX && $domain0_numeric < $latestX )
|
||||||
@@ -752,14 +773,8 @@ sub mainThread
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# if we were streaming, we're now done!
|
|
||||||
if( $options{stream} )
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
# finished reading in all. Plot what we have
|
# finished reading in all. Plot what we have
|
||||||
plotStoredData();
|
plotStoredData() unless $options{stream};
|
||||||
|
|
||||||
if ( defined $options{hardcopy})
|
if ( defined $options{hardcopy})
|
||||||
{
|
{
|
||||||
@@ -768,7 +783,7 @@ sub mainThread
|
|||||||
# sleep until the plot file exists, and it is closed. Sometimes the output
|
# sleep until the plot file exists, and it is closed. Sometimes the output
|
||||||
# is still being written at this point. If the output filename starts with
|
# is still being written at this point. If the output filename starts with
|
||||||
# '|', gnuplot pipes the output to that process, instead of writing to a
|
# '|', gnuplot pipes the output to that process, instead of writing to a
|
||||||
# file. In that case I don't make sure the file exists, since there IS not
|
# file. In that case I don't make sure the file exists, since there IS no
|
||||||
# file
|
# file
|
||||||
if( $options{hardcopy} !~ /^\|/ )
|
if( $options{hardcopy} !~ /^\|/ )
|
||||||
{
|
{
|
||||||
@@ -1003,7 +1018,7 @@ sub replot
|
|||||||
{
|
{
|
||||||
# if we're using a timefmt, I need to convert my xmin range from
|
# if we're using a timefmt, I need to convert my xmin range from
|
||||||
# seconds-since-the-epoch BACK to the timefmt. Sheesh
|
# seconds-since-the-epoch BACK to the timefmt. Sheesh
|
||||||
($xmin, $xmax) = map {Time::Piece->strptime( $_, '%s' )->strftime( $options{timefmt} ) } ($xmin, $xmax);
|
($xmin, $xmax) = map {$strptime->parse_datetime($_)} ($xmin, $xmax);
|
||||||
}
|
}
|
||||||
sendRangeCommand( "xrange", $xmin, $xmax );
|
sendRangeCommand( "xrange", $xmin, $xmax );
|
||||||
}
|
}
|
||||||
|
79
debian/changelog
vendored
79
debian/changelog
vendored
@@ -1,79 +0,0 @@
|
|||||||
feedgnuplot (1.34-1) unstable; urgency=medium
|
|
||||||
|
|
||||||
* Very minor upstream update
|
|
||||||
* gnuplot-nox can no satisfy the gnuplot dependency for feedgnuplot
|
|
||||||
|
|
||||||
-- Dima Kogan <dima@secretsauce.net> Wed, 06 Aug 2014 15:19:56 -0700
|
|
||||||
|
|
||||||
feedgnuplot (1.33-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Upstream update: fixed incorrect plotting of --timefmt --rangesize
|
|
||||||
plots
|
|
||||||
|
|
||||||
-- Dima Kogan <dima@secretsauce.net> Thu, 06 Feb 2014 23:19:02 -0800
|
|
||||||
|
|
||||||
feedgnuplot (1.32-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Added --rangesize and --rangesizeall. Different curves can now plot
|
|
||||||
different-size tuples
|
|
||||||
|
|
||||||
-- Dima Kogan <dima@secretsauce.net> Wed, 05 Feb 2014 14:00:44 -0800
|
|
||||||
|
|
||||||
feedgnuplot (1.30-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* made the VCS links canonical
|
|
||||||
* added --set, --unset, --with, --style, --styleall
|
|
||||||
|
|
||||||
-- Dima Kogan <dima@secretsauce.net> Fri, 24 Jan 2014 15:50:03 -0800
|
|
||||||
|
|
||||||
feedgnuplot (1.28-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Upstream update:
|
|
||||||
- Removed example debianization
|
|
||||||
- Removed unreliable unit tests from automated testing (Closes: #731080)
|
|
||||||
* gnuplot dependency now favors graphical gnuplot packages
|
|
||||||
* Removed Anton Gladky from the Uploaders
|
|
||||||
|
|
||||||
-- Dima Kogan <dima@secretsauce.net> Wed, 04 Dec 2013 02:05:08 -0800
|
|
||||||
|
|
||||||
feedgnuplot (1.26-1) unstable; urgency=low
|
|
||||||
|
|
||||||
[ Dima Kogan ]
|
|
||||||
* Minor POD update
|
|
||||||
* Added test suite
|
|
||||||
* Added initial support for --timefmt. Currently time/date data is
|
|
||||||
supported only at the x-axis domain
|
|
||||||
* Added --exit option for force feedgnuplot to return even if gnuplot
|
|
||||||
may not yet be done rendering (patch by Eric Schulte)
|
|
||||||
* Reformatted the documentation
|
|
||||||
* y2-axis curves no longer have a thicker line by default
|
|
||||||
* --hardcopy now handles piped output (gnuplot 'set output |process'
|
|
||||||
syntax)
|
|
||||||
|
|
||||||
[ Anton Gladky ]
|
|
||||||
* Add libipc-run-perl to Build-Depends to execute tests
|
|
||||||
|
|
||||||
-- Dima Kogan <dima@secretsauce.net> Sun, 20 Oct 2013 01:19:51 -0700
|
|
||||||
|
|
||||||
feedgnuplot (1.24-2) unstable; urgency=low
|
|
||||||
|
|
||||||
* Now building the html documentation from the correct POD source
|
|
||||||
|
|
||||||
-- Dima Kogan <dima@secretsauce.net> Sun, 28 Apr 2013 17:42:52 -0700
|
|
||||||
|
|
||||||
feedgnuplot (1.24-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Fixed regression in --monotonic. This works again now
|
|
||||||
* moved POD back into the main source file. This fixes the broken usage
|
|
||||||
messages
|
|
||||||
* added --version
|
|
||||||
* fixed watchfile to work with newer github pages
|
|
||||||
* priority now optional
|
|
||||||
|
|
||||||
-- Dima Kogan <dima@secretsauce.net> Fri, 08 Feb 2013 02:01:32 -0800
|
|
||||||
|
|
||||||
feedgnuplot (1.23-2) unstable; urgency=low
|
|
||||||
|
|
||||||
* Initial Debian release (Closes: #686413)
|
|
||||||
|
|
||||||
-- Dima Kogan <dima@secretsauce.net> Tue, 30 Oct 2012 11:14:01 -0700
|
|
1
debian/compat
vendored
1
debian/compat
vendored
@@ -1 +0,0 @@
|
|||||||
9
|
|
19
debian/control
vendored
19
debian/control
vendored
@@ -1,19 +0,0 @@
|
|||||||
Source: feedgnuplot
|
|
||||||
Section: science
|
|
||||||
Priority: optional
|
|
||||||
Build-Depends: debhelper (>= 9), libstring-shellquote-perl, perl, gawk, gnuplot, libipc-run-perl
|
|
||||||
Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
|
|
||||||
Uploaders: Dima Kogan <dima@secretsauce.net>
|
|
||||||
Standards-Version: 3.9.4
|
|
||||||
Homepage: https://github.com/dkogan/feedgnuplot
|
|
||||||
Vcs-Git: git://anonscm.debian.org/debian-science/packages/feedgnuplot.git
|
|
||||||
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-science/packages/feedgnuplot.git
|
|
||||||
|
|
||||||
Package: feedgnuplot
|
|
||||||
Architecture: all
|
|
||||||
Depends: ${misc:Depends}, ${perl:Depends}, gnuplot-qt | gnuplot-x11 | gnuplot-nox
|
|
||||||
Description: Pipe-oriented frontend to Gnuplot
|
|
||||||
Flexible, command-line-oriented frontend to Gnuplot. Creates plots from data
|
|
||||||
coming in on STDIN or given in a filename passed on the commandline. Various
|
|
||||||
data representations are supported, as is hardcopy output and streaming display
|
|
||||||
of live data.
|
|
24
debian/copyright
vendored
24
debian/copyright
vendored
@@ -1,24 +0,0 @@
|
|||||||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
|
||||||
Source: https://github.com/dkogan/feedgnuplot
|
|
||||||
Upstream-Contact: Dima Kogan, <dima@secretsauce.net>
|
|
||||||
Upstream-Name: feedgnuplot
|
|
||||||
|
|
||||||
Files: *
|
|
||||||
Copyright: 2011, Dima Kogan <dima@secretsauce.net>
|
|
||||||
License: Artistic or GPL-1+
|
|
||||||
|
|
||||||
License: Artistic
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
|
||||||
it under the terms of the Artistic License, which comes with Perl.
|
|
||||||
.
|
|
||||||
On Debian GNU/Linux systems, the complete text of the Artistic License
|
|
||||||
can be found in `/usr/share/common-licenses/Artistic'.
|
|
||||||
|
|
||||||
License: GPL-1+
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation; either version 1, or (at your option)
|
|
||||||
any later version.
|
|
||||||
.
|
|
||||||
On Debian GNU/Linux systems, the complete text of version 1 of the
|
|
||||||
General Public License can be found in `/usr/share/common-licenses/GPL-1'.
|
|
9
debian/feedgnuplot.doc-base
vendored
9
debian/feedgnuplot.doc-base
vendored
@@ -1,9 +0,0 @@
|
|||||||
Document: feedgnuplot
|
|
||||||
Title: Feedgnuplot Manual
|
|
||||||
Author: Dima Kogan
|
|
||||||
Abstract: Formatted manpage for feedgnuplot
|
|
||||||
Section: Science/Data Analysis
|
|
||||||
|
|
||||||
Format: HTML
|
|
||||||
Index: /usr/share/doc/feedgnuplot/feedgnuplot.html
|
|
||||||
Files: /usr/share/doc/feedgnuplot/feedgnuplot.html
|
|
1
debian/feedgnuplot.docs
vendored
1
debian/feedgnuplot.docs
vendored
@@ -1 +0,0 @@
|
|||||||
feedgnuplot.html
|
|
2
debian/feedgnuplot.install
vendored
2
debian/feedgnuplot.install
vendored
@@ -1,2 +0,0 @@
|
|||||||
completions/bash/feedgnuplot /etc/bash_completion.d/
|
|
||||||
completions/zsh/_feedgnuplot /usr/share/zsh/vendor-completions
|
|
4
debian/gbp.conf
vendored
4
debian/gbp.conf
vendored
@@ -1,4 +0,0 @@
|
|||||||
[DEFAULT]
|
|
||||||
debian-branch = debian
|
|
||||||
upstream-tag = v%(version)s
|
|
||||||
pristine-tar = True
|
|
12
debian/rules
vendored
12
debian/rules
vendored
@@ -1,12 +0,0 @@
|
|||||||
#!/usr/bin/make -f
|
|
||||||
|
|
||||||
%:
|
|
||||||
dh $@
|
|
||||||
|
|
||||||
override_dh_auto_build:
|
|
||||||
dh_auto_build
|
|
||||||
pod2html --title=feedgnuplot bin/feedgnuplot > feedgnuplot.html
|
|
||||||
|
|
||||||
override_dh_auto_clean:
|
|
||||||
rm -rf feedgnuplot.html pod2htm*
|
|
||||||
dh_auto_clean
|
|
1
debian/source/format
vendored
1
debian/source/format
vendored
@@ -1 +0,0 @@
|
|||||||
3.0 (quilt)
|
|
4
debian/watch
vendored
4
debian/watch
vendored
@@ -1,4 +0,0 @@
|
|||||||
version=3
|
|
||||||
opts=uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha|b|a)\d*)$/$1~$2/,dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$// \
|
|
||||||
https://github.com/dkogan/feedgnuplot/tags .*/v?(\d.*)\.(?:tgz|tbz2|txz|tar\.(?:gz|bz2|xz))
|
|
||||||
# Bart Martens <bartm@debian.org> Sat, 22 Dec 2012 12:54:18 +0000
|
|
Reference in New Issue
Block a user