[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
32/376: Style fix
From: |
Ludovic Courtès |
Subject: |
32/376: Style fix |
Date: |
Wed, 28 Jan 2015 22:03:51 +0000 |
civodul pushed a commit to tag 1.8
in repository guix.
commit e477f0e9385d7825f005b7e9a32cd3ad6ee27aab
Author: Eelco Dolstra <address@hidden>
Date: Fri Jun 27 11:36:23 2014 +0200
Style fix
---
src/nix-instantiate/nix-instantiate.cc | 19 ++++++++-----------
1 files changed, 8 insertions(+), 11 deletions(-)
diff --git a/src/nix-instantiate/nix-instantiate.cc
b/src/nix-instantiate/nix-instantiate.cc
index 7acc9d5..a188b28 100644
--- a/src/nix-instantiate/nix-instantiate.cc
+++ b/src/nix-instantiate/nix-instantiate.cc
@@ -14,12 +14,6 @@
#include <map>
#include <iostream>
-enum OutputKind {
- OUTPUT_PLAIN,
- OUTPUT_XML,
- OUTPUT_JSON,
-};
-
using namespace nix;
@@ -42,6 +36,9 @@ static int rootNr = 0;
static bool indirectRoot = false;
+enum OutputKind { okPlain, okXML, okJSON };
+
+
void processExpr(EvalState & state, const Strings & attrPaths,
bool parseOnly, bool strict, Bindings & autoArgs,
bool evalOnly, OutputKind output, bool location, Expr * e)
@@ -65,9 +62,9 @@ void processExpr(EvalState & state, const Strings & attrPaths,
vRes = v;
else
state.autoCallFunction(autoArgs, v, vRes);
- if (output == OUTPUT_XML)
+ if (output == okXML)
printValueAsXML(state, strict, location, vRes, std::cout,
context);
- else if (output == OUTPUT_JSON)
+ else if (output == okJSON)
printValueAsJSON(state, strict, vRes, std::cout, context);
else {
if (strict) state.strictForceValue(vRes);
@@ -117,7 +114,7 @@ void run(Strings args)
bool findFile = false;
bool evalOnly = false;
bool parseOnly = false;
- OutputKind outputKind = OUTPUT_PLAIN;
+ OutputKind outputKind = okPlain;
bool xmlOutputSourceLocation = true;
bool strict = false;
Strings attrPaths;
@@ -154,9 +151,9 @@ void run(Strings args)
else if (arg == "--indirect")
indirectRoot = true;
else if (arg == "--xml")
- outputKind = OUTPUT_XML;
+ outputKind = okXML;
else if (arg == "--json")
- outputKind = OUTPUT_JSON;
+ outputKind = okJSON;
else if (arg == "--no-location")
xmlOutputSourceLocation = false;
else if (arg == "--strict")
- 21/376: Add autoloads, make code more concise & idiomatic, (continued)
- 21/376: Add autoloads, make code more concise & idiomatic, Ludovic Courtès, 2015/01/28
- 18/376: Print a warning when loading a large path into memory, Ludovic Courtès, 2015/01/28
- 19/376: Report daemon OOM better, Ludovic Courtès, 2015/01/28
- 22/376: Share code between scopedImport and import, Ludovic Courtès, 2015/01/28
- 28/376: Only add the importNative primop if the allow-arbitrary-code-during-evaluation option is true (default false), Ludovic Courtès, 2015/01/28
- 26/376: Don't use member initialisers, Ludovic Courtès, 2015/01/28
- 27/376: Add importNative primop, Ludovic Courtès, 2015/01/28
- 29/376: Merge branch 'shlevy-import-native', Ludovic Courtès, 2015/01/28
- 20/376: == operator: Ignore string context, Ludovic Courtès, 2015/01/28
- 30/376: allow-arbitrary-code-during-evaluation -> allow-unsafe-native-code-during-evaluation, Ludovic Courtès, 2015/01/28
- 32/376: Style fix,
Ludovic Courtès <=
- 24/376: Drop ImportError and FindError, Ludovic Courtès, 2015/01/28
- 31/376: Add `--json` argument to `nix-instantiate`, Ludovic Courtès, 2015/01/28
- 33/376: Manual: html -> xhtml, Ludovic Courtès, 2015/01/28
- 25/376: Fix bogus warnings about dumping large paths, Ludovic Courtès, 2015/01/28
- 36/376: Fix compilation error on some versions of GCC, Ludovic Courtès, 2015/01/28
- 37/376: Add a test for the SSH substituter, Ludovic Courtès, 2015/01/28
- 38/376: Fix security hole in ‘nix-store --serve’, Ludovic Courtès, 2015/01/28
- 35/376: Don't build on Ubuntu 10.10, Ludovic Courtès, 2015/01/28
- 34/376: Add builtin function ‘fromJSON’, Ludovic Courtès, 2015/01/28
- 41/376: nix-copy-closure: Restore compression and the progress viewer, Ludovic Courtès, 2015/01/28