* [PATCH] Add config_int() method to the Git perl module
@ 2007-11-23 18:04 Jakub Narebski
2007-11-23 19:59 ` Junio C Hamano
0 siblings, 1 reply; 6+ messages in thread
From: Jakub Narebski @ 2007-11-23 18:04 UTC (permalink / raw)
To: git
Integer variables can have optional 'k', 'm' or 'g' suffix.
config_int() method will return simple decimal number, taking
care of those suffixes.
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
---
For completness (I don't think anything in Perl uses / tries to use
integer configuration variables).
(Commit message could be better. Hmmm...)
perl/Git.pm | 31 +++++++++++++++++++++++++++++++
1 files changed, 31 insertions(+), 0 deletions(-)
diff --git a/perl/Git.pm b/perl/Git.pm
index dca92c8..7468460 100644
--- a/perl/Git.pm
+++ b/perl/Git.pm
@@ -549,6 +549,37 @@ sub config_bool {
};
}
+=item config_int ( VARIABLE )
+
+Retrieve the integer configuration C<VARIABLE>. The return value
+is simple decimal number. An optional value suffix of 'k', 'm',
+or 'g' in the config file will cause the value to be multiplied
+by 1024, 1048576 (1024^2), or 1073741824 (1024^3) prior to output.
+It would return C<undef> if configuration variable is not defined,
+
+Must be called on a repository instance.
+
+This currently wraps command('config') so it is not so fast.
+
+=cut
+
+sub config_int {
+ my ($self, $var) = @_;
+ $self->repo_path()
+ or throw Error::Simple("not a repository");
+
+ try {
+ return $self->command_oneline('config', '--int', '--get', $var);
+ } catch Git::Error::Command with {
+ my $E = shift;
+ if ($E->value() == 1) {
+ # Key not found.
+ return undef;
+ } else {
+ throw $E;
+ }
+ };
+}
=item ident ( TYPE | IDENTSTR )
--
1.5.3.5
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] Add config_int() method to the Git perl module
2007-11-23 18:04 [PATCH] Add config_int() method to the Git perl module Jakub Narebski
@ 2007-11-23 19:59 ` Junio C Hamano
2007-11-23 20:57 ` Wincent Colaiuta
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Junio C Hamano @ 2007-11-23 19:59 UTC (permalink / raw)
To: Jakub Narebski; +Cc: git, Jeff King, Dan Zwell
Jakub Narebski <jnareb@gmail.com> writes:
> Integer variables can have optional 'k', 'm' or 'g' suffix.
> config_int() method will return simple decimal number, taking
> care of those suffixes.
Good. I forgot about --int option to "git config" already.
Maybe in a similar way, we might want to add --color to "git
config" to return ANSI sequence, so that Git::config_color() can
work without even loading Term::ANSIColor?
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Add config_int() method to the Git perl module
2007-11-23 19:59 ` Junio C Hamano
@ 2007-11-23 20:57 ` Wincent Colaiuta
2007-11-24 11:48 ` Jeff King
2007-11-28 7:20 ` [PATCH] git-config --get-color: get configured color Junio C Hamano
2 siblings, 0 replies; 6+ messages in thread
From: Wincent Colaiuta @ 2007-11-23 20:57 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Jakub Narebski, git, Jeff King, Dan Zwell
El 23/11/2007, a las 20:59, Junio C Hamano escribió:
> Jakub Narebski <jnareb@gmail.com> writes:
>
>> Integer variables can have optional 'k', 'm' or 'g' suffix.
>> config_int() method will return simple decimal number, taking
>> care of those suffixes.
>
> Good. I forgot about --int option to "git config" already.
>
> Maybe in a similar way, we might want to add --color to "git
> config" to return ANSI sequence, so that Git::config_color() can
> work without even loading Term::ANSIColor?
Or failing that, it would be very easy to remove the dependency on
Term::ANSIColor by adding something like this to Git.pm:
+my $COLOR = {
+ "reset" => "\e[0m",
+ "normal" => "",
+ "black" => "\e[30m",
+ "red" => "\e[31m",
+ "green" => "\e[32m",
+ "yellow" => "\e[33m",
+ "blue" => "\e[34m",
+ "magenta" => "\e[35m",
+ "cyan" => "\e[36m",
+ "white" => "\e[37m",
+ "bold" => "\e[1m",
+ "ul" => "\e[4m",
+ "blink" => "\e[5m",
+ "reverse" => "\e[7m",
+ "on_red" => "\e[41m",
+};
+
+sub color {
+ my $desired_color = shift;
+ return $COLOR->{$desired_color} || "";
+}
Cheers,
Wincent
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Add config_int() method to the Git perl module
2007-11-23 19:59 ` Junio C Hamano
2007-11-23 20:57 ` Wincent Colaiuta
@ 2007-11-24 11:48 ` Jeff King
2007-11-28 7:20 ` [PATCH] git-config --get-color: get configured color Junio C Hamano
2 siblings, 0 replies; 6+ messages in thread
From: Jeff King @ 2007-11-24 11:48 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Jakub Narebski, git, Dan Zwell
On Fri, Nov 23, 2007 at 11:59:25AM -0800, Junio C Hamano wrote:
> Maybe in a similar way, we might want to add --color to "git
> config" to return ANSI sequence, so that Git::config_color() can
> work without even loading Term::ANSIColor?
We would also need a way of parsing the 'default' values, so git-config
would need a way of saying "turn this value into its internal
representation" (or the perl script would have to specify its defaults
as raw ANSI codes, which is a bit ugly, but is that the C programs do).
-Peff
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] git-config --get-color: get configured color
2007-11-23 19:59 ` Junio C Hamano
2007-11-23 20:57 ` Wincent Colaiuta
2007-11-24 11:48 ` Jeff King
@ 2007-11-28 7:20 ` Junio C Hamano
2007-11-28 7:58 ` Dan Zwell
2 siblings, 1 reply; 6+ messages in thread
From: Junio C Hamano @ 2007-11-28 7:20 UTC (permalink / raw)
To: Jeff King, Dan Zwell; +Cc: git, Jakub Narebski
This new option allows scripts to grab color setting from the user
configuration, translated to ANSI color escape sequence.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
---
Junio C Hamano <gitster@pobox.com> writes:
> Jakub Narebski <jnareb@gmail.com> writes:
>
>> Integer variables can have optional 'k', 'm' or 'g' suffix.
>> config_int() method will return simple decimal number, taking
>> care of those suffixes.
>
> Good. I forgot about --int option to "git config" already.
>
> Maybe in a similar way, we might want to add --color to "git
> config" to return ANSI sequence, so that Git::config_color() can
> work without even loading Term::ANSIColor?
Documentation/git-config.txt | 16 ++++++++++++
builtin-config.c | 55 +++++++++++++++++++++++++++++++++++++++--
2 files changed, 68 insertions(+), 3 deletions(-)
diff --git a/Documentation/git-config.txt b/Documentation/git-config.txt
index a592b61..ed3076f 100644
--- a/Documentation/git-config.txt
+++ b/Documentation/git-config.txt
@@ -20,6 +20,7 @@ SYNOPSIS
'git-config' [<file-option>] --rename-section old_name new_name
'git-config' [<file-option>] --remove-section name
'git-config' [<file-option>] [-z|--null] -l | --list
+'git-config' [<file-option>] --get-color name [default]
DESCRIPTION
-----------
@@ -134,6 +135,12 @@ See also <<FILES>>.
output without getting confused e.g. by values that
contain line breaks.
+--get-color name default::
+
+ Find the color configured for `name` (e.g. `color.diff.new`) and
+ output it as the ANSI color escape sequence to the standard
+ output. The optional `default` parameter is used if the
+ configuration for `name` is missing.
[[FILES]]
FILES
@@ -292,6 +299,15 @@ To add a new proxy, without altering any of the existing ones, use
% git config core.gitproxy '"proxy-command" for example.com'
------------
+An example to use customized color from the configuration in your
+script:
+
+------------
+#!/bin/sh
+WS=$(git config --get-color color.diff.whitespace "blue reverse")
+RESET==$(git config --get-color "" "reset")
+echo "${WS}your whitespace color or blue reverse${RESET}"
+------------
include::config.txt[]
diff --git a/builtin-config.c b/builtin-config.c
index f672c9c..4c9ded3 100644
--- a/builtin-config.c
+++ b/builtin-config.c
@@ -1,8 +1,9 @@
#include "builtin.h"
#include "cache.h"
+#include "color.h"
static const char git_config_set_usage[] =
-"git-config [ --global | --system | [ -f | --file ] config-file ] [ --bool | --int ] [ -z | --null ] [--get | --get-all | --get-regexp | --replace-all | --add | --unset | --unset-all] name [value [value_regex]] | --rename-section old_name new_name | --remove-section name | --list";
+"git-config [ --global | --system | [ -f | --file ] config-file ] [ --bool | --int ] [ -z | --null ] [--get | --get-all | --get-regexp | --replace-all | --add | --unset | --unset-all] name [value [value_regex]] | --rename-section old_name new_name | --remove-section name | --list | --get-color var [default]";
static char *key;
static regex_t *key_regexp;
@@ -161,6 +162,53 @@ char *normalize_value(const char *key, const char *value)
return normalized;
}
+static int get_color_found;
+static const char *get_color_slot;
+static char parsed_color[COLOR_MAXLEN];
+
+static int git_get_color_config(const char *var, const char *value)
+{
+ if (!strcmp(var, get_color_slot)) {
+ color_parse(value, var, parsed_color);
+ get_color_found = 1;
+ }
+ return 0;
+}
+
+static int get_color(int argc, const char **argv)
+{
+ /*
+ * grab the color setting for the given slot from the configuration,
+ * or parse the default value if missing, and return ANSI color
+ * escape sequence.
+ *
+ * e.g.
+ * git config --get-color color.diff.whitespace "blue reverse"
+ */
+ const char *def_color = NULL;
+
+ switch (argc) {
+ default:
+ usage(git_config_set_usage);
+ case 2:
+ def_color = argv[1];
+ /* fallthru */
+ case 1:
+ get_color_slot = argv[0];
+ break;
+ }
+
+ get_color_found = 0;
+ parsed_color[0] = '\0';
+ git_config(git_get_color_config);
+
+ if (!get_color_found && def_color)
+ color_parse(def_color, "command line", parsed_color);
+
+ fputs(parsed_color, stdout);
+ return 0;
+}
+
int cmd_config(int argc, const char **argv, const char *prefix)
{
int nongit = 0;
@@ -234,8 +282,9 @@ int cmd_config(int argc, const char **argv, const char *prefix)
return 1;
}
return 0;
- }
- else
+ } else if (!strcmp(argv[1], "--get-color")) {
+ return get_color(argc-2, argv+2);
+ } else
break;
argc--;
argv++;
--
1.5.3.6.2039.g0495
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] git-config --get-color: get configured color
2007-11-28 7:20 ` [PATCH] git-config --get-color: get configured color Junio C Hamano
@ 2007-11-28 7:58 ` Dan Zwell
0 siblings, 0 replies; 6+ messages in thread
From: Dan Zwell @ 2007-11-28 7:58 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Jeff King, git, Jakub Narebski
Junio C Hamano wrote:
> +--get-color name default::
> +
> + Find the color configured for `name` (e.g. `color.diff.new`) and
> + output it as the ANSI color escape sequence to the standard
> + output. The optional `default` parameter is used if the
> + configuration for `name` is missing.
Perhaps you could mention here that the second parameter is a normal
string, not an ansi code? Just adding 'for example, "blue"' would
probably help.
> +RESET==$(git config --get-color "" "reset")
This is a typo, no?
+RESET=$(git config --get-color "" "reset")
Dan
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2007-11-28 11:17 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-23 18:04 [PATCH] Add config_int() method to the Git perl module Jakub Narebski
2007-11-23 19:59 ` Junio C Hamano
2007-11-23 20:57 ` Wincent Colaiuta
2007-11-24 11:48 ` Jeff King
2007-11-28 7:20 ` [PATCH] git-config --get-color: get configured color Junio C Hamano
2007-11-28 7:58 ` Dan Zwell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).