Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create new class ParseWithOptions #3730

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
855,021 changes: 855,021 additions & 0 deletions cpp/src/phonenumbers/geocoding/geocoding_data.cc

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions cpp/src/phonenumbers/parsingoptions.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#include "i18n/phonenumbers/parsingoptions.h"

#include "phonenumbers/region_code.h"

namespace i18n {
namespace phonenumbers {

ParsingOptions& ParsingOptions::SetDefaultRegion(
const string& default_region) {
default_region_ = default_region;
return *this;
}

ParsingOptions& ParsingOptions::SetKeepRawInput(bool keep_raw_input) {
keep_raw_input_ = keep_raw_input;
return *this;
}

} // namespace phonenumbers
} // namespace i18n
42 changes: 42 additions & 0 deletions cpp/src/phonenumbers/parsingoptions.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#ifndef I18N_PHONENUMBERS_PARSINGOPTIONS_H_
#define I18N_PHONENUMBERS_PARSINGOPTIONS_H_

#include "phonenumbers/test_util.h"

namespace i18n {
namespace phonenumbers {

// Options for parsing a phone number. To be used with the ParseWithOptions
// method.
// Example:
// ParsingOptions().SetDefaultRegion(RegionCode::US()).SetKeepRawInput(true);
class ParsingOptions {
public:
ParsingOptions() = default;

// Set the value for default_region_.
ParsingOptions& SetDefaultRegion(
const string& default_region);

// Set the value for keep_raw_input_.
ParsingOptions& SetKeepRawInput(bool keep_raw_input);

private:
friend class PhoneNumberUtil;

// The region we are expecting the number to be from. This is ignored if the
// number being parsed is written in international format. In case of national
// format, the country_code will be set to the one of this default region. If
// the number is guaranteed to start with a '+' followed by the country
// calling code, then RegionCode.ZZ or null can be supplied.
const string& default_region_ = RegionCode::ZZ();

// Whether the raw input should be kept in the PhoneNumber object. If true,
// the raw_input field and country_code_source fields will be populated.
bool keep_raw_input_ = false;
};

} // namespace phonenumbers
} // namespace i18n

#endif // I1
Loading