Od 27 marca 2025 r. zalecamy używanie android-latest-release zamiast aosp-main do kompilowania i wspołtworzenia AOSP. Więcej informacji znajdziesz w artykule o zmianach w AOSP.
Zadbaj o dobrą organizację dzięki kolekcji
Zapisuj i kategoryzuj treści zgodnie ze swoimi preferencjami.
Śledzenie Winscope jest częścią platformy Android. Na tej stronie znajdziesz czynności wymagane do pobrania, skompilowania i uruchomienia lokalnie narzędzia do przeglądania śladów Winscope.
Tworzenie Winscope lokalnie
Aby skonfigurować komputer do uruchamiania narzędzia do śledzenia Winscope:
Aby wyświetlić listę dostępnych poleceń, uruchom: npm run
Utwórz wszystkie produkcyjne i testowe środowiska docelowe za pomocą:
npm run build:prod
Uruchamianie Winscope za pomocą:
npm run start
Tworzenie oddzielnych części
Poszczególne części Winscope możesz budować osobno, używając tych poleceń:
Polecenie
Opis
build:trace_processor
Wybiera i odtwarza najnowszą wersję
Perfettotrace_processor.
build:protos
ponownie kompiluje definicje proto.
Przeprowadzanie testów
Winscope obejmuje testy jednostkowe i kompleksowe. Aby je uruchomić, użyj npm run
<command>:
Polecenie
Opis
test:unit:ci
Uruchamia testy jednostkowe w mniej obszernym formacie na potrzeby CI lub przed przesłaniem kodu.
test:unit:dev
Przeprowadza testy jednostkowe w bardziej rozbudowanym formacie na potrzeby lokalnego programowania. Ten tryb wykrywa zmiany i automatycznie ponownie przeprowadza odpowiednie testy.
test:e2e
Przeprowadzanie kompleksowych testów, takich jak testy protokołu cross-tool.
test:presubmit:quiet
Kompiluje wszystkie testy jednostkowe przed przesłaniem, narzędzia do sprawdzania kodu oraz analizę grafu w mniej rozbudowanym formacie na potrzeby CI lub funkcji przed przesłaniem .
test:presubmit
Kompiluje wszystkie testy jednostkowe, narzędzia do sprawdzania kodu i analizę grafu w bardziej rozbudowanym formacie do lokalnego programowania.
test:all
Uruchamia wszystkie testy (jednostkowe i kompleksowe), narzędzia do sprawdzania kodu oraz analizę grafu w bardziej rozbudowanym formacie na potrzeby lokalnego programowania.
Aktualizacja mapowania @IntDef
@IntDef to adnotacja używana w Androidzie do ograniczenia możliwych wartości liczby całkowitej. Winscope używa mapowania tych adnotacji, aby wyświetlać nazwę wartości zamiast liczby całkowitej.
Aby zaktualizować mapowanie @IntDef:
Aby uruchomić przetwarzacz adnotacji, utwórz plik :framework-minus-apex-intdefs:
mp:framework-minus-apex-intdefs
Skopiuj wygenerowany plik intDefMapping.json do repozytorium wstępnie utworzonych:
Oprócz kompilacji i testów skrypty Winscope zawierają też inne funkcje, jak pokazano w tabeli. Aby je uruchomić, użyj npm run command:
Polecenie
Opis
format:check
Sprawdzanie problemów z formatowaniem kodu za pomocą prettier.
format:fix
Sprawdza i automatycznie naprawia problemy z formatowaniem kodu za pomocą prettier.
eslint:check
Sprawdzanie problemów z formatowaniem kodu za pomocą eslint.
eslint:fix
Sprawdza i automatycznie naprawia problemy z formatowaniem kodu za pomocą eslint.
tslint:check
Sprawdzanie problemów z formatowaniem kodu za pomocą tslint.
tslint:fix
Sprawdza i automatycznie naprawia problemy z formatowaniem kodu za pomocą tslint.
deps_graph:check_cycles
Analizuje kod pod kątem zależności cyklicznych.
Rozwiązywanie problemów
Oto wskazówki dotyczące rozwiązywania problemów:
Błąd ProtocolError: missing required '<FIELD>' lub TypeError: Cannot
read property '<PROP>' of null
Występuje to, gdy plik śladu został utworzony przy użyciu nowej definicji proto, zawierającej nowe wymagane pola.
Upewnij się, że otwierasz ślad w prawidłowej wersji Winscope (master, S lub R).
Jeśli utworzysz nowe pole w prototypie, ponownie skompiluj prototypy w Winscope za pomocą npm run build:protos.
Niektóre zainstalowane wersje zależności są nieprawidłowe (kompilacja nie powiedzie się)
Cofnij zmiany w przypadku package.json i package-lock.json. Usuń node_modules. Uruchom ponownie npm install.
Dodałem nowe pole do jednego z plików proto. Jak mogę go wyświetlić?
Winscope używa definicji proto z czasu kompilacji, więc nowe pola nie będą domyślnie widoczne. Aby wyświetlić nowe pola, ponownie skompiluj protosygnatury za pomocą funkcji npm run build:protos.
Treść strony i umieszczone na niej fragmenty kodu podlegają licencjom opisanym w Licencji na treści. Java i OpenJDK są znakami towarowymi lub zastrzeżonymi znakami towarowymi należącymi do firmy Oracle lub jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2025-08-24 UTC.
[[["Łatwo zrozumieć","easyToUnderstand","thumb-up"],["Rozwiązało to mój problem","solvedMyProblem","thumb-up"],["Inne","otherUp","thumb-up"]],[["Brak potrzebnych mi informacji","missingTheInformationINeed","thumb-down"],["Zbyt skomplikowane / zbyt wiele czynności do wykonania","tooComplicatedTooManySteps","thumb-down"],["Nieaktualne treści","outOfDate","thumb-down"],["Problem z tłumaczeniem","translationIssue","thumb-down"],["Problem z przykładami/kodem","samplesCodeIssue","thumb-down"],["Inne","otherDown","thumb-down"]],["Ostatnia aktualizacja: 2025-08-24 UTC."],[],[],null,["# Run Winscope\n\nWinscope tracing is part of the Android framework. This page outlines the\nsteps required to download, build, and run the Winscope trace viewer locally.\n\nBuild Winscope locally\n----------------------\n\nFollow these steps to set up your PC to run the Winscope tracer:\n\n1. [Download the Android source](/docs/setup/build/building).\n2. Navigate to the Winscope folder:\n\n cd development/tools/winscope\n\n3. Install dependencies using:\n\n npm install\n\n To see a list of available commands, run: `npm run`\n4. Build all prod and test targets using:\n\n npm run build:prod\n\n5. Run Winscope using:\n\n npm run start\n\n| **Note:** You can also download and build Winscope to host on a standard web server to get a shareable link to the tool.\n\nBuild separate parts\n--------------------\n\nYou can build individual parts of Winscope separately using the following\ncommands:\n\n| Command | Description |\n|-------------------------|-----------------------------------------------------------------------------|\n| `build:trace_processor` | Checks out and rebuilds the latest version of Perfetto's `trace_processor`. |\n| `build:protos` | Recompiles the proto definitions. |\n\nRun tests\n---------\n\n| **Tip:** Winscope doesn't build on Soong and can't be built by Tradefed, so it's recommended to have a local Git hook to the tests in your local environment.\n\nWinscope contains unit and end-to-end tests. To run them use `npm run\n\u003ccommand\u003e`:\n\n| Command | Description |\n|------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------|\n| `test:unit:ci` | Runs the unit tests in a less verbose format for CI or presubmit hook. |\n| `test:unit:dev` | Runs the unit tests in a more verbose format for local development. This mode watches for changes and automatically reruns the correct tests. |\n| `test:e2e` | Runs the end-to-end tests, such as those for the cross-tool protocol. |\n| `test:presubmit:quiet` | Builds all presubmit unit tests, linters, and graph analysis in a less verbose format for CI or presubmit hook. |\n| `test:presubmit` | Builds all presubmit unit tests, linters, and graph analysis in a more verbose format for local development. |\n| `test:all` | Runs all tests (unit and end-to-end), linters, and graph analysis in a more verbose format for local development. |\n\n### Update @IntDef mapping\n\n`@IntDef` is an annotation used in Android to restrict the possible values of an\ninteger. Winscope uses a mapping of these annotations to display the name of the\nvalue instead of the integer.\n\nTo update the `@IntDef` mapping, do the following:\n\n1. Build `:framework-minus-apex-intdefs` for the annotation preprocessor to run:\n\n mp :framework-minus-apex-intdefs\n\n2. Copy the generated `intDefMapping.json` file to the prebuilts repository:\n\n $ python3 -c 'import sys,json,collections; print(json.dumps(collections.OrderedDict(sorted(collections.ChainMap(*map(lambda x:json.load(open(x)), sys.argv[1:])).items())), indent=2))' $(find out/soong/.intermediates/frameworks/base -iname intDefMapping.json) \u003e ./development/tools/winscope/src/common/intDefMapping.json\n\n3. Upload the changes in Winscope using `repo upload`.\n\nOther commands\n--------------\n\nIn addition to build and tests, Winscope scripts contain other capabilities, as\nshown in the table. To run them use `npm run `\u003cvar translate=\"no\"\u003ecommand\u003c/var\u003e:\n\n| Command | Description |\n|---------------------------|----------------------------------------------------------------|\n| `format:check` | Checks for code formatting issues using `prettier`. |\n| `format:fix` | Checks and auto fixes code formatting issues using `prettier`. |\n| `eslint:check` | Checks for code formatting issues using `eslint`. |\n| `eslint:fix` | Checks and auto fixes code formatting issues using `eslint`. |\n| `tslint:check` | Checks for code formatting issues using `tslint`. |\n| `tslint:fix` | Checks and auto fixes code formatting issues using `tslint`. |\n| `deps_graph:check_cycles` | Analyzes the code for cyclical dependencies. |\n\nTroubleshoot\n------------\n\nUse the following tips for troubleshooting:\n\n- **Error `ProtocolError: missing required '\u003cFIELD\u003e'` or `TypeError: Cannot\n read property '\u003cPROP\u003e' of null`**\n\n - This occurs when the trace file was created with a new proto definition,\n containing new *required* fields.\n\n 1. Make sure you're opening the trace on the correct Winscope version (master, S, or R).\n 2. If you create the new field on the proto, recompile the protos in\n Winscope using `npm run build:protos`.\n\n | **Note:** You shouldn't need a new required field, because the protos should be backward compatible.\n- **Some installed dependency versions are wrong (build fails)**\n\n - Revert changes to `package.json` and `package-lock.json`. Remove `node_modules`. Run `npm install` again.\n- **I added a new field to one of the proto files. How do I display it?**\n\n - Winscope uses the proto definitions from when it was compiled, so new fields won't appear by default. To show new fields, rebuild the protos using `npm run build:protos`."]]