-
Notifications
You must be signed in to change notification settings - Fork 684
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #722 from mschoch/fix-event-race
fix race condition in setting up event callbacks
- Loading branch information
Showing
3 changed files
with
130 additions
and
36 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// Copyright (c) 2018 Couchbase, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package scorch | ||
|
||
import "time" | ||
|
||
// RegistryEventCallbacks should be treated as read-only after | ||
// process init()'ialization. | ||
var RegistryEventCallbacks = map[string]func(Event){} | ||
|
||
// Event represents the information provided in an OnEvent() callback. | ||
type Event struct { | ||
Kind EventKind | ||
Scorch *Scorch | ||
Duration time.Duration | ||
} | ||
|
||
// EventKind represents an event code for OnEvent() callbacks. | ||
type EventKind int | ||
|
||
// EventKindCloseStart is fired when a Scorch.Close() has begun. | ||
var EventKindCloseStart = EventKind(1) | ||
|
||
// EventKindClose is fired when a scorch index has been fully closed. | ||
var EventKindClose = EventKind(2) | ||
|
||
// EventKindMergerProgress is fired when the merger has completed a | ||
// round of merge processing. | ||
var EventKindMergerProgress = EventKind(3) | ||
|
||
// EventKindPersisterProgress is fired when the persister has completed | ||
// a round of persistence processing. | ||
var EventKindPersisterProgress = EventKind(4) | ||
|
||
// EventKindBatchIntroductionStart is fired when Batch() is invoked which | ||
// introduces a new segment. | ||
var EventKindBatchIntroductionStart = EventKind(5) | ||
|
||
// EventKindBatchIntroduction is fired when Batch() completes. | ||
var EventKindBatchIntroduction = EventKind(6) |
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 |
---|---|---|
@@ -0,0 +1,73 @@ | ||
// Copyright (c) 2018 Couchbase, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package scorch | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/blevesearch/bleve/document" | ||
"github.com/blevesearch/bleve/index" | ||
) | ||
|
||
func TestEventBatchIntroductionStart(t *testing.T) { | ||
defer func() { | ||
err := DestroyTest() | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
}() | ||
|
||
var count int | ||
RegistryEventCallbacks["test"] = func(e Event) { | ||
if e.Kind == EventKindBatchIntroductionStart { | ||
count++ | ||
} | ||
} | ||
|
||
ourConfig := make(map[string]interface{}, len(testConfig)) | ||
for k, v := range testConfig { | ||
ourConfig[k] = v | ||
} | ||
ourConfig["eventCallbackName"] = "test" | ||
|
||
analysisQueue := index.NewAnalysisQueue(1) | ||
idx, err := NewScorch(Name, ourConfig, analysisQueue) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
err = idx.Open() | ||
if err != nil { | ||
t.Fatalf("error opening index: %v", err) | ||
} | ||
|
||
doc := document.NewDocument("1") | ||
doc.AddField(document.NewTextField("name", []uint64{}, []byte("test"))) | ||
err = idx.Update(doc) | ||
if err != nil { | ||
t.Errorf("Error updating index: %v", err) | ||
} | ||
|
||
defer func() { | ||
err := idx.Close() | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
}() | ||
|
||
if count != 1 { | ||
t.Fatalf("expected to see 1 batch introduction event event, saw %d", count) | ||
} | ||
} |
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