Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1497662
AppSystem.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Size
1 KB
Referenced Files
None
Subscribers
None
AppSystem.cpp
View Options
//===-- app/AppSystem.cpp ---------------------------------------*- C++ -*-===//
//
// The RoSA Framework
//
// Distributed under the terms and conditions of the Boost Software License 1.0.
// See accompanying file LICENSE.
//
// If you did not receive a copy of the license file, see
// http://www.boost.org/LICENSE_1_0.txt.
//
//===----------------------------------------------------------------------===//
///
/// \file app/AppSystem.cpp
///
/// \author David Juhasz (david.juhasz@tuwien.ac.at)
///
/// \date 2017-2020
///
/// \brief Implementation of rosa/app/AppSystem.hpp.
///
//===----------------------------------------------------------------------===//
#include
"rosa/app/AppSystem.hpp"
#include
"AppSystemImpl.hpp"
namespace
rosa
{
namespace
app
{
std
::
unique_ptr
<
AppSystem
>
AppSystem
::
createSystem
(
const
std
::
string
&
Name
)
noexcept
{
return
std
::
unique_ptr
<
AppSystem
>
(
new
AppSystemImpl
(
Name
));
}
Optional
<
const
AppSensor
&>
AppSystem
::
getAppSensor
(
const
AgentHandle
&
H
)
const
noexcept
{
if
(
isAppSensor
(
H
))
{
return
{
static_cast
<
const
AppSensor
&>
(
unwrapAgent
(
H
))};
}
else
{
return
{};
}
}
Optional
<
AppSensor
&>
AppSystem
::
getAppSensor
(
AgentHandle
&
H
)
const
noexcept
{
if
(
isAppSensor
(
H
))
{
return
{
static_cast
<
AppSensor
&>
(
unwrapAgent
(
H
))};
}
else
{
return
{};
}
}
Optional
<
const
AppAgent
&>
AppSystem
::
getAppAgent
(
const
AgentHandle
&
H
)
const
noexcept
{
if
(
isAppAgent
(
H
))
{
return
{
static_cast
<
const
AppAgent
&>
(
unwrapAgent
(
H
))};
}
else
{
return
{};
}
}
Optional
<
AppAgent
&>
AppSystem
::
getAppAgent
(
AgentHandle
&
H
)
const
noexcept
{
if
(
isAppAgent
(
H
))
{
return
{
static_cast
<
AppAgent
&>
(
unwrapAgent
(
H
))};
}
else
{
return
{};
}
}
}
// End namespace app
}
// End namespace rosa
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Sun, Mar 1, 9:38 PM (1 d, 12 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
276849
Default Alt Text
AppSystem.cpp (1 KB)
Attached To
Mode
R20 SoC_Rosa_repo
Attached
Detach File
Event Timeline
Log In to Comment