------------------------------------------------------------------------------- ------------------------------------------------------------------------------ -- Cheddar is a GNU GPL real time scheduling analysis tool. -- This program provides services to automatically check performances -- of real time architectures. -- -- Copyright (C) 2002-2010, by Frank Singhoff, Alain Plantec, Jerome Legrand -- -- The Cheddar project was started in 2002 by -- the LISyC Team, University of Western Britanny. -- -- Since 2008, Ellidiss technologies also contributes to the development of -- Cheddar and provides industrial support. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- -- -- Contact : cheddar@listes.univ-brest.fr -- ----------------------------------------------------------------------------- -- Last update : -- $Rev: 523 $ -- $Date: 2012-09-26 15:09:39 +0200 (Wed, 26 Sep 2012) $ -- $Author: fotsing $ ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ with GNAT.OS_Lib; use GNAT.OS_Lib; with Ada.Exceptions; use Ada.Exceptions; pragma Warnings (Off); with Ada.Numerics.Aux; use Ada.Numerics.Aux; pragma Warnings (On); with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with Ada.Strings; use Ada.Strings; with Ada.Strings.Maps; use Ada.Strings.Maps; with Ada.Text_IO; use Ada.Text_IO; with Framework_Config; use Framework_Config; with Offsets; use Offsets; use Offsets.Offsets_Table_Package; with Parameters; use Parameters; use Parameters.User_Defined_Parameters_Table_Package; with Debug; use Debug; with Aadl_Config; use Aadl_Config; with Resources; use Resources; use Resources.resource_accesses; with Resource_Set; use Resource_Set; use Resource_Set.Generic_Resource_Set; with Message_Set; use Message_Set; use Message_Set.Generic_Message_Set; with Event_Analyzer_Set; use Event_Analyzer_Set; use Event_Analyzer_Set.Generic_Event_Analyzer_Set; with Tasks; use Tasks; with Task_Set; use Task_Set; use Task_Set.Generic_Task_Set; with Address_Spaces; use Address_Spaces; with Address_Space_Set; use Address_Space_Set; use Address_Space_Set.Generic_Address_Space_Set; with Buffers; use Buffers; use Buffers.Buffer_Roles_package; with Buffer_Set; use Buffer_Set; use Buffer_Set.Generic_Buffer_Set; with Task_Dependencies; use Task_Dependencies; with Time_Unit_Events; use Time_Unit_Events; use Time_Unit_Events.Time_Unit_Package; with Multiprocessor_Services_Interface; use Multiprocessor_Services_Interface; use Multiprocessor_Services_Interface.Scheduling_Result_Per_Processor_Package; with Queueing_Systems; use Queueing_Systems; with GNAT.Current_Exception; use GNAT.Current_Exception; with Scheduler_Interface; use Scheduler_Interface; with io_tools; use io_tools; with Translate; use Translate; with AADL_Parser_Interface; use AADL_Parser_Interface; use AADL_Parser_Interface.Processor_Binding_Package; with processors; use processors; with unbounded_strings; use unbounded_strings; with core_units; use core_units; use core_units.Core_Units_Table_Package; package body AADL_Parsers is procedure Initialize_Project_Parser (Handler : in out AADL_Project_Parser) is Dummy : Boolean := False; begin Dummy := True; end Initialize_Project_Parser; function Get_Parsed_System (Handler : AADL_Project_Parser) return System is Dummy : Boolean := False; begin return Handler.Parsed_System; end Get_Parsed_System; procedure Initialize (Handler : in out AADL_Project_Parser) is Dummy : Boolean := False; begin Dummy := True; end Initialize; ----------- -- Parse -- ----------- procedure Parse (Handler : in out AADL_Project_Parser; Dir_List : unbounded_string_list; Project_File_List : unbounded_string_list) is Dummy : Boolean := False; begin Dummy := True; end Parse; end AADL_Parsers;