about summary refs log tree commit diff stats
path: root/cpp/.traces/brace_conversion
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/.traces/brace_conversion')
0 files changed, 0 insertions, 0 deletions
lt'>
13ba3def ^
795f5244 ^
166e3c0d ^
11c53a59 ^
166e3c0d ^
8d72e565 ^
166e3c0d ^









9dcbec39 ^
e4630643 ^

166e3c0d ^



0f3706a4 ^






fa94f4d9 ^





5c7ed3d6 ^
cfb142b9 ^
5c7ed3d6 ^



13ba3def ^



f3c75c73 ^
13ba3def ^
13ba3def ^

f3c75c73 ^


13ba3def ^






795f5244 ^
166e3c0d ^
13ba3def ^
166e3c0d ^
8d72e565 ^
e4630643 ^

166e3c0d ^






9dcbec39 ^
166e3c0d ^

5f98a10c ^
9dcbec39 ^
166e3c0d ^





aa088845 ^
48e40252 ^






614ea44b ^
de92036d ^
13ba3def ^

5aa38b52 ^
13ba3def ^
fc4a98dc ^

13ba3def ^
1b76245c ^
13ba3def ^

5aa38b52 ^





1
2
3
4
5
6
7
8
9
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
                            

                                          

                                             
        
                                        
                                        
                                       
               
                                    
                                                                                                                                            









                                                  
                                                                                                                                                                

          



                                                






                                                                   





                                
                                              
                     



                                                      



        
                                                                                      
                                      

                                 


                                                      






                                             
                                  
                                       
            
                                    
                                                                                                                                          

          






                                                  
                                                                                                                                                             

          
                                              
                                                                                                                                                                                





                                                
                                                      






                                                                   
                                              
                                                            

                   
                                    
                                                  

                                                                                                                           
                  
                                                                       

        





                                             
//: Dead simple persistence.
//:   'restore' - reads string from a file
//:   'save' - writes string to a file

:(before "End Primitive Recipe Declarations")
RESTORE,
:(before "End Primitive Recipe Numbers")
put(Recipe_ordinal, "restore", RESTORE);
:(before "End Primitive Recipe Checks")
case RESTORE: {
  if (SIZE(inst.ingredients) != 1) {
    raise << maybe(get(Recipe, r).name) << "'restore' requires exactly one ingredient, but got '" << inst.original_string << "'\n" << end();
    break;
  }
  string filename;
  if (is_literal_string(inst.ingredients.at(0))) {
    ;
  }
  else if (is_mu_string(inst.ingredients.at(0))) {
    ;
  }
  else {
    raise << maybe(get(Recipe, r).name) << "first ingredient of 'restore' should be a string, but got '" << to_string(inst.ingredients.at(0)) << "'\n" << end();
    break;
  }
  break;
}
:(before "End Primitive Recipe Implementations")
case RESTORE: {
  string filename;
  if (is_literal_string(current_instruction().ingredients.at(0))) {
    filename = current_instruction().ingredients.at(0).name;
  }
  else if (is_mu_string(current_instruction().ingredients.at(0))) {
    filename = read_mu_string(ingredients.at(0).at(0));
  }
  if (Current_scenario) {
    // do nothing in tests
    products.resize(1);
    products.at(0).push_back(0);
    break;
  }
  string contents = slurp("lesson/"+filename);
  products.resize(1);
  if (contents.empty())
    products.at(0).push_back(0);
  else
    products.at(0).push_back(new_mu_string(contents));
  break;
}

:(code)
// http://cpp.indi.frih.net/blog/2014/09/how-to-read-an-entire-file-into-memory-in-cpp
string slurp(const string& filename) {
  ifstream fin(filename.c_str());
  fin.peek();
  if (!fin) return "";  // don't bother checking errno
  ostringstream result;
  result << fin.rdbuf();
  fin.close();
  return result.str();
}

:(before "End Primitive Recipe Declarations")
SAVE,
:(before "End Primitive Recipe Numbers")
put(Recipe_ordinal, "save", SAVE);
:(before "End Primitive Recipe Checks")
case SAVE: {
  if (SIZE(inst.ingredients) != 2) {
    raise << maybe(get(Recipe, r).name) << "'save' requires exactly two ingredients, but got '" << inst.original_string << "'\n" << end();
    break;
  }
  if (is_literal_string(inst.ingredients.at(0))) {
    ;
  }
  else if (is_mu_string(inst.ingredients.at(0))) {
    ;
  }
  else {
    raise << maybe(get(Recipe, r).name) << "first ingredient of 'save' should be a string, but got '" << to_string(inst.ingredients.at(0)) << "'\n" << end();
    break;
  }
  if (!is_mu_string(inst.ingredients.at(1))) {
    raise << maybe(get(Recipe, r).name) << "second ingredient of 'save' should be an address:array:character, but got '" << to_string(inst.ingredients.at(1)) << "'\n" << end();
    break;
  }
  break;
}
:(before "End Primitive Recipe Implementations")
case SAVE: {
  if (Current_scenario) break;  // do nothing in tests
  string filename;
  if (is_literal_string(current_instruction().ingredients.at(0))) {
    filename = current_instruction().ingredients.at(0).name;
  }
  else if (is_mu_string(current_instruction().ingredients.at(0))) {
    filename = read_mu_string(ingredients.at(0).at(0));
  }
  ofstream fout(("lesson/"+filename).c_str());
  string contents = read_mu_string(ingredients.at(1).at(0));
  fout << contents;
  fout.close();
  if (!exists("lesson/.git")) break;
  // bug in git: git diff -q messes up --exit-code
  // explicitly say '--all' for git 1.9
  int status = system("cd lesson; git add --all .; git diff HEAD --exit-code >/dev/null || git commit -a -m . >/dev/null");
  if (status != 0)
    raise << "error in commit: contents " << contents << '\n' << end();
  break;
}

:(code)
bool exists(const string& filename) {
  struct stat dummy;
  return 0 == stat(filename.c_str(), &dummy);
}