spot  1.99.3
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
public.hh
1 // -*- coding: utf-8 -*-
2 // Copyright (C) 2013, 2014, 2015 Laboratoire de Recherche et Développement
3 // de l'Epita (LRDE).
4 //
5 // This file is part of Spot, a model checking library.
6 //
7 // Spot is free software; you can redistribute it and/or modify it
8 // under the terms of the GNU General Public License as published by
9 // the Free Software Foundation; either version 3 of the License, or
10 // (at your option) any later version.
11 //
12 // Spot is distributed in the hope that it will be useful, but WITHOUT
13 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 // License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program. If not, see <http://www.gnu.org/licenses/>.
19 
20 #pragma once
21 
22 #include "twa/twagraph.hh"
23 #include "misc/location.hh"
24 #include "ltlenv/defaultenv.hh"
25 #include <string>
26 #include <list>
27 #include <utility>
28 #include <iosfwd>
29 #include <misc/bitvect.hh>
30 
31 namespace spot
32 {
35 
36 #ifndef SWIG
37  typedef std::pair<spot::location, std::string> parse_aut_error;
40  typedef std::list<parse_aut_error> parse_aut_error_list;
41 #else
42  // Turn parse_aut_error_list into an opaque type for Swig.
43  struct parse_aut_error_list {};
44 #endif
45 
48  struct SPOT_API parsed_aut
49  {
50  // Transition structure of the automaton.
51  // This is encoded as a TGBA without acceptance condition.
52  twa_graph_ptr aut;
53  bool aborted = false;
54  spot::location loc;
55  };
56 
57  typedef std::shared_ptr<parsed_aut> parsed_aut_ptr;
58  typedef std::shared_ptr<const parsed_aut> const_parsed_aut_ptr;
59 
60  class SPOT_API automaton_stream_parser
61  {
62  spot::location last_loc;
63  std::string filename_;
64  bool ignore_abort_;
65  public:
66  automaton_stream_parser(const std::string& filename,
67  bool ignore_abort = false);
68  // Read from an already open file descriptor.
69  // Use filename in error messages.
70  automaton_stream_parser(int fd, const std::string& filename,
71  bool ignore_abort = false);
72  // Read from a buffer
73  automaton_stream_parser(const char* data,
74  const std::string& filename,
75  bool ignore_abort = false);
77  parsed_aut_ptr parse(parse_aut_error_list& error_list,
78  const bdd_dict_ptr& dict,
79  ltl::environment& env =
81  bool debug = false);
82  // Raises a parse_error on any syntax error
83  twa_graph_ptr parse_strict(const bdd_dict_ptr& dict,
84  ltl::environment& env =
86  bool debug = false);
87  };
88 
116  inline parsed_aut_ptr
117  parse_aut(const std::string& filename,
118  parse_aut_error_list& error_list,
119  const bdd_dict_ptr& dict,
121  bool debug = false)
122  {
123  try
124  {
125  automaton_stream_parser p(filename);
126  return p.parse(error_list, dict, env, debug);
127  }
128  catch (std::runtime_error& e)
129  {
130  error_list.emplace_back(spot::location(), e.what());
131  return nullptr;
132  }
133  }
134 
141  SPOT_API bool
142  format_parse_aut_errors(std::ostream& os,
143  const std::string& filename,
144  parse_aut_error_list& error_list);
145 
147 }
Definition: public.hh:31
std::pair< spot::location, std::string > parse_aut_error
A parse diagnostic with its location.
Definition: public.hh:38
Temporary encoding of an omega automaton produced by the parser.
Definition: public.hh:48
SPOT_API bool format_parse_aut_errors(std::ostream &os, const std::string &filename, parse_aut_error_list &error_list)
Format diagnostics produced by spot::parse_aut.
std::list< parse_aut_error > parse_aut_error_list
A list of parser diagnostics, as filled by parse.
Definition: public.hh:40
parsed_aut_ptr parse_aut(const std::string &filename, parse_aut_error_list &error_list, const bdd_dict_ptr &dict, ltl::environment &env=ltl::default_environment::instance(), bool debug=false)
Build a spot::twa_graph from a HOA file or a neverclaim.
Definition: public.hh:117
An environment that describes atomic propositions.
Definition: environment.hh:34
static default_environment & instance()
Get the sole instance of spot::ltl::default_environment.
Definition: public.hh:60

Please direct any question, comment, or bug report to the Spot mailing list at spot@lrde.epita.fr.
Generated on Wed Aug 26 2015 08:42:37 for spot by doxygen 1.8.8