Skip to content

Makr remove result fix core dep#43

Merged
Mateusz-Krajewski merged 8 commits into
masterfrom
makr_remove_Result_fix_core_dep
Mar 10, 2024
Merged

Makr remove result fix core dep#43
Mateusz-Krajewski merged 8 commits into
masterfrom
makr_remove_Result_fix_core_dep

Conversation

@Mateusz-Krajewski
Copy link
Copy Markdown
Collaborator

No description provided.

@Mateusz-Krajewski Mateusz-Krajewski requested review from a team and bartoszsnieg as code owners March 7, 2024 11:27
@Mateusz-Krajewski Mateusz-Krajewski self-assigned this Mar 7, 2024
@Mateusz-Krajewski Mateusz-Krajewski added bug Something isn't working enhancement New feature or request check check_bbb labels Mar 7, 2024
Comment thread apps/example/router.h
Comment thread communication-core/someip-controller/BUILD Outdated
Comment thread core/application/application_common.cc Outdated
Comment thread core/application/application_common.h
Comment thread core/json/json_parser.h
Copy link
Copy Markdown
Contributor

@bartoszsnieg bartoszsnieg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Działa to ?

Comment thread communication-core/someip-controller/someip_controller.h
Comment thread communication-core/someip-controller/transfer.h
Comment on lines +44 to +59
.value();
auto service_id_r = obj.GetNumber<uint16_t>("diag_id");
if (service_id_r.HasValue()) {
if (service_id_r.Value() != 0) {
if (service_id_r.has_value()) {
if (service_id_r.value() != 0) {
AppLogger::Info("Application [MW] Service_id: " +
std::to_string(service_id_r.Value()));
std::to_string(service_id_r.value()));
this->diag_controller = std::make_unique<diag::DiagController>(
service_id_r.Value(), std::make_unique<com::soc::IpcSocket>());
service_id_r.value(), std::make_unique<com::soc::IpcSocket>());
}
}
auto service_id_ = obj.GetNumber<uint16_t>("app_id");
if (service_id_.has_value()) {
this->exec_->Init(service_id_.value());
} else {
return ErrorCode::kError;
}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

to mozna do osobnej funkcji w protected w common. Po co to samo implementowac 2 razy

Comment thread core/json/json_parser.cc Outdated
Comment thread core/json/json_parser.cc Outdated
Comment thread core/json/json_parser.cc
Comment thread core/json/json_parser.cc Outdated
Comment thread core/json/json_parser.h Outdated
Comment thread core/logger/logger_factory.cc Outdated
@Mateusz-Krajewski
Copy link
Copy Markdown
Collaborator Author

Działa to ?

działa poza exec manager, dzięki za uwage

@Mateusz-Krajewski Mateusz-Krajewski merged commit 7b9a682 into master Mar 10, 2024
@Mateusz-Krajewski Mateusz-Krajewski deleted the makr_remove_Result_fix_core_dep branch March 10, 2024 21:50
Mateusz-Krajewski added a commit that referenced this pull request May 7, 2024
* remove Result and //core import

* fix dtc+exec hdr, add exec controller to mw
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bug Something isn't working check_bbb check enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants