context_impl.go ×4

Frontier kind: Code frontier

unlabeled · c_3b1f62f53e17

50 tests · 3146 LOC · 144 files · introduces 0 tests · 16 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
4 ranges16 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
434 ranges3146 lines · 144 files · Browse complete extent
All tests (intent)
50 testsBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

1 file ranked by introduced lines: 16 introduced LOC across 4 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

go.temporal.io/server/service/history/shard/context_impl.go 16 introduced LOC · 4 ranges

Open complete file

2173
2174 // TODO: why do we need a deep copy here?
2175 > func (s *ContextImpl) copyShardInfo(shardInfo *persistencespb.ShardInfo) *persistencespb.ShardInfo { context_impl.go
2176 > // need to ser/de to make a deep copy of queue state
2177 > queueStates := make(map[int32]*persistencespb.QueueState, len(shardInfo.QueueStates))
2178 > for k, v := range shardInfo.QueueStates {
2179 blob, _ := s.payloadSerializer.QueueStateToBlob(v)
2180 queueState, _ := s.payloadSerializer.QueueStateFromBlob(blob)
2182 }
2183
2184 > return &persistencespb.ShardInfo{ context_impl.go
2185 > ShardId: shardInfo.ShardId,
2186 > Owner: shardInfo.Owner,
2187 > RangeId: shardInfo.RangeId,
2188 > StolenSinceRenew: shardInfo.StolenSinceRenew,
2189 > ReplicationDlqAckLevel: maps.Clone(shardInfo.ReplicationDlqAckLevel),
2190 > UpdateTime: shardInfo.UpdateTime,
2191 > QueueStates: queueStates,
2192 > }
2193 }
2194
2341 allClusterInfo map[string]cluster.ClusterInformation,
2342 shardInfo *persistencespb.ShardInfo,
2343 > ) *persistencespb.ShardInfo { context_impl.go
2344 > if shardInfo.QueueStates != nil && shardInfo.QueueStates[int32(tasks.CategoryIDReplication)] != nil {
2345 for readerID := range shardInfo.QueueStates[int32(tasks.CategoryIDReplication)].ReaderStates {
2346 clusterID, _ := ReplicationReaderIDToClusterShardID(readerID)