status-desktop/vendor
Michael Bradley, Jr c03a086c01 feat: command-line option can be used to specify app's data directory
In the repo:
```
$ bin/nim_status_client --help
```
In the packaged app (macOS example):
```
$ cd /Applications/Status.app/Contents/MacOS
$ ./nim_status_client --help
```
Output:
```
Usage:

nim_status_client [OPTIONS]...

The following options are available:

 -d, --dataDir      Status Desktop data directory.
```

**Using the option**

```
$ cd ~/status-ci-builds/master/Status.app/Contents/MacOS
$ ./nim_status_client --dataDir:"${HOME}/status-dirs/master"
```
In another terminal:
```
$ cd ~/status-ci-builds/PR-4242/Status.app/Contents/MacOS
$ ./nim_status_client --dataDir:"${HOME}/status-dirs/PR-4242"
```

The path supplied can be relative or absolute, and can be specified with
`--dataDir:[path]`, `--dataDir=[path]`, `-d:[path]`, or `-d=[path]`.

Either `:` or `=` must be used, i.e. this *will not* work: `--dataDir [path]`
or `-d [path]`.

The name of the option follows Nim's partial case-insensitivity rules, so
`--dataDir`, `--datadir`, and `--data_dir` are all equivalent. See
[Identifier equality][ieq] in the Nim Manual.

It is possible to run the same build in multiple terminals by supplying
different `--dataDir`, i.e. this works:
```
$ cd /Applications/Status.app/Contents/MacOS
$ ./nim_status_client --dataDir="${HOME}/temp/some1"
```
In another terminal:
```
$ cd /Applications/Status.app/Contents/MacOS
$ ./nim_status_client --dataDir="${HOME}/temp/some2"
```

**Windows**

It is recommended to use a Git Bash or MSYS2 terminal when invoking
`bin/nim_status_client.exe` (development build) or `bin/Status.exe` (production
build) on the command-line. The reason is that if the exe is invoked in a
session of `cmd.exe` it will return to the prompt immediately; the app will run
but there will be no output in the terminal. In any case, the `--dataDir`
option will take effect whether the exe is invoked in `cmd.exe` or a
recommended terminal.

For development builds, when invoking `bin/nim_status_client.exe` directly
instead of via `make run`, because e.g. you wish to use the `--dataDir` option,
it is required to first setup the `PATH` environment variable correctly. See
the `run-windows` target in this repo's Makefile for more information.

**Linux**

The `--dataDir` option may be passed to command-line invocation of a
production (AppImage) build in the same way as passing it to a development
build:

```
$ Status.AppImage --dataDir:/path/to/wherever
```

For development builds, when invoking `bin/nim_status_client` directly instead
of via `make run`, because e.g. you wish to use the `--dataDir` option, it is
required to setup the `LD_LIBRARY_PATH` environment variable correctly. See the
`run-linux` target in this repo's Makefile for more information.

---

BREAKING CHANGE: The `qt` subdir of the app's data directory is now a sibling
of the status-go directory rather than a subdir of the status-go directory:

```
Status (app data directory)
├── data (status-go directory)
├── qt
└── tmp
```

Because app settings are stored in the `qt` directory that means that existing
installations will lose their customized settings.

At app startup, it would be possible to detect `Status/data/qt` and if
`Status/qt` doesn't exist yet then copy `Status/data/qt` to
`Status/qt`. However, there was some concern that behavior could lead to
problems later on if we forget the workaround is in place. So for now that
settings preservation strategy has not been implemented, but it might be before
this commit is merged pending full team awareness/consensus.

---

Command-line option support is provided by
[nim-confutils](https://github.com/status-im/nim-confutils).

The environment variable `NIM_STATUS_CLIENT_DEV` has been removed in favor of
passing a "define" option to the Nim compiler: `-d:development` for development
builds (e.g. `make V=1`) and `-d:production` for packaged builds (e.g. `make
V=1 pkg`). Passing the correct option is handled automatically by the Makefile.

A make variable named `RELEASE` has been introduced, which defaults to
`false`. Presently the `RELEASE` variable should not be set on the command-line
nor in CI as more work needs to be done to toggle the proper compiler flags. In
the case of Status Desktop, "release vs. debug" is a concern orthogonal to
"production vs. development". At present, production builds and development
builds are all debug builds, but that will likely change in the future: we can
have non-release CI production builds and local development builds be debug
builds, while release builds in CI would be production builds with
`RELEASE=true` (the compiled executable will be fully optimized).

Prior to the changes in this PR, symmetry is somewhat lacking between
development and production (packaged) builds with respect to the concept of the
"data directory". In development builds the root of the repo effectively serves
as the `Status` directory used by production builds, e.g. on macOS
`~/Library/Application Support/Status`. Also, there's a bit of confusion as to
whether "data directory" refers to a directory for the desktop app's overall
data (including status-go data) or to the specific directory used by status-go.

This PR attempts to provide symmetry and reduce confusion:
* The term "data directory" means the directory used by the desktop app to
store multiple kinds of data and is not a reference to the subdirectory used by
status-go.
* For development builds the "data directory" defaults to `./Status/` relative
to the root of the repo.
* For production builds the "data directory" default is the same as before,
e.g. on macOS it's ` ~/Library/Application Support/Status/`.

The directory used by status-go is `Status/data/`. To be clear, that should be
referred to as the "status-go directory" and not the app's "data directory". It
would nice if we could rename it from `Status/data/` to `Status/status-go/`. We
can do that, I already checked that it works correctly; however, for existing
installations it would require that at app launch we check for the presence of
`Status/data/` and rename it to `Status/status-go`. While simple enough to do,
I was concerned that there might be edge cases where the directory rename could
cause a problem (e.g. if another copy of the app is running) so chose for now
to stick with the status-go directory being `Status/data/`.

---

**NOTES**

More work needs to be done to ensure that all data written by the app is
contained in the default or cli-specified data directory. Currently, both
development and production (packaged) builds are writing to common directories
outside of the data directory, e.g. located within `~/Library/` on
macOS. Changing that behavior seems like it will mainly involve changing
defaults related to Qt components such as the web engine. See:
https://github.com/status-im/status-desktop/issues/1141.

In general, additional refactoring could be done in the future. For
example, implementing `StatusDesktopConfig` in
`src/status/libstatus/accounts/constants.nim` (as done in this PR) works fine
for now, but better code organization is desirable.

---

Closes #2268

[ieq]: https://nim-lang.org/docs/manual.html#lexical-analysis-identifier-equality
2021-04-26 09:40:58 -05:00
..
DOtherSide@25e70373f8 chore: bump dotherside and nimqml 2021-04-21 17:57:29 -04:00
QR-Code-generator@d2283a645c build: bump vendor/QR-Code-generator to d2283a6 2020-07-08 11:36:30 -05:00
bearssl@ba5f468798 refactor: use nim-web3 library 2020-09-29 13:28:08 -04:00
chroma@6ec846e917 adding missing deps 2020-09-04 15:57:29 -04:00
edn.nim@3305e41f9d feat: introduce Task Manager threadpool 2021-03-18 13:15:05 -04:00
isaac@45a5cbbd54 feat: onboarding generate new account 2020-05-21 19:33:14 -04:00
nbaser@0c989e0d95 feat: use base32 + status infura ipfs for ens contenthash 2020-10-20 14:42:36 -04:00
news@e1d63564a2 refactor: use nim-web3 library 2020-09-29 13:28:08 -04:00
nim-base32@660680c1cb feat: use base32 + status infura ipfs for ens contenthash 2020-10-20 14:42:36 -04:00
nim-chronicles@fc3f2d3755 feat: add nim-chronicles 2020-05-21 15:16:24 -04:00
nim-chronos@bce0f878d1 feat: add nim-chronicles 2020-05-21 15:16:24 -04:00
nim-confutils@f091a70a5b feat: command-line option can be used to specify app's data directory 2021-04-26 09:40:58 -05:00
nim-eth@3ddb498f2a refactor: use nim-web3 library 2020-09-29 13:28:08 -04:00
nim-faststreams@d3ef34b325 feat: add nim-chronicles 2020-05-21 15:16:24 -04:00
nim-http-utils@33d70b9f37 refactor: use nim-web3 library 2020-09-29 13:28:08 -04:00
nim-json-rpc@dff46c991d refactor: use nim-web3 library 2020-09-29 13:28:08 -04:00
nim-json-serialization@1dccd4b2ef chore: update to latest nim-json-serialization 2020-09-09 15:03:45 -04:00
nim-libp2p@70deac9e0d feat: introduce Task Manager threadpool 2021-03-18 13:15:05 -04:00
nim-metrics@f91deb7422 feat: get collectibles from the contracts and their respective apis 2020-06-18 10:55:48 -04:00
nim-secp256k1@fb9699702b adding missing deps 2020-09-04 15:57:29 -04:00
nim-serialization@474bdbf49c fix: transaction history handling 2020-09-07 12:54:59 -04:00
nim-status-go@f1ec58561d refactor: nim_status -> status_go 2021-03-16 16:37:27 -04:00
nim-stew@1db43c7234 fix: transaction history handling 2020-09-07 12:54:59 -04:00
nim-stint@9e49b00148 Adding nimbus-build-system 2020-05-15 17:18:20 -04:00
nim-task-runner@a87f3f85be feat: introduce Task Manager threadpool 2021-03-18 13:15:05 -04:00
nim-web3@bf6805dff9 refactor: use nim-web3 library 2020-09-29 13:28:08 -04:00
nimPNG@7ff39ec00d adding missing deps 2020-09-04 15:57:29 -04:00
nimage@d683a7319c adding missing deps 2020-09-04 15:57:29 -04:00
nimbus-build-system@e7694f16ce Update nimbus-build-system version 2021-03-11 10:36:18 -05:00
nimcrypto@30d0ceaba0 feat: onboarding generate new account 2020-05-21 19:33:14 -04:00
nimqml@6776fed33f chore: bump dotherside and nimqml 2021-04-21 17:57:29 -04:00
status-go@09942bf200 feat: add community requests, permissions, ENS and more 2021-03-03 16:45:23 -05:00
uuids@c5039c1cc6 feat: onboarding generate new account 2020-05-21 19:33:14 -04:00