Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
chaosframework
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
chaos-lnf-control
chaosframework
Commits
a87bd802
Commit
a87bd802
authored
3 years ago
by
Andrea Michelotti
Browse files
Options
Downloads
Patches
Plain Diff
forgot files
parent
56c7e472
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
chaos/common/io/QueryCursorRPC.cpp
+110
-0
110 additions, 0 deletions
chaos/common/io/QueryCursorRPC.cpp
chaos/common/io/QueryCursorRPC.h
+83
-0
83 additions, 0 deletions
chaos/common/io/QueryCursorRPC.h
with
193 additions
and
0 deletions
chaos/common/io/QueryCursorRPC.cpp
0 → 100644
+
110
−
0
View file @
a87bd802
/*
* Copyright 2012, 2017 INFN
*
* Licensed under the EUPL, Version 1.2 or – as soon they
* will be approved by the European Commission - subsequent
* versions of the EUPL (the "Licence");
* You may not use this work except in compliance with the
* Licence.
* You may obtain a copy of the Licence at:
*
* https://joinup.ec.europa.eu/software/page/eupl
*
* Unless required by applicable law or agreed to in
* writing, software distributed under the Licence is
* distributed on an "AS IS" basis,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied.
* See the Licence for the specific language governing
* permissions and limitations under the Licence.
*/
#include
<chaos/common/chaos_constants.h>
#include
<chaos/common/io/QueryCursorRPC.h>
#include
<chaos/common/network/NetworkBroker.h>
#include
<chaos/common/message/MDSMessageChannel.h>
using
namespace
chaos
::
common
::
io
;
using
namespace
chaos
::
common
::
data
;
using
namespace
chaos
::
common
::
network
;
using
namespace
chaos
::
common
::
direct_io
::
channel
;
using
namespace
chaos
::
common
::
direct_io
::
channel
::
opcode_headers
;
#define INFO INFO_LOG(QueryCursorRPC)
#define DBG DBG_LOG(QueryCursorRPC)
#define ERR ERR_LOG(QueryCursorRPC)
static
chaos
::
common
::
network
::
URLServiceFeeder
buttami
(
""
,
NULL
);
QueryCursorRPC
::
QueryCursorRPC
(
const
std
::
string
&
_query_id
,
const
std
::
string
&
_node_id
,
uint64_t
_start_ts
,
uint64_t
_end_ts
,
uint32_t
default_page_len
)
:
QueryCursor
(
_query_id
,
buttami
,
_node_id
,
_start_ts
,
_end_ts
,
default_page_len
)
{}
QueryCursorRPC
::
QueryCursorRPC
(
const
std
::
string
&
_query_id
,
const
std
::
string
&
_node_id
,
uint64_t
_start_ts
,
uint64_t
_end_ts
,
const
ChaosStringSet
&
_meta_tags
,
const
ChaosStringSet
&
_projection_keys
,
uint32_t
default_page_len
)
:
QueryCursor
(
_query_id
,
buttami
,
_node_id
,
_start_ts
,
_end_ts
,
_meta_tags
,
_projection_keys
,
default_page_len
)
{}
QueryCursorRPC
::
QueryCursorRPC
(
const
std
::
string
&
_query_id
,
const
std
::
string
&
_node_id
,
uint64_t
_start_ts
,
uint64_t
_end_ts
,
uint64_t
_sequid
,
uint64_t
_runid
,
uint32_t
default_page_len
)
:
QueryCursor
(
_query_id
,
buttami
,
_node_id
,
_start_ts
,
_end_ts
,
_sequid
,
_runid
,
default_page_len
)
{}
QueryCursorRPC
::
QueryCursorRPC
(
const
std
::
string
&
_query_id
,
const
std
::
string
&
_node_id
,
uint64_t
_start_ts
,
uint64_t
_end_ts
,
uint64_t
_sequid
,
uint64_t
_runid
,
const
ChaosStringSet
&
_meta_tags
,
const
ChaosStringSet
&
_projection_keys
,
uint32_t
default_page_len
)
:
QueryCursor
(
_query_id
,
buttami
,
_node_id
,
_start_ts
,
_end_ts
,
_sequid
,
_runid
,
_meta_tags
,
_projection_keys
,
default_page_len
)
{}
QueryCursorRPC
::~
QueryCursorRPC
()
{}
int
QueryCursorRPC
::
fetchData
()
{
try
{
api_error
=
chaos
::
common
::
network
::
NetworkBroker
::
getInstance
()
->
getMetadataserverMessageChannel
()
->
queryDataCloud
(
node_id
,
meta_tags
,
projection_keys
,
start_ts
,
end_ts
,
page_len
,
result_page
.
last_record_found_seq
,
result_page
.
found_element_page
);
if
(
api_error
)
{
ERR
<<
CHAOS_FORMAT
(
"Error during fetching query page with code %1%"
,
%
api_error
);
phase
=
QueryPhaseEnded
;
return
api_error
;
}
else
{
result_page
.
current_fetched
=
0
;
last_end_ts
=
result_page
.
last_record_found_seq
.
ts
;
DBG
<<
"retrieved:"
<<
result_page
.
found_element_page
.
size
()
<<
" Page:"
<<
page_len
<<
" last ts:"
<<
last_end_ts
;
if
(
result_page
.
found_element_page
.
size
()
<
page_len
)
{
phase
=
QueryPhaseEnded
;
}
}
}
catch
(
const
chaos
::
CException
&
e
)
{
ERR
<<
"Chaos Exception :"
<<
e
.
errorMessage
;
}
catch
(
const
std
::
exception
&
e
)
{
ERR
<<
" StdException :"
<<
e
.
what
();
}
return
api_error
;
}
This diff is collapsed.
Click to expand it.
chaos/common/io/QueryCursorRPC.h
0 → 100644
+
83
−
0
View file @
a87bd802
/*
* Copyright 2021 INFN
*
* Licensed under the EUPL, Version 1.2 or – as soon they
* will be approved by the European Commission - subsequent
* versions of the EUPL (the "Licence");
* You may not use this work except in compliance with the
* Licence.
* You may obtain a copy of the Licence at:
*
* https://joinup.ec.europa.eu/software/page/eupl
*
* Unless required by applicable law or agreed to in
* writing, software distributed under the Licence is
* distributed on an "AS IS" basis,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied.
* See the Licence for the specific language governing
* permissions and limitations under the Licence.
*/
#ifndef __CHAOSFramework__CE8768D_5BB0_4EF2_A186_7685A0C31B3F_QueryCursorRPC_h
#define __CHAOSFramework__CE8768D_5BB0_4EF2_A186_7685A0C31B3F_QueryCursorRPC_h
#include
<chaos/common/chaos_types.h>
#include
<chaos/common/exception/CException.h>
#include
"QueryCursor.h"
#include
<stdint.h>
namespace
chaos
{
namespace
common
{
namespace
io
{
class
IODirectIOPSMsgDriver
;
#define DEFAULT_PAGE_LEN 1000
class
QueryCursorRPC
:
public
QueryCursor
{
friend
class
IODirectIOPSMsgDriver
;
protected:
QueryCursorRPC
(
const
std
::
string
&
_query_id
,
const
std
::
string
&
_node_id
,
uint64_t
_start_ts
,
uint64_t
_end_ts
,
uint32_t
page_len
=
DEFAULT_PAGE_LEN
);
QueryCursorRPC
(
const
std
::
string
&
_query_id
,
const
std
::
string
&
_node_id
,
uint64_t
_start_ts
,
uint64_t
_end_ts
,
const
ChaosStringSet
&
_meta_tags
,
const
ChaosStringSet
&
_projection_keys
,
uint32_t
page_len
=
DEFAULT_PAGE_LEN
);
QueryCursorRPC
(
const
std
::
string
&
_query_id
,
const
std
::
string
&
_node_id
,
uint64_t
_start_ts
,
uint64_t
_end_ts
,
uint64_t
_sequid
,
uint64_t
_runid
,
uint32_t
page_len
=
DEFAULT_PAGE_LEN
);
QueryCursorRPC
(
const
std
::
string
&
_query_id
,
const
std
::
string
&
_node_id
,
uint64_t
_start_ts
,
uint64_t
_end_ts
,
uint64_t
_sequid
,
uint64_t
_runid
,
const
ChaosStringSet
&
_meta_tags
,
const
ChaosStringSet
&
_projection_keys
,
uint32_t
page_len
=
DEFAULT_PAGE_LEN
);
~
QueryCursorRPC
();
virtual
int
fetchData
();
};
}
}
}
#endif
/* __CHAOSFramework__CE8768D_5BB0_4EF2_A186_7685A0C31B3F_QueryCursorRPC_h */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment