]> git.tdb.fi Git - builder.git/blob - source/dependencycache.cpp
f691d540190f65da3444ec97823562b3fb05afcd
[builder.git] / source / dependencycache.cpp
1 /* $Id$
2
3 This file is part of builder
4 Copyright © 2007-2009  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #include <msp/core/maputils.h>
9 #include <msp/fs/stat.h>
10 #include <msp/io/file.h>
11 #include <msp/io/print.h>
12 #include <msp/strings/utils.h>
13 #include "builder.h"
14 #include "dependencycache.h"
15 #include "sourcepackage.h"
16
17 using namespace std;
18 using namespace Msp;
19
20 DependencyCache::DependencyCache(SourcePackage &p):
21         package(p),
22         changed(false)
23 { }
24
25 void DependencyCache::set_deps(const string &tgt, const StringList &d)
26 {
27         deps[tgt] = d;
28         changed = true;
29 }
30
31 const StringList &DependencyCache::get_deps(const string &tgt) const
32 {
33         return get_item(deps, tgt);
34 }
35
36 void DependencyCache::save() const
37 {
38         if(deps.empty() || !changed || package.get_builder().get_dry_run())
39                 return;
40
41         IO::BufferedFile out((package.get_source()/".deps").str(), IO::M_WRITE);
42
43         for(DepsMap::const_iterator i=deps.begin(); i!=deps.end(); ++i)
44         {
45                 IO::print(out, i->first);
46                 for(StringList::const_iterator j=i->second.begin(); j!=i->second.end(); ++j)
47                         IO::print(out, "|%s", *j);
48                 IO::print(out, "\n");
49         }
50 }
51
52 void DependencyCache::load()
53 {
54         string fn = (package.get_source()/".deps").str();
55
56         try
57         {
58                 IO::BufferedFile in(fn);
59
60                 string line;
61                 while(in.getline(line))
62                 {
63                         vector<string> parts = split(line, '|');
64                         deps[parts[0]] = StringList(parts.begin()+1, parts.end());
65                 }
66
67                 mtime = FS::stat(fn).get_modify_time();
68         }
69         catch(const IO::file_not_found &)
70         { }
71 }