Computer Laboratory

Manifest.h
Go to the documentation of this file.
1 
2 /*
3  * Copyright (c) 2012-2013 Jonathan Anderson
4  * All rights reserved.
5  *
6  * This software was developed by SRI International and the University of
7  * Cambridge Computer Laboratory under DARPA/AFRL contract (FA8750-10-C-0237)
8  * ("CTSRD"), as part of the DARPA CRASH research programme.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  * notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  * notice, this list of conditions and the following disclaimer in the
17  * documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31 
32 #include "Automaton.h"
33 #include "Names.h"
34 
35 #include "llvm/ADT/ArrayRef.h"
36 #include "llvm/ADT/OwningPtr.h"
37 #include "llvm/ADT/StringRef.h"
38 
39 #include <map>
40 #include <vector>
41 
42 namespace llvm {
43  class raw_ostream;
44 }
45 
46 namespace tesla {
47 
48 class AutomatonDescription;
49 class FunctionEvent;
50 class Identifier;
51 class Location;
52 class Usage;
53 
55 class Manifest {
56 public:
57  Manifest(const Manifest&) LLVM_DELETED_FUNCTION;
58  ~Manifest();
59 
61  llvm::ArrayRef<const Usage*> RootAutomata() const { return Roots; }
62 
64  const AutomataMap& AllAutomata() const { return Descriptions; }
65 
67  const Automaton* FindAutomaton(const Identifier&) const;
68 
70  const Automaton* FindAutomaton(const Location&) const;
71 
73  static Manifest* load(llvm::raw_ostream& Err,
75  llvm::StringRef Path = defaultLocation());
76 
82  static llvm::StringRef defaultLocation();
83 
84 private:
85  Manifest(llvm::OwningPtr<ManifestFile>& Protobuf,
86  const AutomataMap& Descriptions,
87  const std::map<Identifier,const Automaton*>& Automata,
88  llvm::ArrayRef<const Usage*> Roots)
89  : Protobuf(Protobuf.take()), Descriptions(Descriptions), Automata(Automata),
90  Roots(Roots)
91  {
92  }
93 
94  const Automaton* FindAutomaton(llvm::StringRef Name, Automaton::Type) const;
95 
96  static const std::string SEP;
97 
99  llvm::OwningPtr<ManifestFile> Protobuf;
100 
102  AutomataMap Descriptions;
103 
105  std::map<Identifier,const Automaton*> Automata;
106 
108  llvm::ArrayRef<const Usage*> Roots;
109 };
110 
111 }
112