| package apidApigeeSync |
| |
| import ( |
| "encoding/json" |
| "github.com/apigee-labs/transicator/common" |
| "io/ioutil" |
| "net/http" |
| "net/url" |
| "path" |
| "sort" |
| "sync/atomic" |
| "time" |
| ) |
| |
| var lastSequence string |
| var block string = "45" |
| |
| type pollChangeManager struct { |
| // 0 for not closed, 1 for closed |
| isClosed *int32 |
| // 0 for pollChangeWithBackoff() not launched, 1 for launched |
| isLaunched *int32 |
| quitChan chan bool |
| } |
| |
| func createChangeManager() *pollChangeManager { |
| isClosedInt := int32(0) |
| isLaunchedInt := int32(0) |
| return &pollChangeManager{ |
| isClosed: &isClosedInt, |
| quitChan: make(chan bool), |
| isLaunched: &isLaunchedInt, |
| } |
| } |
| |
| /* |
| * thread-safe close of pollChangeManager |
| * It marks status as closed immediately, quits backoff polling agent, and closes tokenManager |
| * use <- close() for blocking close |
| */ |
| func (c *pollChangeManager) close() <-chan bool { |
| finishChan := make(chan bool, 1) |
| //has been closed |
| if atomic.SwapInt32(c.isClosed, 1) == int32(1) { |
| log.Error("pollChangeManager: close() called on a closed pollChangeManager!") |
| go func() { |
| log.Debug("change manager closed") |
| finishChan <- false |
| }() |
| return finishChan |
| } |
| // not launched |
| if atomic.LoadInt32(c.isLaunched) == int32(0) { |
| log.Warn("pollChangeManager: close() called when pollChangeWithBackoff unlaunched! Will wait until pollChangeWithBackoff is launched and then kill it and tokenManager!") |
| go func() { |
| c.quitChan <- true |
| apidTokenManager.close() |
| <-apidSnapshotManager.close() |
| log.Debug("change manager closed") |
| finishChan <- false |
| }() |
| return finishChan |
| } |
| // launched |
| log.Debug("pollChangeManager: close pollChangeWithBackoff and token manager") |
| go func() { |
| c.quitChan <- true |
| apidTokenManager.close() |
| <-apidSnapshotManager.close() |
| log.Debug("change manager closed") |
| finishChan <- true |
| }() |
| return finishChan |
| } |
| |
| /* |
| * thread-safe pollChangeWithBackoff(), guaranteed: only one polling thread |
| */ |
| |
| func (c *pollChangeManager) pollChangeWithBackoff() { |
| // has been launched before |
| if atomic.SwapInt32(c.isLaunched, 1) == int32(1) { |
| log.Error("pollChangeManager: pollChangeWithBackoff() has been launched before") |
| return |
| } |
| |
| go pollWithBackoff(c.quitChan, c.pollChangeAgent, c.handleChangeServerError) |
| log.Debug("pollChangeManager: pollChangeWithBackoff() started pollWithBackoff") |
| |
| } |
| |
| /* |
| * Long polls the change agent with a 45 second block. Parses the response from |
| * change agent and raises an event. Called by pollWithBackoff(). |
| */ |
| func (c *pollChangeManager) pollChangeAgent(dummyQuit chan bool) error { |
| |
| changesUri, err := url.Parse(config.GetString(configChangeServerBaseURI)) |
| if err != nil { |
| log.Errorf("bad url value for config %s: %s", changesUri, err) |
| return err |
| } |
| changesUri.Path = path.Join(changesUri.Path, "changes") |
| |
| /* |
| * Check to see if we have lastSequence already saved in the DB, |
| * in which case, it has to be used to prevent re-reading same data |
| */ |
| lastSequence = getLastSequence() |
| |
| for { |
| select { |
| case <-c.quitChan: |
| log.Info("pollChangeAgent; Recevied quit signal to stop polling change server, close token manager") |
| return quitSignalError{} |
| default: |
| err := c.getChanges(changesUri) |
| if err != nil { |
| if _, ok := err.(quitSignalError); ok { |
| log.Debug("pollChangeAgent: consuming the quit signal") |
| <-c.quitChan |
| } |
| return err |
| } |
| } |
| } |
| } |
| |
| //TODO refactor this method more, split it up |
| /* Make a single request to the changeserver to get a changelist */ |
| func (c *pollChangeManager) getChanges(changesUri *url.URL) error { |
| // if closed |
| if atomic.LoadInt32(c.isClosed) == int32(1) { |
| return quitSignalError{} |
| } |
| log.Debug("polling...") |
| |
| /* Find the scopes associated with the config id */ |
| scopes := findScopesForId(apidInfo.ClusterID) |
| v := url.Values{} |
| |
| /* Sequence added to the query if available */ |
| if lastSequence != "" { |
| v.Add("since", lastSequence) |
| } |
| v.Add("block", block) |
| |
| /* |
| * Include all the scopes associated with the config Id |
| * The Config Id is included as well, as it acts as the |
| * Bootstrap scope |
| */ |
| for _, scope := range scopes { |
| v.Add("scope", scope) |
| } |
| v.Add("scope", apidInfo.ClusterID) |
| v.Add("snapshot", apidInfo.LastSnapshot) |
| changesUri.RawQuery = v.Encode() |
| uri := changesUri.String() |
| log.Debugf("Fetching changes: %s", uri) |
| |
| /* If error, break the loop, and retry after interval */ |
| req, err := http.NewRequest("GET", uri, nil) |
| addHeaders(req) |
| r, err := httpclient.Do(req) |
| if err != nil { |
| log.Errorf("change agent comm error: %s", err) |
| // if closed |
| if atomic.LoadInt32(c.isClosed) == int32(1) { |
| return quitSignalError{} |
| } |
| return err |
| } |
| defer r.Body.Close() |
| |
| // has been closed |
| if atomic.LoadInt32(c.isClosed) == int32(1) { |
| log.Debugf("getChanges: changeManager has been closed") |
| return quitSignalError{} |
| } |
| |
| if r.StatusCode != http.StatusOK { |
| log.Errorf("Get changes request failed with status code: %d", r.StatusCode) |
| switch r.StatusCode { |
| case http.StatusUnauthorized: |
| err = apidTokenManager.invalidateToken() |
| if err != nil { |
| return err |
| } |
| return authFailError{} |
| |
| case http.StatusNotModified: |
| return nil |
| |
| case http.StatusBadRequest: |
| var apiErr changeServerError |
| var b []byte |
| b, err = ioutil.ReadAll(r.Body) |
| if err != nil { |
| log.Errorf("Unable to read response body: %v", err) |
| return err |
| } |
| err = json.Unmarshal(b, &apiErr) |
| if err != nil { |
| log.Errorf("JSON Response Data not parsable: %s", string(b)) |
| return err |
| } |
| if apiErr.Code == "SNAPSHOT_TOO_OLD" { |
| log.Debug("Received SNAPSHOT_TOO_OLD message from change server.") |
| err = apiErr |
| } |
| return err |
| } |
| return nil |
| } |
| |
| var resp common.ChangeList |
| err = json.NewDecoder(r.Body).Decode(&resp) |
| if err != nil { |
| log.Errorf("JSON Response Data not parsable: %v", err) |
| return err |
| } |
| |
| /* |
| * If the lastSequence is already newer or the same than what we got via |
| * resp.LastSequence, Ignore it. |
| */ |
| if lastSequence != "" && |
| getChangeStatus(lastSequence, resp.LastSequence) != 1 { |
| return nil |
| } |
| |
| if changesRequireDDLSync(resp) { |
| return changeServerError{ |
| Code: "DDL changes detected; must get new snapshot", |
| } |
| } |
| |
| /* If valid data present, Emit to plugins */ |
| if len(resp.Changes) > 0 { |
| select { |
| case <-time.After(httpTimeout): |
| log.Panic("Timeout. Plugins failed to respond to changes.") |
| case <-events.Emit(ApigeeSyncEventSelector, &resp): |
| } |
| } else { |
| log.Debugf("No Changes detected for Scopes: %s", scopes) |
| } |
| |
| updateSequence(resp.LastSequence) |
| |
| /* |
| * Check to see if there was any change in scope. If found, handle it |
| * by getting a new snapshot |
| */ |
| newScopes := findScopesForId(apidInfo.ClusterID) |
| cs := scopeChanged(newScopes, scopes) |
| if cs != nil { |
| return cs |
| } |
| |
| return nil |
| } |
| |
| func changesRequireDDLSync(changes common.ChangeList) bool { |
| return changesHaveNewTables(knownTables, changes.Changes) |
| } |
| |
| func (c *pollChangeManager) handleChangeServerError(err error) { |
| // has been closed |
| if atomic.LoadInt32(c.isClosed) == int32(1) { |
| log.Debugf("handleChangeServerError: changeManager has been closed") |
| return |
| } |
| if c, ok := err.(changeServerError); ok { |
| log.Debugf("%s. Fetch a new snapshot to sync...", c.Code) |
| apidSnapshotManager.downloadDataSnapshot() |
| } else { |
| log.Debugf("Error connecting to changeserver: %v", err) |
| } |
| } |
| |
| /* |
| * Determine if any tables in changes are not present in known tables |
| */ |
| func changesHaveNewTables(a map[string]bool, changes []common.Change) bool { |
| |
| //nil maps should not be passed in. Making the distinction between nil map and empty map |
| if a == nil { |
| log.Warn("Nil map passed to function changesHaveNewTables, may be bug") |
| return true |
| } |
| |
| for _, change := range changes { |
| if !a[normalizeTableName(change.Table)] { |
| log.Infof("Unable to find %s table in current known tables", change.Table) |
| return true |
| } |
| } |
| |
| return false |
| } |
| |
| /* |
| * seqCurr.Compare() will return 1, if its newer than seqPrev, |
| * else will return 0, if same, or -1 if older. |
| */ |
| func getChangeStatus(lastSeq string, currSeq string) int { |
| seqPrev, err := common.ParseSequence(lastSeq) |
| if err != nil { |
| log.Panic("Unable to parse previous sequence string") |
| } |
| seqCurr, err := common.ParseSequence(currSeq) |
| if err != nil { |
| log.Panic("Unable to parse current sequence string") |
| } |
| return seqCurr.Compare(seqPrev) |
| } |
| |
| func updateSequence(seq string) { |
| lastSequence = seq |
| err := updateLastSequence(seq) |
| if err != nil { |
| log.Panic("Unable to update Sequence in DB") |
| } |
| |
| } |
| |
| /* |
| * Returns nil if the two arrays have matching contents |
| */ |
| func scopeChanged(a, b []string) error { |
| |
| if len(a) != len(b) { |
| return changeServerError{ |
| Code: "Scope changes detected; must get new snapshot", |
| } |
| } |
| sort.Strings(a) |
| sort.Strings(b) |
| for i, v := range a { |
| if v != b[i] { |
| return changeServerError{ |
| Code: "Scope changes detected; must get new snapshot", |
| } |
| } |
| } |
| return nil |
| } |