13c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#ifndef _XECOMMLINK_HPP
23c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#define _XECOMMLINK_HPP
33c827367444ee418f129b2c238299f49d3264554Jarkko Poyry/*-------------------------------------------------------------------------
43c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * drawElements Quality Program Test Executor
53c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * ------------------------------------------
63c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
73c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * Copyright 2014 The Android Open Source Project
83c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
93c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * Licensed under the Apache License, Version 2.0 (the "License");
103c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * you may not use this file except in compliance with the License.
113c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * You may obtain a copy of the License at
123c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
133c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *      http://www.apache.org/licenses/LICENSE-2.0
143c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
153c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * Unless required by applicable law or agreed to in writing, software
163c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * distributed under the License is distributed on an "AS IS" BASIS,
173c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
183c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * See the License for the specific language governing permissions and
193c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * limitations under the License.
203c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *
213c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *//*!
223c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * \file
233c827367444ee418f129b2c238299f49d3264554Jarkko Poyry * \brief Communication link abstraction.
243c827367444ee418f129b2c238299f49d3264554Jarkko Poyry *//*--------------------------------------------------------------------*/
253c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
263c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "xeDefs.hpp"
273c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#include "xeCallQueue.hpp"
283c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
293c827367444ee418f129b2c238299f49d3264554Jarkko Poyrynamespace xe
303c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
313c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
323c827367444ee418f129b2c238299f49d3264554Jarkko Poyryenum CommLinkState
333c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
343c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	COMMLINKSTATE_READY,						//!< CommLink is ready to accept commands.
353c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	COMMLINKSTATE_TEST_PROCESS_LAUNCHING,		//!< Test process is launching. Allowed commands: stop process
363c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	COMMLINKSTATE_TEST_PROCESS_RUNNING,			//!< Test process is running: Allowed commands: stop process
373c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	COMMLINKSTATE_TEST_PROCESS_FINISHED,		//!< Test process is finished. Allowed commands: reset
383c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
393c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	COMMLINKSTATE_TEST_PROCESS_LAUNCH_FAILED,	//!< Test process launch failed. Allowed commands: reset
403c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	COMMLINKSTATE_ERROR,						//!< Other error occurred: Allowed commands: reset
413c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
423c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	COMMLINKSTATE_LAST
433c827367444ee418f129b2c238299f49d3264554Jarkko Poyry};
443c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
453c827367444ee418f129b2c238299f49d3264554Jarkko Poyryconst char* getCommLinkStateName (CommLinkState state);
463c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
473c827367444ee418f129b2c238299f49d3264554Jarkko Poyryclass CommLink
483c827367444ee418f129b2c238299f49d3264554Jarkko Poyry{
493c827367444ee418f129b2c238299f49d3264554Jarkko Poyrypublic:
503c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	typedef void (*StateChangedFunc)	(void* userPtr, CommLinkState state, const char* message);
513c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	typedef void (*LogDataFunc)			(void* userPtr, const deUint8* bytes, int numBytes);
523c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
533c827367444ee418f129b2c238299f49d3264554Jarkko Poyry								CommLink				(void);
543c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	virtual						~CommLink				(void);
553c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
563c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	virtual void				reset					(void)							= DE_NULL;
573c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	virtual CommLinkState		getState				(void) const					= DE_NULL;
583c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	virtual CommLinkState		getState				(std::string& error) const		= DE_NULL;
593c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
603c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	virtual void				setCallbacks			(StateChangedFunc stateChangedCallback, LogDataFunc testLogDataCallback, LogDataFunc infoLogDataCallback, void* userPtr) = DE_NULL;
613c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
623c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	virtual void				startTestProcess		(const char* name, const char* params, const char* workingDir, const char* caseList) = DE_NULL;
633c827367444ee418f129b2c238299f49d3264554Jarkko Poyry	virtual void				stopTestProcess			(void)							= DE_NULL;
643c827367444ee418f129b2c238299f49d3264554Jarkko Poyry};
653c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
663c827367444ee418f129b2c238299f49d3264554Jarkko Poyry} // xe
673c827367444ee418f129b2c238299f49d3264554Jarkko Poyry
683c827367444ee418f129b2c238299f49d3264554Jarkko Poyry#endif // _XECOMMLINK_HPP
69