summary refs log tree commit diff stats
path: root/README
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2011-10-11 22:37:39 +0200
committerhut <hut@lavabit.com>2011-10-11 22:40:04 +0200
commit531d8b2def5fcf43d70819c86fc612028ca98f4d (patch)
tree6a3195680271dcd208e3c92106053fad5d712846 /README
parent30a35e6a7b95a06709590dc56afb96ea7ccecb62 (diff)
downloadranger-531d8b2def5fcf43d70819c86fc612028ca98f4d.tar.gz
FOR THE HURD v1.5.0
Diffstat (limited to 'README')
0 files changed, 0 insertions, 0 deletions
f='#n10'>10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
38
39
40
41
42
43
44
45
46
47
48
49
50
51




































                                                                          
                                  

                                                          
                                                                                                              









                                                                
//: when encountering other types, try to convert them to strings using
//: 'to-text'

:(before "End Instruction Inserting/Deleting Transforms")
Transform.push_back(rewrite_stashes_to_text);

:(code)
void rewrite_stashes_to_text(recipe_ordinal r) {
  recipe& caller = get(Recipe, r);
  if (contains_named_locations(caller))
    rewrite_stashes_to_text_named(caller);
  // in recipes without named locations, 'stash' is still not configurable
}

bool contains_named_locations(const recipe& caller) {
  for (long long int i = 0; i < SIZE(caller.steps); ++i) {
    const instruction& inst = caller.steps.at(i);
    for (long long int in = 0; in < SIZE(inst.ingredients); ++in)
      if (is_named_location(inst.ingredients.at(in)))
        return true;
    for (long long int out = 0; out < SIZE(inst.products); ++out)
      if (is_named_location(inst.products.at(out)))
        return true;
  }
  return false;
}

void rewrite_stashes_to_text_named(recipe& caller) {
  static long long int stash_instruction_idx = 0;
  vector<instruction> new_instructions;
  for (long long int i = 0; i < SIZE(caller.steps); ++i) {
    instruction& inst = caller.steps.at(i);
    if (inst.name == "stash") {
      for (long long int j = 0; j < SIZE(inst.ingredients); ++j) {
        if (is_literal(inst.ingredients.at(j))) continue;
        if (is_mu_string(inst.ingredients.at(j))) continue;
        instruction def;
        def.name = "to-text-line";
        def.ingredients.push_back(inst.ingredients.at(j));
        ostringstream ingredient_name;
        ingredient_name << "stash_" << stash_instruction_idx << '_' << j << ":address:shared:array:character";
        def.products.push_back(reagent(ingredient_name.str()));
        new_instructions.push_back(def);
        inst.ingredients.at(j).clear();  // reclaim old memory
        inst.ingredients.at(j) = reagent(ingredient_name.str());
      }
    }
    new_instructions.push_back(inst);
  }
  new_instructions.swap(caller.steps);
}