Add and use only rpl::start_with_*() methods.

This commit is contained in:
John Preston 2017-09-27 11:43:35 +03:00
parent ed061252a5
commit 086e46c162
41 changed files with 384 additions and 1113 deletions

View File

@ -288,7 +288,7 @@ void EditPrivacyBox::createWidgets() {
auto createExceptionLink = [this](Exception exception) {
exceptionLink(exception).create(this, object_ptr<Ui::LinkButton>(this, exceptionLinkText(exception)), exceptionLinkMargins());
exceptionLink(exception)->heightValue()
| rpl::start([this](int) {
| rpl::start_with_next([this](int) {
resizeToWidth(width());
}, lifetime());
exceptionLink(exception)->entity()->setClickedCallback([this, exception] { editExceptionUsers(exception); });

View File

@ -128,7 +128,9 @@ void NotificationsBox::prepare() {
}
_countSlider->setActiveSectionFast(_oldCount - 1);
_countSlider->sectionActivated()
| rpl::start([this](int) { countChanged(); }, lifetime());
| rpl::start_with_next(
[this](int) { countChanged(); },
lifetime());
setMouseTracking(true);

View File

@ -51,7 +51,7 @@ void PeerListBox::createMultiSelect() {
auto entity = object_ptr<Ui::MultiSelect>(this, st::contactsMultiSelect, langFactory(lng_participant_filter));
_select.create(this, std::move(entity));
_select->heightValue()
| rpl::start(
| rpl::start_with_next(
[this](int) { updateScrollSkips(); },
lifetime());
_select->entity()->setSubmittedCallback([this](bool chtrlShiftEnter) { content()->submitted(); });
@ -105,7 +105,7 @@ void PeerListBox::prepare() {
}
content()->scrollToRequests()
| rpl::start([this](Ui::ScrollToRequest request) {
| rpl::start_with_next([this](Ui::ScrollToRequest request) {
onScrollToY(request.ymin, request.ymax);
}, lifetime());

View File

@ -58,7 +58,7 @@ void StickerSetBox::prepare() {
connect(_inner, SIGNAL(updateButtons()), this, SLOT(onUpdateButtons()));
_inner->setInstalled()
| rpl::start([this](auto &&setId) {
| rpl::start_with_next([this](auto &&setId) {
Auth().api().stickerSetInstalled(setId);
this->closeBox();
}, lifetime());

View File

@ -245,7 +245,9 @@ void StickersBox::prepare() {
}
setNoContentMargin(true);
_tabs->sectionActivated()
| rpl::start([this](int) { switchTab(); }, lifetime());
| rpl::start_with_next(
[this](int) { switchTab(); },
lifetime());
refreshTabs();
}
if (_installed.widget() && _section != Section::Installed) _installed.widget()->hide();

View File

@ -63,7 +63,7 @@ TabbedPanel::TabbedPanel(
}
});
_selector->showRequests()
| rpl::start([this](auto&&) {
| rpl::start_with_next([this](auto&&) {
this->showFromSelector();
}, lifetime());

View File

@ -347,8 +347,9 @@ TabbedSelector::TabbedSelector(QWidget *parent, not_null<Window::Controller*> co
}));
Auth().api().stickerSetInstalled()
| rpl::start([this](uint64 setId) {
_tabsSlider->setActiveSection(static_cast<int>(SelectorTab::Stickers));
| rpl::start_with_next([this](uint64 setId) {
_tabsSlider->setActiveSection(
static_cast<int>(SelectorTab::Stickers));
stickers()->showStickerSet(setId);
_showRequests.fire({});
}, lifetime());
@ -607,7 +608,9 @@ void TabbedSelector::createTabsSlider() {
_tabsSlider->setActiveSectionFast(static_cast<int>(_currentTabType));
_tabsSlider->sectionActivated()
| rpl::start([this](int) { switchTab(); }, lifetime());
| rpl::start_with_next(
[this](int) { switchTab(); },
lifetime());
_tabsSlider->resizeToWidth(width());
_tabsSlider->moveToLeft(0, 0);

View File

@ -692,7 +692,7 @@ ChannelData::ChannelData(const PeerId &id)
: PeerData(id)
, inputChannel(MTP_inputChannel(MTP_int(bareId()), MTP_long(0))) {
Data::PeerFlagValue(this, MTPDchannel::Flag::f_megagroup)
| rpl::start([this](bool megagroup) {
| rpl::start_with_next([this](bool megagroup) {
if (megagroup) {
if (!mgInfo) {
mgInfo = std::make_unique<MegagroupInfo>();

View File

@ -478,20 +478,20 @@ rpl::producer<SharedMediaSlice> SharedMediaViewer(
data.second);
};
builder->insufficientMediaAround()
| rpl::start(requestMediaAround, lifetime);
| rpl::start_with_next(requestMediaAround, lifetime);
Auth().storage().sharedMediaSliceUpdated()
| rpl::start(applyUpdate, lifetime);
| rpl::start_with_next(applyUpdate, lifetime);
Auth().storage().sharedMediaOneRemoved()
| rpl::start(applyUpdate, lifetime);
| rpl::start_with_next(applyUpdate, lifetime);
Auth().storage().sharedMediaAllRemoved()
| rpl::start(applyUpdate, lifetime);
| rpl::start_with_next(applyUpdate, lifetime);
Auth().storage().query(Storage::SharedMediaQuery(
key,
limitBefore,
limitAfter))
| rpl::start(
| rpl::start_with_next_done(
applyUpdate,
[=] { builder->checkInsufficientMedia(); },
lifetime);
@ -626,7 +626,7 @@ rpl::producer<SharedMediaMergedSlice> SharedMediaMergedViewer(
SharedMediaMergedSlice::PartKey(key),
limitBefore,
limitAfter
) | rpl::start([=](SharedMediaSlice &&update) {
) | rpl::start_with_next([=](SharedMediaSlice &&update) {
builder->applyPartUpdate(std::move(update));
consumer.put_next(builder->snapshot());
}, lifetime);
@ -636,7 +636,7 @@ rpl::producer<SharedMediaMergedSlice> SharedMediaMergedViewer(
SharedMediaMergedSlice::MigratedKey(key),
limitBefore,
limitAfter
) | rpl::start([=](SharedMediaSlice &&update) {
) | rpl::start_with_next([=](SharedMediaSlice &&update) {
builder->applyMigratedUpdate(std::move(update));
consumer.put_next(builder->snapshot());
}, lifetime);
@ -778,7 +778,7 @@ rpl::producer<SharedMediaWithLastSlice> SharedMediaWithLastViewer(
SharedMediaWithLastSlice::ViewerKey(key),
limitBefore,
limitAfter
) | rpl::start([=](SharedMediaMergedSlice &&update) {
) | rpl::start_with_next([=](SharedMediaMergedSlice &&update) {
builder->applyViewerUpdate(std::move(update));
consumer.put_next(builder->snapshot());
}, lifetime);
@ -788,7 +788,7 @@ rpl::producer<SharedMediaWithLastSlice> SharedMediaWithLastViewer(
SharedMediaWithLastSlice::EndingKey(key),
1,
1
) | rpl::start([=](SharedMediaMergedSlice &&update) {
) | rpl::start_with_next([=](SharedMediaMergedSlice &&update) {
builder->applyEndingUpdate(std::move(update));
consumer.put_next(builder->snapshot());
}, lifetime);

View File

@ -231,16 +231,16 @@ rpl::producer<UserPhotosSlice> UserPhotosViewer(
Auth().api().requestUserPhotos(user, photoId);
};
builder->insufficientPhotosAround()
| rpl::start(requestPhotosAround, lifetime);
| rpl::start_with_next(requestPhotosAround, lifetime);
Auth().storage().userPhotosSliceUpdated()
| rpl::start(applyUpdate, lifetime);
| rpl::start_with_next(applyUpdate, lifetime);
Auth().storage().query(Storage::UserPhotosQuery(
key,
limitBefore,
limitAfter))
| rpl::start(
| rpl::start_with_next_done(
applyUpdate,
[=] { builder->checkInsufficientPhotos(); },
lifetime);

View File

@ -61,12 +61,12 @@ LayerWrap::LayerWrap(
void LayerWrap::setupHeightConsumers() {
_content->desiredHeightValue()
| rpl::start([this](int height) {
| rpl::start_with_next([this](int height) {
_desiredHeight = height;
resizeToWidth(width());
}, lifetime());
heightValue()
| rpl::start([this](int height) {
| rpl::start_with_next([this](int height) {
_content->resize(
width(),
height - _topBar->bottomNoMargins() - st::boxRadius);
@ -81,7 +81,7 @@ object_ptr<TopBar> LayerWrap::createTopBar() {
result.data(),
st::infoLayerTopBarClose));
close->clicks()
| rpl::start([this](auto&&) {
| rpl::start_with_next([this](auto&&) {
_controller->hideSpecialLayer();
}, close->lifetime());
result->setTitle(TitleValue(

View File

@ -110,7 +110,10 @@ Ui::RpWidget *ContentWidget::doSetInnerWidget(
_scroll->heightValue(),
_inner->desiredHeightValue(),
tuple($1, $1 + $2, $3))
| rpl::start([inner = _inner](int top, int bottom, int desired) {
| rpl::start_with_next([inner = _inner](
int top,
int bottom,
int desired) {
inner->setVisibleTopBottom(top, bottom);
}, _inner->lifetime());
return _inner;

View File

@ -94,7 +94,7 @@ object_ptr<TopBar> NarrowWrap::createTopBar() {
st::infoLayerTopBar);
result->enableBackButton(true);
result->backRequest()
| rpl::start([this](auto&&) {
| rpl::start_with_next([this](auto&&) {
this->controller()->showBackFromStack();
}, result->lifetime());
result->setTitle(TitleValue(

View File

@ -62,7 +62,9 @@ void SideWrap::setupTabs() {
_tabs->setSections(sections);
_tabs->sectionActivated()
| rpl::map([](int index) { return static_cast<Tab>(index); })
| rpl::start([this](Tab tab) { showTab(tab); }, _lifetime);
| rpl::start_with_next(
[this](Tab tab) { showTab(tab); },
_lifetime);
_tabs->move(0, 0);
_tabs->resizeToWidth(width());

View File

@ -58,7 +58,7 @@ void TopBar::pushButton(object_ptr<Ui::RpWidget> button) {
auto weak = Ui::AttachParentChild(this, button);
_buttons.push_back(std::move(button));
weak->widthValue()
| rpl::start([this](auto&&) {
| rpl::start_with_next([this](auto&&) {
this->updateControlsGeometry(this->width());
}, _lifetime);
}

View File

@ -40,7 +40,7 @@ Button::Button(
: RippleButton(parent, st.ripple)
, _st(st) {
std::move(text)
| rpl::start([this](QString &&value) {
| rpl::start_with_next([this](QString &&value) {
setText(std::move(value));
}, lifetime());
}
@ -52,11 +52,11 @@ Button *Button::toggleOn(rpl::producer<bool> &&toggled) {
false,
[this] { rtlupdate(toggleRect()); });
clicks()
| rpl::start([this](auto) {
| rpl::start_with_next([this](auto) {
_toggle->setCheckedAnimated(!_toggle->checked());
}, lifetime());
std::move(toggled)
| rpl::start([this](bool toggled) {
| rpl::start_with_next([this](bool toggled) {
_toggle->setCheckedAnimated(toggled);
}, lifetime());
_toggle->finishAnimation();

View File

@ -171,11 +171,11 @@ SectionWithToggle *SectionWithToggle::setToggleShown(
_toggle->lower();
_toggle->setCheckAlignment(style::al_right);
widthValue()
| rpl::start([this](int newValue) {
| rpl::start_with_next([this](int newValue) {
_toggle->setGeometry(0, 0, newValue, height());
}, _toggle->lifetime());
std::move(shown)
| rpl::start([this](bool shown) {
| rpl::start_with_next([this](bool shown) {
if (_toggle->isHidden() == shown) {
_toggle->setVisible(shown);
_toggleShown.fire_copy(shown);
@ -230,7 +230,7 @@ void Cover::setupChildGeometry() {
toggleShownValue(),
widthValue(),
$2)
| rpl::start([this](int newWidth) {
| rpl::start_with_next([this](int newWidth) {
_userpic->moveToLeft(
st::infoProfilePhotoLeft,
st::infoProfilePhotoTop,
@ -242,7 +242,7 @@ void Cover::setupChildGeometry() {
Cover *Cover::setOnlineCount(rpl::producer<int> &&count) {
std::move(count)
| rpl::start([this](int count) {
| rpl::start_with_next([this](int count) {
_onlineCount = count;
refreshStatusText();
}, lifetime());
@ -252,16 +252,16 @@ Cover *Cover::setOnlineCount(rpl::producer<int> &&count) {
void Cover::initViewers() {
using Flag = Notify::PeerUpdate::Flag;
PeerUpdateValue(_peer, Flag::PhotoChanged)
| rpl::start(
| rpl::start_with_next(
[this](auto&&) { this->refreshUserpicLink(); },
lifetime());
PeerUpdateValue(_peer, Flag::NameChanged)
| rpl::start(
| rpl::start_with_next(
[this](auto&&) { this->refreshNameText(); },
lifetime());
PeerUpdateValue(_peer,
Flag::UserOnlineChanged | Flag::MembersChanged)
| rpl::start(
| rpl::start_with_next(
[this](auto&&) { this->refreshStatusText(); },
lifetime());
}
@ -367,7 +367,7 @@ void SharedMediaCover::createLabel() {
toggleShownValue(),
widthValue(),
$2)
| rpl::start([this, weak = label.data()](int newWidth) {
| rpl::start_with_next([this, weak = label.data()](int newWidth) {
auto availableWidth = newWidth
- st::infoBlockHeaderPosition.x()
- st::infoSharedMediaButton.padding.right()

View File

@ -43,7 +43,7 @@ FloatingIcon::FloatingIcon(
_point.y() + _icon->height());
setAttribute(Qt::WA_TransparentForMouseEvents);
parent->widthValue()
| rpl::start(
| rpl::start_with_next(
[this](auto&&) { moveToLeft(0, 0); },
lifetime());
}

View File

@ -61,7 +61,7 @@ InnerWidget::InnerWidget(
, _peer(peer)
, _content(setupContent(this, std::move(wrapValue))) {
_content->heightValue()
| rpl::start([this](int height) {
| rpl::start_with_next([this](int height) {
TWidget::resizeToWidth(width());
_desiredHeight.fire(countDesiredHeight());
}, lifetime());
@ -113,7 +113,7 @@ object_ptr<Ui::RpWidget> InnerWidget::setupContent(
_peer)
);
_members->scrollToRequests()
| rpl::start([this](Ui::ScrollToRequest request) {
| rpl::start_with_next([this](Ui::ScrollToRequest request) {
auto min = (request.ymin < 0)
? request.ymin
: mapFromGlobal(_members->mapToGlobal({ 0, request.ymin })).y();
@ -203,7 +203,7 @@ object_ptr<Ui::RpWidget> InnerWidget::setupMuteToggle(
result->toggleOn(
NotificationsEnabledValue(_peer)
)->clicks()
| rpl::start([this](auto) {
| rpl::start_with_next([this](auto) {
App::main()->updateNotifySetting(
_peer,
_peer->isMuted()
@ -239,7 +239,7 @@ void InnerWidget::setupUserButtons(
_controller->historyPeer.value()
| rpl::map($1 != user)
)->entity()->clicks()
| rpl::start([this, user](auto&&) {
| rpl::start_with_next([this, user](auto&&) {
_controller->showPeerHistory(
user,
Ui::ShowWay::Forward);
@ -250,7 +250,7 @@ void InnerWidget::setupUserButtons(
)->toggleOn(
CanAddContactValue(user)
)->entity()->clicks()
| rpl::start([user](auto&&) {
| rpl::start_with_next([user](auto&&) {
auto firstName = user->firstName;
auto lastName = user->lastName;
auto phone = user->phone().isEmpty()
@ -310,7 +310,7 @@ object_ptr<Ui::RpWidget> InnerWidget::setupSharedMedia(
return phrase(lt_count, count);
}
)->entity()->clicks()
| rpl::start([peer = _peer, type](auto&&) {
| rpl::start_with_next([peer = _peer, type](auto&&) {
SharedMediaShowOverview(type, App::history(peer));
}, content->lifetime());
};
@ -321,7 +321,7 @@ object_ptr<Ui::RpWidget> InnerWidget::setupSharedMedia(
return lng_profile_common_groups(lt_count, count);
}
)->entity()->clicks()
| rpl::start([peer = _peer](auto&&) {
| rpl::start_with_next([peer = _peer](auto&&) {
App::main()->showSection(
::Profile::CommonGroups::SectionMemento(
peer->asUser()),
@ -389,7 +389,7 @@ object_ptr<Ui::RpWidget> InnerWidget::setupUserActions(
)->toggleOn(
std::move(toggleOn)
)->entity()->clicks()
| rpl::start([callback = std::move(callback)](auto&&) {
| rpl::start_with_next([callback = std::move(callback)](auto&&) {
callback();
}, result->lifetime());
};

View File

@ -65,7 +65,7 @@ Members::Members(
, _list(setupList(this, _controller.get())) {
setupButtons();
std::move(wrapValue)
| rpl::start([this](Wrap wrap) {
| rpl::start_with_next([this](Wrap wrap) {
_wrap = wrap;
updateSearchOverrides();
}, lifetime());
@ -110,7 +110,7 @@ void Members::setupButtons() {
auto addMemberShown = CanAddMemberValue(_peer)
| rpl::start_spawning(lifetime());
widthValue()
| rpl::start([button = _addMember.data()](int newWidth) {
| rpl::start_with_next([button = _addMember.data()](int newWidth) {
button->moveToRight(
st::infoMembersButtonPosition.x(),
st::infoMembersButtonPosition.y(),
@ -118,7 +118,7 @@ void Members::setupButtons() {
}, _addMember->lifetime());
_addMember->showOn(rpl::duplicate(addMemberShown));
_addMember->clicks() // TODO throttle(ripple duration)
| rpl::start([this](auto&&) {
| rpl::start_with_next([this](auto&&) {
this->addMember();
}, _addMember->lifetime());
@ -128,18 +128,18 @@ void Members::setupButtons() {
| rpl::start_spawning(lifetime());
_search->showOn(rpl::duplicate(searchShown));
_search->clicks()
| rpl::start([this](auto&&) {
| rpl::start_with_next([this](auto&&) {
this->showSearch();
}, _search->lifetime());
_cancelSearch->clicks()
| rpl::start([this](auto&&) {
| rpl::start_with_next([this](auto&&) {
this->cancelSearch();
}, _cancelSearch->lifetime());
rpl::combine(
std::move(addMemberShown),
std::move(searchShown))
| rpl::start([this](auto&&) {
| rpl::start_with_next([this](auto&&) {
this->resizeToWidth(width());
}, lifetime());
@ -157,7 +157,7 @@ object_ptr<Members::ListWidget> Members::setupList(
controller,
st::infoMembersList);
result->scrollToRequests()
| rpl::start([this](Ui::ScrollToRequest request) {
| rpl::start_with_next([this](Ui::ScrollToRequest request) {
auto addmin = (request.ymin < 0)
? 0
: st::infoMembersHeader;
@ -170,11 +170,11 @@ object_ptr<Members::ListWidget> Members::setupList(
}, result->lifetime());
result->moveToLeft(0, st::infoMembersHeader);
parent->widthValue()
| rpl::start([list = result.data()](int newWidth) {
| rpl::start_with_next([list = result.data()](int newWidth) {
list->resizeToWidth(newWidth);
}, result->lifetime());
result->heightValue()
| rpl::start([parent](int listHeight) {
| rpl::start_with_next([parent](int listHeight) {
auto newHeight = (listHeight > st::membersMarginBottom)
? (st::infoMembersHeader + listHeight)
: 0;

View File

@ -53,7 +53,7 @@ Widget::Widget(
peer));
_inner->move(0, 0);
_inner->scrollToRequests()
| rpl::start([this](Ui::ScrollToRequest request) {
| rpl::start_with_next([this](Ui::ScrollToRequest request) {
if (request.ymin < 0) {
scrollTopRestore(
qMin(scrollTopSave(), request.ymax));

View File

@ -187,7 +187,7 @@ MainWidget::MainWidget(
| rpl::map(tuple(peer, $1));
})
| rpl::flatten_latest()
| rpl::start([this](PeerData *peer, bool canWrite) {
| rpl::start_with_next([this](PeerData *peer, bool canWrite) {
updateThirdColumnToCurrentPeer(peer, canWrite);
}, lifetime());
@ -1846,7 +1846,7 @@ void MainWidget::createPlayer() {
if (!_player) {
_player.create(this);
_player->heightValue()
| rpl::start(
| rpl::start_with_next(
[this](int) { playerHeightUpdated(); },
lifetime());
_player->entity()->setCloseCallback([this] { closeBothPlayers(); });
@ -1907,7 +1907,7 @@ void MainWidget::createCallTopBar() {
Expects(_currentCall != nullptr);
_callTopBar.create(this, object_ptr<Calls::TopBar>(this, _currentCall));
_callTopBar->heightValue()
| rpl::start([this](int value) {
| rpl::start_with_next([this](int value) {
callTopBarHeightUpdated(value);
}, lifetime());
orderWidgets();

View File

@ -1059,7 +1059,8 @@ void MediaView::validateSharedMedia() {
*key,
kIdsLimit,
kIdsLimit
) | rpl::start([this](SharedMediaWithLastSlice &&update) {
) | rpl::start_with_next([this](
SharedMediaWithLastSlice &&update) {
handleSharedMediaUpdate(std::move(update));
}, _sharedMedia->lifetime);
} else {
@ -1118,7 +1119,8 @@ void MediaView::validateUserPhotos() {
*key,
kIdsLimit,
kIdsLimit
) | rpl::start([this](UserPhotosSlice &&update) {
) | rpl::start_with_next([this](
UserPhotosSlice &&update) {
handleUserPhotosUpdate(std::move(update));
}, _userPhotos->lifetime);
} else {

View File

@ -159,7 +159,7 @@ template <typename Value>
inline auto start_to_stream(
event_stream<Value> &stream,
lifetime &alive_while) {
return start([&stream](auto &&value) {
return start_with_next([&stream](auto &&value) {
stream.fire_forward(std::forward<decltype(value)>(value));
}, alive_while);
}

View File

@ -100,15 +100,15 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
});
rpl::lifetime lifetime;
single(std::move(counter))
| on_next([=](InvokeCounter&&) {
| start_with_next_error_done([=](InvokeCounter&&) {
(void)destroyCalled;
++*sum;
}) | on_error([=](no_error) {
}, [=](no_error) {
(void)destroyCalled;
}) | on_done([=] {
}, [=] {
(void)destroyCalled;
*doneGenerated = true;
}) | start(lifetime);
}, lifetime);
}
REQUIRE(*sum == 1);
REQUIRE(*doneGenerated);
@ -136,18 +136,15 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
rpl::lifetime lifetime;
std::move(testing)
| then(complete<InvokeCounter>())
| on_next([=](InvokeCounter&&) {
| start_with_next_error_done([=](InvokeCounter&&) {
(void)destroyCalled;
++*sum;
})
| on_error([=](no_error) {
}, [=](no_error) {
(void)destroyCalled;
})
| on_done([=] {
}, [=] {
(void)destroyCalled;
*doneGenerated = true;
})
| start(lifetime);
}, lifetime);
}
REQUIRE(*sum == 5);
REQUIRE(*doneGenerated);
@ -167,10 +164,9 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
| map([](int value) {
return std::to_string(value);
})
| on_next([=](std::string &&value) {
| start_with_next([=](std::string &&value) {
*sum += std::move(value) + ' ';
})
| start(lifetime);
}, lifetime);
}
REQUIRE(*sum == "1 2 3 4 5 ");
}
@ -190,11 +186,10 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
| then(make_next())
| then(make_next())
| then(make_next())
| on_next([=](int value) {
| start_with_next([=](int value) {
REQUIRE(++*checked == *launched);
REQUIRE(*checked == value);
})
| start(lifetime);
}, lifetime);
REQUIRE(*launched == 5);
}
}
@ -212,10 +207,9 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
| map([](int value) {
return std::to_string(value);
})
| on_next([=](std::string &&value) {
| start_with_next([=](std::string &&value) {
*sum += std::move(value) + ' ';
})
| start(lifetime);
}, lifetime);
}
REQUIRE(*sum == "1 1 3 ");
}
@ -233,10 +227,9 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
| map([](int value) {
return std::to_string(value);
})
| on_next([=](std::string &&value) {
| start_with_next([=](std::string &&value) {
*sum += std::move(value) + ' ';
})
| start(lifetime);
}, lifetime);
}
REQUIRE(*sum == "1 2 3 ");
}
@ -252,10 +245,9 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
| map([](int value) {
return std::to_string(value);
})
| on_next([=](std::string &&value) {
| start_with_next([=](std::string &&value) {
*sum += std::move(value) + ' ';
})
| start(lifetime);
}, lifetime);
}
REQUIRE(*sum == "1 2 3 4 5 6 ");
}
@ -276,10 +268,9 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
combine(std::move(v), [](const auto &values) {
return values[0] && values[1] && !values[2];
})
| on_next([=](bool value) {
| start_with_next([=](bool value) {
*sum += std::to_string(value ? 1 : 0);
})
| start(lifetime);
}, lifetime);
a.fire(true);
b.fire(true);
@ -307,10 +298,9 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
[](long a, long b, long c) {
return a;
})
| on_next([=](int value) {
| start_with_next([=](int value) {
*sum += std::to_string(value);
})
| start(lifetime);
}, lifetime);
combine(
a.events(),
@ -319,10 +309,9 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
[](auto &&value) {
return std::get<1>(value);
})
| on_next([=](int value) {
| start_with_next([=](int value) {
*sum += std::to_string(value);
})
| start(lifetime);
}, lifetime);
combine(a.events(), b.events(), c.events())
| map([](auto &&value) {
@ -331,12 +320,11 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
std::to_string(std::get<1>(value)),
std::to_string(std::get<2>(value)));
})
| on_next([=](auto &&value) {
| start_with_next([=](auto &&value) {
*sum += std::get<0>(value) + ' '
+ std::get<1>(value) + ' '
+ std::get<2>(value) + ' ';
})
| start(lifetime);
}, lifetime);
a.fire(1);
b.fire(2);
c.fire(3);
@ -362,10 +350,9 @@ TEST_CASE("basic operators tests", "[rpl::operators]") {
b.events(),
c.events(),
$1 + $2 + $3 + 10)
| on_next([=](int value) {
| start_with_next([=](int value) {
*sum += std::to_string(value);
})
| start(lifetime);
}, lifetime);
a.fire(1);
b.fire(2);

File diff suppressed because it is too large Load Diff

View File

@ -322,9 +322,10 @@ TEST_CASE("basic event_streams tests", "[rpl::event_stream]") {
lifetime extended;
{
event_stream<int> stream;
stream.events() | on_next([=](int value) {
*sum += value;
}) | start(extended);
stream.events()
| start_with_next([=](int value) {
*sum += value;
}, extended);
stream.fire(1);
stream.fire(2);
@ -338,37 +339,8 @@ TEST_CASE("basic event_streams tests", "[rpl::event_stream]") {
}
TEST_CASE("basic piping tests", "[rpl::producer]") {
SECTION("bind_on_next, bind_on_error, bind_on_done") {
auto sum = std::make_shared<int>(0);
auto doneGenerated = std::make_shared<bool>(false);
{
auto alive = lifetime();
producer<int, no_error>([=](auto &&consumer) {
consumer.put_next(1);
consumer.put_next(2);
consumer.put_next(3);
consumer.put_done();
return lifetime();
}) | bind_on_next([=](int value) {
*sum += value;
}) | bind_on_done([=]() {
*doneGenerated = true;
}) | start(alive);
producer<no_value, int>([=](auto &&consumer) {
consumer.put_error(4);
return lifetime();
}) | bind_on_error([=](int value) {
*sum += value;
}) | bind_on_done([=]() {
*doneGenerated = false;
}) | start(alive);
}
REQUIRE(*sum == 1 + 2 + 3 + 4);
REQUIRE(*doneGenerated);
}
SECTION("on_next, on_error, on_done") {
SECTION("start_with_*") {
auto sum = std::make_shared<int>(0);
auto dones = std::make_shared<int>(0);
{
@ -377,25 +349,25 @@ TEST_CASE("basic piping tests", "[rpl::producer]") {
consumer.put_next(1);
consumer.put_done();
return lifetime();
}) | on_next([=](int value) {
}) | start_with_next([=](int value) {
*sum += value;
}) | start(alive);
}, alive);
producer<int, int>([=](auto &&consumer) {
consumer.put_next(11);
consumer.put_error(111);
return lifetime();
}) | on_error([=](int value) {
}) | start_with_error([=](int value) {
*sum += value;
}) | start(alive);
}, alive);
producer<int, int>([=](auto &&consumer) {
consumer.put_next(1111);
consumer.put_done();
return lifetime();
}) | on_done([=]() {
}) | start_with_done([=]() {
*dones += 1;
}) | start(alive);
}, alive);
producer<int, int>([=](auto &&consumer) {
consumer.put_next(11111);
@ -403,11 +375,11 @@ TEST_CASE("basic piping tests", "[rpl::producer]") {
consumer.put_next(11113);
consumer.put_error(11114);
return lifetime();
}) | on_next([=](int value) {
}) | start_with_next_error([=](int value) {
*sum += value;
}) | on_error([=](int value) {
}, [=](int value) {
*sum += value;
}) | start(alive);
}, alive);
}
auto alive = lifetime();
@ -417,31 +389,46 @@ TEST_CASE("basic piping tests", "[rpl::producer]") {
consumer.put_next(111113);
consumer.put_done();
return lifetime();
}) | on_next([=](int value) {
}) | start_with_next_done([=](int value) {
*sum += value;
}) | on_done([=]() {
}, [=]() {
*dones += 11;
}) | start(alive);
}, alive);
producer<int, int>([=](auto &&consumer) {
consumer.put_error(1111111);
return lifetime();
}) | on_error([=](int value) {
}) | start_with_error_done([=](int value) {
*sum += value;
}) | on_done([=]() {
}, [=]() {
*dones = 0;
}) | start(alive);
}, alive);
producer<int, int>([=](auto &&consumer) {
consumer.put_next(11111111);
consumer.put_next(11111112);
consumer.put_next(11111113);
consumer.put_error(11111114);
return lifetime();
}) | start_with_next_error_done([=](int value) {
*sum += value;
}, [=](int value) {
*sum += value;
}, [=]() {
*dones = 0;
}, alive);
REQUIRE(*sum ==
1 +
111 +
11111 + 11112 + 11113 + 11114 +
111111 + 111112 + 111113 +
1111111);
1111111 +
11111111 + 11111112 + 11111113 + 11111114);
REQUIRE(*dones == 1 + 11);
}
SECTION("on_next should copy its callback") {
SECTION("start_with_next should copy its callback") {
auto sum = std::make_shared<int>(0);
{
auto next = [=](int value) {
@ -455,42 +442,9 @@ TEST_CASE("basic piping tests", "[rpl::producer]") {
consumer.put_next(1);
consumer.put_done();
return lifetime();
})
| on_next(next)
| start(alive);
}) | start_with_next(next, alive);
}
}
REQUIRE(*sum == 3);
}
SECTION("rich start calls") {
auto sum = std::make_shared<int>(0);
{
auto alive = lifetime();
producer<int, int>([=](auto &&consumer) {
consumer.put_next(33);
return lifetime();
})
| start([=](int value) {
*sum += value;
}, alive);
producer<no_value, int>([=](auto &&consumer) {
consumer.put_error(33);
return lifetime();
})
| start([](no_value) {
}, [=](int value) {
*sum += value;
}, alive);
producer<int, int>([=](auto &&consumer) {
consumer.put_next(33);
consumer.put_done();
return lifetime();
})
| start([=] {
*sum += 33;
}, alive);
}
REQUIRE(*sum == 99);
}
}

View File

@ -66,7 +66,7 @@ public:
std::is_assignable_v<Type, OtherType>>>
variable(rpl::producer<OtherType> &&stream) {
std::move(stream)
| start([this](auto &&data) {
| start_with_next([this](auto &&data) {
*this = std::forward<decltype(data)>(data);
}, _lifetime);
}
@ -78,7 +78,7 @@ public:
variable &operator=(rpl::producer<OtherType> &&stream) {
_lifetime.destroy();
std::move(stream)
| start([this](auto &&data) {
| start_with_next([this](auto &&data) {
*this = std::forward<decltype(data)>(data);
}, _lifetime);
}

View File

@ -32,7 +32,7 @@ BlockWidget::BlockWidget(QWidget *parent, UserData *self, const QString &title)
, _self(self)
, _title(title) {
_content->heightValue()
| rpl::start([this](int contentHeight) {
| rpl::start_with_next([this](int contentHeight) {
resize(
width(),
contentTop()

View File

@ -83,7 +83,7 @@ void InnerWidget::refreshBlocks() {
}
_blocks->show();
_blocks->heightValue()
| rpl::start([this](int blocksHeight) {
| rpl::start_with_next([this](int blocksHeight) {
resize(width(), _blocks->y() + blocksHeight);
}, lifetime());
}

View File

@ -53,7 +53,7 @@ Layer::Layer()
_scroll->scrollTopValue()
| rpl::map([](int scrollTop) { return scrollTop > 0; })
| rpl::distinct_until_changed()
| rpl::start([this](bool scrolled) {
| rpl::start_with_next([this](bool scrolled) {
_fixedBarShadow->toggleAnimated(scrolled);
}, lifetime());
}
@ -73,7 +73,7 @@ void Layer::resizeToWidth(int newWidth, int newContentLeft) {
void Layer::doSetInnerWidget(object_ptr<LayerInner> widget) {
_inner = _scroll->setOwnedWidget(std::move(widget));
_inner->heightValue()
| rpl::start([this](int innerHeight) {
| rpl::start_with_next([this](int innerHeight) {
resizeUsingInnerHeight(width(), innerHeight);
}, lifetime());
}

View File

@ -61,7 +61,9 @@ void ScaleWidget::createControls() {
_scale->addSection(scaleLabel(dbisTwo));
_scale->setActiveSectionFast(cEvalScale(cConfigScale()) - 1);
_scale->sectionActivated()
| rpl::start([this](int) { scaleChanged(); }, lifetime());
| rpl::start_with_next(
[this](int) { scaleChanged(); },
lifetime());
}
void ScaleWidget::onAutoChanged() {

View File

@ -239,7 +239,8 @@ std::map<PeerId, SharedMedia::Lists>::iterator
auto type = static_cast<SharedMediaType>(index);
list.sliceUpdated()
| rpl::start([this, peer, type](const SliceUpdate &update) {
| rpl::start_with_next([this, peer, type](
const SliceUpdate &update) {
_sliceUpdated.fire(SharedMediaSliceUpdate(
peer,
type,

View File

@ -122,7 +122,8 @@ UserPhotos::enforceLists(UserId user) {
}
result = _lists.emplace(user, List {}).first;
result->second.sliceUpdated(
) | rpl::start([this, user](const SliceUpdate &update) {
) | rpl::start_with_next([this, user](
const SliceUpdate &update) {
_sliceUpdated.fire(UserPhotosSliceUpdate(
user,
update.photoIds,

View File

@ -87,7 +87,7 @@ public:
void showOn(rpl::producer<bool> &&shown) {
std::move(shown)
| rpl::start([this](bool visible) {
| rpl::start_with_next([this](bool visible) {
this->setVisible(visible);
}, lifetime());
}

View File

@ -172,7 +172,7 @@ FlatLabel::FlatLabel(
, _contextCopyText(lang(lng_context_copy_text)) {
textUpdated();
std::move(text)
| rpl::start([this](const QString &value) {
| rpl::start_with_next([this](const QString &value) {
setText(value);
}, lifetime());
}
@ -187,7 +187,7 @@ FlatLabel::FlatLabel(
, _contextCopyText(lang(lng_context_copy_text)) {
textUpdated();
std::move(text)
| rpl::start([this](const TextWithEntities &value) {
| rpl::start_with_next([this](const TextWithEntities &value) {
setMarkedText(value);
}, lifetime());
}

View File

@ -85,7 +85,7 @@ SlideWrap<RpWidget> *SlideWrap<RpWidget>::finishAnimations() {
SlideWrap<RpWidget> *SlideWrap<RpWidget>::toggleOn(
rpl::producer<bool> &&shown) {
std::move(shown)
| rpl::start([this](bool shown) {
| rpl::start_with_next([this](bool shown) {
toggleAnimated(shown);
}, lifetime());
finishAnimations();

View File

@ -115,7 +115,7 @@ RpWidget *VerticalLayout::addChild(
width() - margins.left() - margins.right(),
height() - margins.top() - margins.bottom());
weak->heightValue()
| rpl::start([this, weak](int) {
| rpl::start_with_next_done([this, weak](int) {
childHeightUpdated(weak);
}, [this, weak] {
removeChild(weak);

View File

@ -120,18 +120,17 @@ Wrap<Widget, RpWidget>::Wrap(QWidget *parent, object_ptr<Widget> child)
, _wrapped(std::move(child)) {
if (_wrapped) {
_wrapped->sizeValue()
| rpl::start([this](const QSize &value) {
| rpl::start_with_next([this](const QSize &value) {
wrappedSizeUpdated(value);
}, lifetime());
AttachParentChild(this, _wrapped);
_wrapped->move(0, 0);
_wrapped->alive()
| rpl::on_done([this] {
| rpl::start_with_done([this] {
_wrapped->setParent(nullptr);
_wrapped = nullptr;
delete this;
})
| rpl::start(lifetime());
}, lifetime());
}
}

View File

@ -27,7 +27,7 @@ namespace Window {
PlayerWrapWidget::PlayerWrapWidget(QWidget *parent)
: Parent(parent, object_ptr<Media::Player::Widget>(parent)) {
sizeValue()
| rpl::start([this](const QSize &size) {
| rpl::start_with_next([this](const QSize &size) {
updateShadowGeometry(size);
}, lifetime());
}

View File

@ -87,7 +87,7 @@ TopBarWidget::TopBarWidget(
= (peer != nullptr) && (peer == searchPeer);
return std::make_tuple(searchInPeer, peerChanged);
})
| rpl::start([this](
| rpl::start_with_next([this](
bool searchInHistoryPeer,
bool peerChanged) {
auto animated = peerChanged
@ -118,7 +118,7 @@ TopBarWidget::TopBarWidget(
rpl::combine(
Auth().data().thirdSectionInfoEnabledValue(),
Auth().data().tabbedReplacedWithInfoValue())
| rpl::start(
| rpl::start_with_next(
[this](auto&&) { updateInfoToggleActive(); },
lifetime());