-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from joular/virtualmachine
Virtualmachine
- Loading branch information
Showing
4 changed files
with
254 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
-- | ||
-- Copyright (c) 2020-2024, Adel Noureddine, Université de Pau et des Pays de l'Adour. | ||
-- All rights reserved. This program and the accompanying materials | ||
-- are made available under the terms of the | ||
-- GNU General Public License v3.0 only (GPL-3.0-only) | ||
-- which accompanies this distribution, and is available at: | ||
-- https://www.gnu.org/licenses/gpl-3.0.en.html | ||
-- | ||
-- Author : Axel Terrier | ||
-- Contributors : Adel Noureddine | ||
-- | ||
|
||
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; | ||
with Ada.Directories; use Ada.Directories; | ||
with Ada.Text_IO; use Ada.Text_IO; | ||
with GNAT.OS_Lib; use GNAT.OS_Lib; | ||
with GNAT.String_Split; use GNAT; | ||
with Ada.Exceptions; use Ada.Exceptions; | ||
|
||
package body Virtual_Machine is | ||
|
||
-- Read the exported data in PowerJoular format | ||
function Read_PowerJoular (File_Path : String) return Long_Float is | ||
F : File_Type; -- File handle | ||
Line : Unbounded_String; | ||
Subs : String_Split.Slice_Set; -- Used to slice the read data from stat file | ||
Seps : constant String := ","; -- Seperator (space) for slicing string | ||
Power_Value : Long_Float; | ||
begin | ||
Open (F, In_File, File_Path); | ||
Line := To_Unbounded_String (Get_Line (F)); -- Read data. We only need the first line of the file | ||
Close (F); | ||
|
||
-- Ensure the line is not empty before processing | ||
if Line /= To_Unbounded_String ("") then | ||
-- Processes the first line obtained | ||
String_Split.Create (S => Subs, -- Store sliced data in Subs | ||
From => To_String (Line), | ||
Separators => Seps, -- Separator | ||
Mode => String_Split.Multiple); | ||
|
||
-- Converts the value of the third column (power consumption of PID or app, so of VM) into a float | ||
Power_Value := Long_Float'Value (String_Split.Slice (Subs, 3)); | ||
|
||
return Power_Value; | ||
else | ||
return 0.0; -- Return 0 is file is empty | ||
end if; | ||
exception | ||
when others => | ||
Put_Line ("The file cannot be found, check the path"); | ||
OS_Exit (0); | ||
end Read_PowerJoular; | ||
|
||
function Read_Watts (File_Path : String) return Long_Float is | ||
F : File_Type; | ||
Line : Unbounded_String; | ||
Result : Long_Float := 0.0; | ||
begin | ||
Open (F, In_File, File_Path); | ||
Line := To_Unbounded_String (Get_Line (F)); -- Read data. We only need the first line of the file | ||
Close (F); | ||
|
||
-- Clean the string and keep only numbers and dots | ||
declare | ||
Temp : String := To_String (Line); | ||
Clean : String (1 .. Temp'Length) := (others => '0'); | ||
j : Natural := 1; | ||
begin | ||
for i in Temp'Range loop | ||
if ('0' <= Temp (i) and Temp (i) <= '9') or Temp (i) = '.' | ||
then | ||
Clean (j) := Temp (i); | ||
j := j + 1; | ||
end if; | ||
end loop; | ||
Line := To_Unbounded_String (Clean (1 .. j - 1)); | ||
end; | ||
|
||
-- Attempted conversion | ||
begin | ||
Result := Long_Float'Value (To_String (Line)); | ||
exception | ||
when E : others => | ||
Put_Line ("Failed to convert to long float: " & Exception_Message (E)); | ||
OS_Exit (0); | ||
end; | ||
|
||
return Result; | ||
exception | ||
when E : others => | ||
Put_Line ("Error after reading line: " & Exception_Message (E)); | ||
OS_Exit (0); | ||
end Read_Watts; | ||
|
||
function Read_VM_Power (File_Name : Unbounded_String; Power_Format : Unbounded_String) return Long_Float is | ||
VM_File_Name : String := To_String(File_Name); | ||
VM_Power_Format : String := To_String(Power_Format); | ||
Power : Long_Float; | ||
|
||
-- Customized exceptions | ||
Invalid_File_Name_Exception : exception; | ||
Invalid_Format_Exception : exception; | ||
begin | ||
-- Check if file name parameter exist | ||
if VM_File_Name = "" then | ||
raise Invalid_File_Name_Exception; | ||
end if; | ||
|
||
-- Check file existence | ||
if not Exists (VM_File_Name) then | ||
raise Invalid_File_Name_Exception; | ||
end if; | ||
|
||
-- Iteration on supported formats | ||
if VM_Power_Format = ("powerjoular") then | ||
Power := Read_PowerJoular (VM_File_Name); | ||
else | ||
if VM_Power_Format = ("watts") then | ||
Power := Read_Watts (VM_File_Name); | ||
else | ||
raise Invalid_Format_Exception; -- Format not supported | ||
end if; | ||
end if; | ||
|
||
return Power; | ||
|
||
exception | ||
when Invalid_File_Name_Exception => | ||
Put_Line ("Error: The file name is invalid.."); | ||
OS_Exit (0); | ||
when Invalid_Format_Exception => | ||
Put_Line ("Error: The specified power format is not supported."); | ||
OS_Exit (0); | ||
end Read_VM_Power; | ||
|
||
end Virtual_Machine; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
-- | ||
-- Copyright (c) 2020-2024, Adel Noureddine, Université de Pau et des Pays de l'Adour. | ||
-- All rights reserved. This program and the accompanying materials | ||
-- are made available under the terms of the | ||
-- GNU General Public License v3.0 only (GPL-3.0-only) | ||
-- which accompanies this distribution, and is available at: | ||
-- https://www.gnu.org/licenses/gpl-3.0.en.html | ||
-- | ||
-- Author : Axel Terrier | ||
-- Contributors : Adel Noureddine | ||
-- | ||
|
||
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; | ||
|
||
package Virtual_Machine is | ||
|
||
-- Read virtual machine power data from the shared file and returns the power consumption of the entire VM | ||
function Read_VM_Power(File_Name : Unbounded_String; Power_Format : Unbounded_String) return Long_Float; | ||
|
||
end Virtual_Machine; |