All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openqa.selenium.android.library.WebDriverViewManager Maven / Gradle / Ivy

There is a newer version: 2.39.0
Show newest version
/*
Copyright 2010 Selenium committers

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 org.openqa.selenium.android.library;

import org.openqa.selenium.WebDriverException;

import com.google.common.collect.HashBiMap;

import java.util.Iterator;
import java.util.Set;
import java.util.UUID;

class WebDriverViewManager implements JavascriptResultNotifier {
  // Mapping from the ViewAdapter's handle (uuid) and the ViewAdapter
  private static HashBiMap map = HashBiMap.create();
  // Keeps track of the views and their corresponding ViewAdapter
  private static HashBiMap views = HashBiMap.create();
  private volatile boolean done;
  private volatile String result;
  private Object syncObject = new Object();

  /* package */ static ViewAdapter getViewAdapterFor(Object view) {
    return views.get(view);
  }

  /* package */ ViewAdapter getView(String nameOrHandle) {
    synchronized (syncObject) {
      ViewAdapter toReturn = searchForViewByHandle(nameOrHandle);
      return toReturn == null ? searchForViewByWindowName(nameOrHandle) : toReturn;
    }
  }
  
  /* package */ void addView(ViewAdapter view) {
    synchronized (syncObject) {
      String u = UUID.randomUUID().toString();
      map.put(u, view);
      views.put(view.getUnderlyingView(), view);
    }
  }

  /* package */ ViewAdapter getNextView() {
    synchronized (syncObject) {
      String key = map.keySet().iterator().next();
      return map.get(key);
    }
  }

  /* package */ void removeView(String nameOrHandle) {
    synchronized (syncObject) {
      ViewAdapter toRemove = searchForViewByHandle(nameOrHandle);
      toRemove = toRemove != null ? toRemove : searchForViewByWindowName(nameOrHandle);
      removeView(toRemove);
    }
  }
  
  /* package */ void removeView(ViewAdapter view) {
    synchronized (syncObject) {
      map.inverse().remove(view);
      views.inverse().remove(view);
    }
  }

  /* package */ void removeView(Object viewImpl) {
    synchronized (syncObject) {
      for (ViewAdapter adapter : map.values()) {
        if (adapter.getClassForUnderlyingView().equals(viewImpl)) {
          removeView(adapter);
          break;
        }
      }
    }
  }
  
  /* package */ Set getAllHandles() {
    synchronized (syncObject) {
      return map.keySet();
    }
  }

  private ViewAdapter searchForViewByHandle(String handle) {
    synchronized (syncObject) {
      return map.get(handle);
    }
  }

  private ViewAdapter searchForViewByWindowName(String windowName) {
    synchronized (syncObject) {
      for (ViewAdapter view : map.inverse().keySet()) {
        done = false;
        JavascriptExecutor.executeJs(
            view, this, "window.webdriver.resultMethod(window.name);");
        long timeout = System.currentTimeMillis() + AndroidWebDriver.RESPONSE_TIMEOUT;
        while (!done && (System.currentTimeMillis() < timeout)) {
          try {
            syncObject.wait(AndroidWebDriver.RESPONSE_TIMEOUT);
          } catch (InterruptedException e) {
            throw new WebDriverException(e);
          }
        }
        if (result != null && result.equals(windowName)) {
          return view;
        }
      }
      return null;
    }
  }

  /* package */ String getWindowHandle(ViewAdapter view) {
    synchronized (syncObject) {
      return map.inverse().get(view);
    }
  }

  /* package */ void closeAll() {
    String s;
    for (Iterator it = map.keySet().iterator(); it.hasNext(); ) {
      s = it.next();
      ViewAdapter viewAdapter = map.get(s);
      viewAdapter.removeAllViews();
      viewAdapter.destroy();
      views.inverse().remove(viewAdapter);
      it.remove();
    }
  }

  public void notifyResultReady(String result) {
    synchronized (syncObject) {
      this.result = result;
      done = true;
      syncObject.notify();
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy