Changes between Version 2 and Version 3 of BackendUtilities
- Timestamp:
- Apr 25, 2007, 10:34:51 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BackendUtilities
v2 v3 1 1 = Back-end utility functions = 2 2 3 The following functions can be used in your validator and assimilator code: 3 The following functions can be used in your validator and assimilator code: 4 4 5 ---- 5 6 6 {{{ 7 7 int get_output_file_path(RESULT const&, std::string&); 8 8 }}} 9 Returns the path of a result's output file (parses result.xml_doc_out and computes the file's position in the [DirHierarchy hierarchical directory structure]). 9 10 Returns the path of a result's output file (parses result.xml_doc_out and computes the file's position in the [DirHierarchy hierarchical directory structure]). 11 10 12 {{{ 11 13 int get_output_file_paths(RESULT const&, vector<string>&); 12 14 }}} 13 Same, for multiple output files.14 15 16 Same, for multiple output files. 15 17 16 18 ---- 17 18 19 {{{ 19 20 int try_fopen(char* path, FILE*& f, char* mode); 20 21 }}} 21 Open a file, distinguishing between recoverable and nonrecoverable errors. Returns zero on success. Returns ERR_FOPEN if the directory is present but not the file (this is considered a nonrecoverable error). Returns ERR_OPENDIR if the directory is not there (this is generally a recoverable error, like NFS mount failure). 22 23 Open a file, distinguishing between recoverable and nonrecoverable errors. Returns zero on success. Returns ERR_FOPEN if the directory is present but not the file (this is considered a nonrecoverable error). Returns ERR_OPENDIR if the directory is not there (this is generally a recoverable error, like NFS mount failure). 24 22 25 ---- 23 24 26 {{{ 25 27 double median_mean_credit(vector<RESULT> const& results); 26 28 }}} 27 Given a vector of N correct results, computes a canonical credit as follows: 29 30 Given a vector of N correct results, computes a canonical credit as follows: 31 28 32 * if N==1, return that result's claimed credit 29 33 * if N==2, return min of claimed credits