-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add classes to parse PC Instruction set.
Differential Revision: D44618035 fbshipit-source-id: a459c2f5f152869392be2174e920c76d9d8df20b
- Loading branch information
1 parent
80df346
commit 0fe6f8b
Showing
8 changed files
with
324 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
#include "fbpcs/pc_translator/input_processing/FilterConstraint.h" | ||
|
||
#include <cstdint> | ||
#include <memory> | ||
#include <string> | ||
#include <vector> | ||
|
||
namespace pc_translator { | ||
FilterConstraint::FilterConstraint( | ||
const std::string& name, | ||
const std::string& type, | ||
int value) | ||
: name_(name), type_(type), value_(value) {} | ||
|
||
std::string FilterConstraint::getName() const { | ||
return name_; | ||
} | ||
|
||
std::string FilterConstraint::getType() const { | ||
return type_; | ||
} | ||
|
||
int FilterConstraint::getValue() const { | ||
return value_; | ||
} | ||
} // namespace pc_translator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <cstdint> | ||
#include <memory> | ||
#include <string> | ||
#include <vector> | ||
|
||
namespace pc_translator { | ||
|
||
/* | ||
* Class to store each filter constraint include in the PC instruction set. | ||
*/ | ||
class FilterConstraint { | ||
public: | ||
FilterConstraint(const std::string& name, const std::string& type, int value); | ||
|
||
/* | ||
* Name of the filter constraint i.e. the field on which this filter is to be | ||
* applied. | ||
*/ | ||
std::string getName() const; | ||
|
||
/* | ||
* Constraint type i.e. LT, LTE, EQ, NEQ etc. | ||
*/ | ||
std::string getType() const; | ||
|
||
int getValue() const; | ||
|
||
private: | ||
std::string name_; | ||
std::string type_; | ||
int value_; | ||
}; | ||
|
||
} // namespace pc_translator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
#include "fbpcs/pc_translator/input_processing/PCInstructionSet.h" | ||
|
||
#include <folly/json.h> | ||
#include <cstdint> | ||
#include <memory> | ||
#include <string> | ||
#include <vector> | ||
|
||
namespace pc_translator { | ||
|
||
const std::vector<std::string>& PCInstructionSet::getGroupByIds() const { | ||
return groupByIds; | ||
} | ||
|
||
const std::vector<FilterConstraint>& PCInstructionSet::getFilterConstraints() | ||
const { | ||
return filterConstraints; | ||
} | ||
|
||
PCInstructionSet PCInstructionSet::fromDynamic(const folly::dynamic& obj) { | ||
PCInstructionSet pcInstructionSet; | ||
auto aggregationConfig = obj["aggregated_metrics"]; | ||
auto groupByFields = aggregationConfig["group_by"]; | ||
|
||
for (auto groupByField : groupByFields) { | ||
pcInstructionSet.groupByIds.push_back(groupByField.asString()); | ||
} | ||
|
||
auto filterConstraintsFields = aggregationConfig["filter"]; | ||
|
||
for (auto& [key, constraints] : filterConstraintsFields.items()) { | ||
std::string name = key.asString(); | ||
for (auto constraint : constraints) { | ||
auto constraintType = constraint["constraint_type"].asString(); | ||
auto constraintValue = constraint["value"].asInt(); | ||
FilterConstraint filterConstraint(name, constraintType, constraintValue); | ||
pcInstructionSet.filterConstraints.push_back(filterConstraint); | ||
} | ||
} | ||
|
||
return pcInstructionSet; | ||
} | ||
|
||
} // namespace pc_translator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <folly/json.h> | ||
#include <cstdint> | ||
#include <memory> | ||
#include <string> | ||
#include <vector> | ||
#include "fbpcs/pc_translator/input_processing/FilterConstraint.h" | ||
|
||
namespace pc_translator { | ||
|
||
/* | ||
* Class to store PC Instruction set. This class contains a list of group Ids as | ||
* well as list of filter constraints. | ||
*/ | ||
class PCInstructionSet { | ||
public: | ||
/* | ||
* Method to all group Ids from the PC instruction set. | ||
*/ | ||
const std::vector<std::string>& getGroupByIds() const; | ||
|
||
/* | ||
* Method to get all filter constraints from PC instruction set. | ||
*/ | ||
const std::vector<FilterConstraint>& getFilterConstraints() const; | ||
|
||
/* | ||
* Method to get parse and create PCInstructionSet instance. | ||
*/ | ||
static PCInstructionSet fromDynamic(const folly::dynamic& obj); | ||
|
||
private: | ||
std::vector<std::string> groupByIds; | ||
std::vector<FilterConstraint> filterConstraints; | ||
|
||
void parseJson(const std::string& json); | ||
}; | ||
|
||
} // namespace pc_translator |
44 changes: 44 additions & 0 deletions
44
fbpcs/pc_translator/tests/input_processing/TestPCInstructionSet.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
#include <folly/json.h> | ||
#include <filesystem> | ||
#include <string> | ||
|
||
#include <fbpcf/io/api/FileIOWrappers.h> | ||
#include <gtest/gtest.h> | ||
#include "../../../emp_games/common/TestUtil.h" | ||
#include "fbpcs/pc_translator/input_processing/PCInstructionSet.h" | ||
#include "folly/Random.h" | ||
|
||
namespace pc_translator { | ||
class TestPCInstructionSet : public ::testing::Test { | ||
public: | ||
protected: | ||
std::string testInstructionSetPath_; | ||
|
||
void SetUp() override { | ||
std::string baseDir = | ||
private_measurement::test_util::getBaseDirFromPath(__FILE__); | ||
testInstructionSetPath_ = baseDir + "test_instruction_set.json"; | ||
} | ||
}; | ||
|
||
TEST_F(TestPCInstructionSet, TestStandardWorkflowTest) { | ||
auto pcInstructionSet = std::make_shared<PCInstructionSet>( | ||
PCInstructionSet::fromDynamic(folly::parseJson( | ||
fbpcf::io::FileIOWrappers::readFile(testInstructionSetPath_)))); | ||
auto groupByIds = pcInstructionSet->getGroupByIds(); | ||
auto filterConstraints = pcInstructionSet->getFilterConstraints(); | ||
EXPECT_EQ(groupByIds.size(), 2); | ||
EXPECT_EQ(filterConstraints.size(), 4); | ||
EXPECT_EQ(filterConstraints[0].getName(), "gender"); | ||
EXPECT_EQ(filterConstraints[0].getType(), "EQ"); | ||
EXPECT_EQ(filterConstraints[0].getValue(), 0); | ||
} | ||
|
||
} // namespace pc_translator |
45 changes: 45 additions & 0 deletions
45
fbpcs/pc_translator/tests/input_processing/test_instruction_set.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"publisher_input": { | ||
"num_impressions": "int", | ||
"num_clicks": "int", | ||
"total_spend": "int", | ||
"opportunity_timstamp": "int", | ||
"test_flag": "int", | ||
"age": "int", | ||
"gender": "Optional[int]", | ||
"breakdown_id": "Optional[int]" | ||
}, | ||
"partner_input": { | ||
"value": "int", | ||
"event_timestamp": "int", | ||
"partner_cohort_id": "Optional[int]" | ||
}, | ||
"aggregated_metrics": { | ||
"filter": { | ||
"age": [ | ||
{ | ||
"constraint_type": "GTE", | ||
"value": "25" | ||
}, | ||
{ | ||
"constraint_type": "LTE", | ||
"value": "40" | ||
} | ||
], | ||
"gender": [ | ||
{ | ||
"constraint_type": "EQ", | ||
"value": "0" | ||
}, | ||
{ | ||
"constraint_type": "EQ", | ||
"value": "1" | ||
} | ||
] | ||
}, | ||
"group_by": [ | ||
"age", | ||
"gender" | ||
] | ||
} | ||
} |