2013-04-25 17:33:42 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2012-2013 cocos2d-x.org
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
2013-06-24 14:30:38 +08:00
|
|
|
#include "ProtocolShare.h"
|
2013-04-24 15:58:57 +08:00
|
|
|
#include "PluginJniHelper.h"
|
|
|
|
#include <android/log.h>
|
|
|
|
#include "PluginUtils.h"
|
|
|
|
#include "PluginJavaData.h"
|
|
|
|
|
|
|
|
namespace cocos2d { namespace plugin {
|
|
|
|
|
|
|
|
extern "C" {
|
2013-06-24 14:30:38 +08:00
|
|
|
JNIEXPORT void JNICALL Java_org_cocos2dx_plugin_ShareWrapper_nativeOnShareResult(JNIEnv* env, jobject thiz, jstring className, jint ret, jstring msg)
|
2013-04-24 15:58:57 +08:00
|
|
|
{
|
|
|
|
std::string strMsg = PluginJniHelper::jstring2string(msg);
|
2013-05-16 11:45:46 +08:00
|
|
|
std::string strClassName = PluginJniHelper::jstring2string(className);
|
|
|
|
PluginProtocol* pPlugin = PluginUtils::getPluginPtr(strClassName);
|
2013-06-24 14:30:38 +08:00
|
|
|
PluginUtils::outputLog("ProtocolShare", "nativeOnShareResult(), Get plugin ptr : %p", pPlugin);
|
2013-04-25 18:25:48 +08:00
|
|
|
if (pPlugin != NULL)
|
|
|
|
{
|
2013-06-24 14:30:38 +08:00
|
|
|
PluginUtils::outputLog("ProtocolShare", "nativeOnShareResult(), Get plugin name : %s", pPlugin->getPluginName());
|
|
|
|
ProtocolShare* pShare = dynamic_cast<ProtocolShare*>(pPlugin);
|
|
|
|
if (pShare != NULL)
|
2013-04-25 18:25:48 +08:00
|
|
|
{
|
2013-06-24 14:30:38 +08:00
|
|
|
pShare->onShareResult((ShareResultCode) ret, strMsg.c_str());
|
2013-04-25 18:25:48 +08:00
|
|
|
}
|
|
|
|
}
|
2013-04-24 15:58:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-24 14:30:38 +08:00
|
|
|
ProtocolShare::ProtocolShare()
|
2013-06-20 16:31:12 +08:00
|
|
|
: _listener(NULL)
|
2013-04-24 15:58:57 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-06-24 14:30:38 +08:00
|
|
|
ProtocolShare::~ProtocolShare()
|
2013-04-24 15:58:57 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-06-24 14:30:38 +08:00
|
|
|
void ProtocolShare::configDeveloperInfo(TShareDeveloperInfo devInfo)
|
2013-04-24 15:58:57 +08:00
|
|
|
{
|
|
|
|
if (devInfo.empty())
|
|
|
|
{
|
2013-06-24 14:30:38 +08:00
|
|
|
PluginUtils::outputLog("ProtocolShare", "The developer info is empty!");
|
2013-04-24 15:58:57 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PluginJavaData* pData = PluginUtils::getPluginJavaData(this);
|
|
|
|
PluginJniMethodInfo t;
|
|
|
|
if (PluginJniHelper::getMethodInfo(t
|
|
|
|
, pData->jclassName.c_str()
|
2013-04-26 17:12:51 +08:00
|
|
|
, "configDeveloperInfo"
|
2013-04-24 15:58:57 +08:00
|
|
|
, "(Ljava/util/Hashtable;)V"))
|
|
|
|
{
|
|
|
|
// generate the hashtable from map
|
2013-05-28 18:10:09 +08:00
|
|
|
jobject obj_Map = PluginUtils::createJavaMapObject(&devInfo);
|
2013-04-24 15:58:57 +08:00
|
|
|
|
|
|
|
// invoke java method
|
|
|
|
t.env->CallVoidMethod(pData->jobj, t.methodID, obj_Map);
|
|
|
|
t.env->DeleteLocalRef(obj_Map);
|
|
|
|
t.env->DeleteLocalRef(t.classID);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-24 14:30:38 +08:00
|
|
|
void ProtocolShare::share(TShareInfo info)
|
2013-04-24 15:58:57 +08:00
|
|
|
{
|
|
|
|
if (info.empty())
|
|
|
|
{
|
2013-06-20 16:31:12 +08:00
|
|
|
if (NULL != _listener)
|
2013-04-24 15:58:57 +08:00
|
|
|
{
|
2013-04-26 17:12:51 +08:00
|
|
|
onShareResult(kShareFail, "Share info error");
|
2013-04-24 15:58:57 +08:00
|
|
|
}
|
2013-06-24 14:30:38 +08:00
|
|
|
PluginUtils::outputLog("ProtocolShare", "The Share info is empty!");
|
2013-04-24 15:58:57 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PluginJavaData* pData = PluginUtils::getPluginJavaData(this);
|
|
|
|
PluginJniMethodInfo t;
|
|
|
|
if (PluginJniHelper::getMethodInfo(t
|
|
|
|
, pData->jclassName.c_str()
|
|
|
|
, "share"
|
|
|
|
, "(Ljava/util/Hashtable;)V"))
|
|
|
|
{
|
|
|
|
// generate the hashtable from map
|
2013-05-28 18:10:09 +08:00
|
|
|
jobject obj_Map = PluginUtils::createJavaMapObject(&info);
|
2013-04-24 15:58:57 +08:00
|
|
|
|
|
|
|
// invoke java method
|
|
|
|
t.env->CallVoidMethod(pData->jobj, t.methodID, obj_Map);
|
|
|
|
t.env->DeleteLocalRef(obj_Map);
|
|
|
|
t.env->DeleteLocalRef(t.classID);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-24 14:30:38 +08:00
|
|
|
void ProtocolShare::setResultListener(ShareResultListener* pListener)
|
2013-04-24 15:58:57 +08:00
|
|
|
{
|
2013-06-20 16:31:12 +08:00
|
|
|
_listener = pListener;
|
2013-04-24 15:58:57 +08:00
|
|
|
}
|
|
|
|
|
2013-06-24 14:30:38 +08:00
|
|
|
void ProtocolShare::onShareResult(ShareResultCode ret, const char* msg)
|
2013-04-24 15:58:57 +08:00
|
|
|
{
|
2013-06-20 16:31:12 +08:00
|
|
|
if (_listener)
|
2013-04-24 15:58:57 +08:00
|
|
|
{
|
2013-06-20 16:31:12 +08:00
|
|
|
_listener->onShareResult(ret, msg);
|
2013-04-24 15:58:57 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-06-24 14:30:38 +08:00
|
|
|
PluginUtils::outputLog("ProtocolShare", "Result listener is null!");
|
2013-04-24 15:58:57 +08:00
|
|
|
}
|
2013-06-24 14:30:38 +08:00
|
|
|
PluginUtils::outputLog("ProtocolShare", "Share result is : %d(%s)", (int) ret, msg);
|
2013-04-24 15:58:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}} // namespace cocos2d { namespace plugin {
|