Skip to content

Commit

Permalink
Initial project check-in (wihout clean ups)
Browse files Browse the repository at this point in the history
  • Loading branch information
harshvs committed Aug 14, 2017
1 parent 16d65ea commit 4dfa08e
Show file tree
Hide file tree
Showing 116 changed files with 50,286 additions and 0 deletions.
9 changes: 9 additions & 0 deletions TestCpp/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
.externalNativeBuild
22 changes: 22 additions & 0 deletions TestCpp/.idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions TestCpp/.idea/copyright/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions TestCpp/.idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 46 additions & 0 deletions TestCpp/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions TestCpp/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions TestCpp/.idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions TestCpp/app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
52 changes: 52 additions & 0 deletions TestCpp/app/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# For more information about using CMake with Android Studio, read the
# documentation: https://d.android.com/studio/projects/add-native-code.html

# Sets the minimum version of CMake required to build the native library.

cmake_minimum_required(VERSION 3.4.1)

# Creates and names a library, sets it as either STATIC
# or SHARED, and provides the relative paths to its source code.
# You can define multiple libraries, and CMake builds them for you.
# Gradle automatically packages shared libraries with your APK.

include_directories(src/main/cpp/googletest/include)
include_directories(src/main/cpp/googletest)

add_library( # Sets the name of the library.
native-lib

# Sets the library as a shared library.
SHARED

# Provides a relative path to your source file(s).
src/main/cpp/native-lib.cpp
src/main/cpp/JSONPathFinder.cpp
src/main/cpp/native-lib.cpp
src/main/cpp/googletest/src/gtest-all.cc
src/main/cpp/Tests.cpp
)

# Searches for a specified prebuilt library and stores the path as a
# variable. Because CMake includes system libraries in the search path by
# default, you only need to specify the name of the public NDK library
# you want to add. CMake verifies that the library exists before
# completing its build.

find_library( # Sets the name of the path variable.
log-lib

# Specifies the name of the NDK library that
# you want CMake to locate.
log )

# Specifies libraries CMake should link to your target library. You
# can link multiple libraries, such as libraries you define in this
# build script, prebuilt third-party libraries, or system libraries.

target_link_libraries( # Specifies the target library.
native-lib

# Links the target library to the log library
# included in the NDK.
${log-lib} )
41 changes: 41 additions & 0 deletions TestCpp/app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "com.example.harsh.testcpp"
minSdkVersion 21
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
cppFlags "-std=c++11 -frtti -fexceptions"
cppFlags += "-D RAPIDJSON_HAS_STDSTRING=1"
cppFlags += "-I" + file("src/main/cpp/external").absolutePath
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
externalNativeBuild {
cmake {
path "CMakeLists.txt"
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
}
25 changes: 25 additions & 0 deletions TestCpp/app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /home/harsh/Android/Sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package com.example.harsh.testcpp;

import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;

import org.junit.Test;
import org.junit.runner.RunWith;

import static org.junit.Assert.*;

/**
* Instrumentation test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() throws Exception {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();

assertEquals("com.example.harsh.testcpp", appContext.getPackageName());
}
}
30 changes: 30 additions & 0 deletions TestCpp/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.harsh.testcpp">

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<receiver
android:name=".GTestDriverReceiver"
android:enabled="true"
android:exported="true">
<intent-filter android:priority="999">
<action android:name="com.example.harsh.testcpp.intent.GTEST_CMD"/>
</intent-filter>
</receiver>
</application>

</manifest>
76 changes: 76 additions & 0 deletions TestCpp/app/src/main/cpp/JSONPathFinder.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
//
// Created by harsh on 9/8/17.
//

#include "JSONPathFinder.h"

#include <rapidjson/stringbuffer.h>
#include <rapidjson/writer.h>
#include "rapidjson/rapidjson.h"
#include "rapidjson/document.h"


#include <stack>
#include <string>
#include <sstream>
#include <cstdlib>

using namespace std;
using namespace rapidjson;

JSONPathFinder::JSONPathFinder(std::string jsonPath) {

}

std::vector<std::string>
JSONPathFinder::GetPaths(std::string doc) {

Document document;
document.Parse(doc);

vector<string> paths;
vector<string> pathNames;
WalkNode(document, pathNames, paths);
return paths;
}

void
JSONPathFinder::WalkNode(const rapidjson::Value &node,
std::vector<std::string> &nodesNames,
std::vector<std::string> &paths)
{
if (node.IsArray())
{
int size = node.Size();
for(int i = 0; i < size; i++) {
nodesNames.emplace_back(/*string(itoa(i)*/ "0");
paths.emplace_back(BuildPath(nodesNames));
const Value& childValue = node[i];
WalkNode(childValue, nodesNames, paths);
nodesNames.pop_back();
}

} else if (node.IsObject())
{
for(const auto& child : node.GetObject())
{
string childName(child.name.GetString());
nodesNames.emplace_back(childName);
paths.emplace_back(BuildPath(nodesNames));
WalkNode(child.value, nodesNames, paths);
nodesNames.pop_back();
}

} else
{
return;
}
}

std::string JSONPathFinder::BuildPath(std::vector<std::string> &pathNames) {
stringstream pathStm;
for (auto name : pathNames) {
pathStm << "/" << name;
}
return pathStm.str();
}
Loading

0 comments on commit 4dfa08e

Please sign in to comment.