-
Notifications
You must be signed in to change notification settings - Fork 663
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Postfix magic and vars #10151
Open
pitzelrivera
wants to merge
6
commits into
owncloud:master
Choose a base branch
from
pitzelrivera:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Postfix magic and vars #10151
Changes from 2 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
7fe0fac
Initial postfix based on units
pitzelrivera 02967a9
Changed relevant magic numbers to units of measure
pitzelrivera 9d8adb0
took out magic numbers fix
pitzelrivera a9fd505
Updated changed variable statements and calls
pitzelrivera 0dfa22e
Removed magic num configuration
pitzelrivera 05dc664
Removed magic num config for hour
pitzelrivera File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,8 +73,8 @@ struct CmdOptions | |
QString exclude; | ||
QString unsyncedfolders; | ||
int restartTimes = 3; | ||
int downlimit = 0; | ||
int uplimit = 0; | ||
int downlimitKbPerSec = 0; | ||
int uplimitKbPerSec = 0; | ||
bool deltasync; | ||
qint64 deltasyncminfilesize; | ||
}; | ||
|
@@ -201,7 +201,7 @@ void sync(const SyncCTX &ctx) | |
QObject::connect(engine, &SyncEngine::syncError, engine, | ||
[](const QString &error) { qWarning() << "Sync error:" << error; }); | ||
engine->setIgnoreHiddenFiles(ctx.options.ignoreHiddenFiles); | ||
engine->setNetworkLimits(ctx.options.uplimit, ctx.options.downlimit); | ||
engine->setNetworkLimits(ctx.options.uplimitKbPerSec, ctx.options.downlimitKbPerSec); | ||
|
||
|
||
// Exclude lists | ||
|
@@ -312,8 +312,8 @@ class HttpCredentialsText : public HttpCredentials | |
std::cout << " -n Use netrc (5) for login" << std::endl; | ||
std::cout << " --non-interactive Do not block execution with interaction" << std::endl; | ||
std::cout << " --max-sync-retries [n] Retries maximum n times (default to 3)" << std::endl; | ||
std::cout << " --uplimit [n] Limit the upload speed of files to n KB/s" << std::endl; | ||
std::cout << " --downlimit [n] Limit the download speed of files to n KB/s" << std::endl; | ||
std::cout << " --uplimitKbPerSec [n] Limit the upload speed of files to n KB/s" << std::endl; | ||
std::cout << " --downlimitKbPerSec [n] Limit the download speed of files to n KB/s" << std::endl; | ||
std::cout << " -h Sync hidden files,do not ignore them" << std::endl; | ||
std::cout << " --version, -v Display version and exit" << std::endl; | ||
std::cout << " --logdebug More verbose logging" << std::endl; | ||
|
@@ -391,10 +391,10 @@ CmdOptions parseOptions(const QStringList &app_args) | |
options.unsyncedfolders = it.next(); | ||
} else if (option == QLatin1String("--max-sync-retries") && !it.peekNext().startsWith(QLatin1String("-"))) { | ||
options.restartTimes = it.next().toInt(); | ||
} else if (option == QLatin1String("--uplimit") && !it.peekNext().startsWith(QLatin1String("-"))) { | ||
options.uplimit = it.next().toInt() * 1000; | ||
} else if (option == QLatin1String("--downlimit") && !it.peekNext().startsWith(QLatin1String("-"))) { | ||
options.downlimit = it.next().toInt() * 1000; | ||
} else if (option == QLatin1String("--uplimitKbPerSec") && !it.peekNext().startsWith(QLatin1String("-"))) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please don't change the commandline arguments, the change would break existing scripts. |
||
options.uplimitKbPerSec = it.next().toInt() * 1000; | ||
} else if (option == QLatin1String("--downlimitKbPerSec") && !it.peekNext().startsWith(QLatin1String("-"))) { | ||
options.downlimitKbPerSec = it.next().toInt() * 1000; | ||
} else if (option == QLatin1String("--logdebug")) { | ||
Logger::instance()->setLogFile(QStringLiteral("-")); | ||
Logger::instance()->setLogDebug(true); | ||
|
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe lift my
_kb
operator fromtestchunkingng.cpp:19
, put it in a utility file, and use it here?